ruby2ruby

home

github.com/seattlerb/ruby2ruby

rdoc

docs.seattlerb.org/ruby2ruby

DESCRIPTION:

ruby2ruby provides a means of generating pure ruby code easily from RubyParser compatible Sexps. This makes making dynamic language processors in ruby easier than ever!

FEATURES/PROBLEMS:

  • Clean, simple SexpProcessor generates ruby code from RubyParser compatible sexps.

SYNOPSIS:

require 'rubygems'
require 'ruby2ruby'
require 'ruby_parser'
require 'pp'

ruby      = "def a\n  puts 'A'\nend\n\ndef b\n  a\nend"
parser    = RubyParser.new
ruby2ruby = Ruby2Ruby.new
sexp      = parser.process(ruby)

pp sexp

p ruby2ruby.process(sexp.deep_clone) # Note: #process destroys its input, so
                                     # #deep_clone if you need to preserve it

## outputs:

s(:block,
 s(:defn,
  :a,
  s(:args),
  s(:scope, s(:block, s(:call, nil, :puts, s(:arglist, s(:str, "A")))))),
 s(:defn, :b, s(:args), s(:scope, s(:block, s(:call, nil, :a, s(:arglist))))))
"def a\n  puts(\"A\")\nend\ndef b\n  a\nend\n"

REQUIREMENTS:

+ sexp_processor + ruby_parser

INSTALL:

+ sudo gem install ruby2ruby

How to Contribute:

To get started all you need is a checkout, rake, and hoe. The easiest way is:

% git clone seattlerb/ruby2ruby # assumes you use the `hub` wrapper.
% gem i rake hoe
% rake install_plugins # installs hoe-seattlerb & isolate
% rake install_plugins # installs minitest (referenced from hoe-seattlerb)

From here you should be good to go. We accept pull requests on github.

LICENSE:

(The MIT License)

Copyright © Ryan Davis, seattle.rb

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.