Sha256: 322c18f400a119b7e7fd514942fa839c1f0f7d58bf97f0ce1c18d5e27ac1f534
Contents?: true
Size: 472 Bytes
Versions: 2
Compression:
Stored size: 472 Bytes
Contents
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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
devenv_build-1.1.1 | lib/devenv_build/provisioning/ruby_on_rails.rb |
devenv_build-1.1.0 | lib/devenv_build/provisioning/ruby_on_rails.rb |