Class: VagrantPlugins::ConoHa::Action::NoSyncFolders

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-conoha/action/sync_folders.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ NoSyncFolders

Returns a new instance of NoSyncFolders.



27
28
29
# File 'lib/vagrant-conoha/action/sync_folders.rb', line 27

def initialize(app, _env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



31
32
33
34
# File 'lib/vagrant-conoha/action/sync_folders.rb', line 31

def call(env)
  @app.call(env)
  env[:ui].info(I18n.t('vagrant_openstack.disabled_sync_folders'))
end