public
Description: Common refactorings for Ruby code, written in Ruby. This project aims to be integrated with several editors (mainly TextMate), to provide simple refactorings
Homepage: http://www.fabiokung.com
Clone URL: git://github.com/fabiokung/rfactor.git
Click here to lend your support to: rfactor and make a donation at www.pledgie.com !
fabiokung (author)
Mon Feb 09 02:27:33 -0800 2009
commit  60bec51d24ded7c71ce769852ddbc9de3db06f45
tree    40937f1e6f802576ad1cf7a0be27d1d6d8914df3
parent  a5f38c9c59214a09720e36c16ea6a6366b10dc92
name age message
file .gitignore Tue Nov 25 17:27:37 -0800 2008 ignoring artifact files [fabiokung]
file History.txt Wed Feb 04 03:38:58 -0800 2009 changes for initial release [fabiokung]
file Manifest.txt Tue Feb 03 23:26:57 -0800 2009 adding new files [fabiokung]
file PostInstall.txt Tue Nov 25 17:27:10 -0800 2008 initial import [fabiokung]
file README.rdoc Loading commit data...
file Rakefile
directory doc/ Thu Feb 05 18:49:42 -0800 2009 some documentation [fabiokung]
directory features/ Wed Feb 04 02:04:19 -0800 2009 getting method end lines from modified Ruby Par... [fabiokung]
directory lib/
file rfactor.gemspec
directory script/ Tue Nov 25 17:27:10 -0800 2008 initial import [fabiokung]
directory spec/ Wed Feb 04 02:04:19 -0800 2009 getting method end lines from modified Ruby Par... [fabiokung]
directory tasks/ Tue Feb 03 18:22:22 -0800 2009 line number extractor and basic code extractor [fabiokung]
README.rdoc

rfactor

wiki.github.com/fabiokung/rfactor

DESCRIPTION:

Common refactorings for Ruby code, written in Ruby. This project aims to be integrated with several editors (mainly TextMate), to provide simple refactorings, such as:

  • extract method
  • extract variable
  • extract Class
  • extract Module
  • rename using ack
  • move using ack

FEATURES/PROBLEMS:

SYNOPSIS:

  code = Rfactor::Code.new(CODE)
  new_code = code.extract_method :name => 'common_behavior',
      :start => 10,
      :end => 15
  # new_code should contain the changed code. The content between
  # lines 10 and 15 are extracted to the new method called common_behavior

See the features (Cucumber) directory for more examples.

REQUIREMENTS:

INSTALL:

All you need is installed automatically by rubygems:

  sudo gem install fabiokung-rfactor -s http://gems.github.com

But, if you need, here are the required gems individually:

  gem install ParseTree
  gem install newgem
  gem install fabiokung-sexp_processor -s http://gems.github.com
  gem install fabiokung-ruby_parser -s http://gems.github.com
  gem install fabiokung-rfactor -s http://gems.github.com

RDoc

fabiokung.github.com/rfactor

LICENSE:

(The MIT License)

Copyright © 2008 Fabio Kung <fabio.kung@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.