Class: VagrantPlugins::Sakura::Action::MessageNotCreated
- Inherits:
-
Object
- Object
- VagrantPlugins::Sakura::Action::MessageNotCreated
- Defined in:
- lib/vagrant-sakura/action/message_not_created.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ MessageNotCreated
constructor
A new instance of MessageNotCreated.
Constructor Details
#initialize(app, env) ⇒ MessageNotCreated
Returns a new instance of MessageNotCreated.
5 6 7 |
# File 'lib/vagrant-sakura/action/message_not_created.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 |
# File 'lib/vagrant-sakura/action/message_not_created.rb', line 9 def call(env) env[:ui].info(I18n.t("vagrant_sakura.not_created")) @app.call(env) end |