Class: Takeoff::Stage::Base
- Inherits:
-
Object
- Object
- Takeoff::Stage::Base
- Includes:
- Helpers
- Defined in:
- lib/takeoff/stage/base.rb
Direct Known Subclasses
CheckoutDevelopmentBranch, Heroku::DisablePreboot, Heroku::EnableMaintenanceMode, Heroku::MigrateDatabase, Heroku::PrecompileAndSyncAssets, Heroku::PushToServer, Heroku::RememberCommits, Heroku::ScaleDownWorkers, Heroku::VerifyServerNotAlreadyUpToDate, Heroku::VerifyStagingUpToDate, Log, LookOutForDanger, PointCheckpointToDevelopment, PushToGithub, StashChanges, VerifyCircleCiStatus, VerifyGithubUpToDate
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ Base
constructor
A new instance of Base.
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
12 13 14 |
# File 'lib/takeoff/stage/base.rb', line 12 def call(env) raise NotImplementedError end |