Class: Takeoff::Stage::Base

Inherits:
Object
  • Object
show all
Includes:
Helpers
Defined in:
lib/takeoff/stage/base.rb

Instance Method Summary collapse

Methods included from Helpers

#branches_up_to_date?, #diff, #execute, #file_has_changed_locally?, #files_have_changed?, #latest_commit, #log

Constructor Details

#initialize(app) ⇒ Base

Returns a new instance of Base.



8
9
10
# File 'lib/takeoff/stage/base.rb', line 8

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/takeoff/stage/base.rb', line 12

def call(env)
  raise NotImplementedError
end