Class: Engineyard::Local::Command::Rails
- Inherits:
-
Base
- Object
- Vagrant::Command::Base
- Base
- Engineyard::Local::Command::Rails
- Defined in:
- lib/engineyard-local/command/rails.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Methods inherited from Vagrant::Command::Base
Methods included from Helpers
#insert_linebreaks, #merge_run_options, #run
Constructor Details
This class inherits a constructor from Engineyard::Local::Command::Base
Instance Method Details
#exec(*command_args) ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/engineyard-local/command/rails.rb', line 5 def exec(*command_args) = stack = Vagrant::Action::Builder.new do use Middleware::Rails::Install, "eylocal.rails.version" => ["version"] use Middleware::Rails::Command, "eylocal.rails.command_args" => command_args end run stack end |