Skip to content

Latest commit

 

History

History

features

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Ruby Refactoring Tool for Vim

To develop with vim refactoring create a symlink between the folder you have cloned this plugin and your .vim/bundle folder

Issues

If you identify any issues or specific funtionality you would like to see added, write the Cucumber feature and submit an issue or a pull request:

@issue
Scenario: Add a parameter to a method defined with no parameters or parentheses
  Given I have the following code:
  """
  def set_name
  end
  """
  When I select the method and execute:
  """
  :RAddParameter
  """
  And I fill in the parameter "name"
  Then I should see:
  """
  def set_name(name)
  end

  """