Class: Vagrant::Notify::Action::CheckProvider

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-notify/action/check_provider.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ CheckProvider

Returns a new instance of CheckProvider.



5
6
7
# File 'lib/vagrant-notify/action/check_provider.rb', line 5

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

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/vagrant-notify/action/check_provider.rb', line 9

def call(env)
  env[:result] = true

  # Call the next if we have one (but we shouldn't, since this
  # middleware is built to run with the Call-type middlewares)
  @app.call env
end