Class: ForgeCLI::PostHooks
- Inherits:
-
Object
- Object
- ForgeCLI::PostHooks
show all
- Defined in:
- lib/forge-cli/post_hooks.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(app) ⇒ PostHooks
6
7
8
|
# File 'lib/forge-cli/post_hooks.rb', line 6
def initialize(app)
@app = app
end
|
Class Method Details
.run!(app) ⇒ Object
2
3
4
|
# File 'lib/forge-cli/post_hooks.rb', line 2
def self.run!(app)
new(app).run!
end
|
Instance Method Details
#run! ⇒ Object
10
11
12
|
# File 'lib/forge-cli/post_hooks.rb', line 10
def run!
raise NotImplementedError
end
|