module DevenvBuild module Provisioning class RubyOnRails < Base def options_setter(module_name, options) proc do options[module_name] = true options[:ruby] = true options[:nodejs] = true end end def help 'Install Ruby On Rails (will include Ruby with rbenv and NodeJS).' end def middle <<-MIDDLE execute_with_rbenv \"gem install rails\" MIDDLE end end end end