Class: Startling::Handlers::PullRequestHandlerBase
- Inherits:
-
Object
- Object
- Startling::Handlers::PullRequestHandlerBase
show all
- Defined in:
- lib/startling/handlers/pull_request_handler_base.rb
Instance Method Summary
collapse
Constructor Details
Returns a new instance of PullRequestHandlerBase.
4
5
6
|
# File 'lib/startling/handlers/pull_request_handler_base.rb', line 4
def initialize(args)
@args = args
end
|
Instance Method Details
#body ⇒ Object
12
13
14
|
# File 'lib/startling/handlers/pull_request_handler_base.rb', line 12
def body
raise NotImplementedError
end
|
#commit_message ⇒ Object
16
17
18
|
# File 'lib/startling/handlers/pull_request_handler_base.rb', line 16
def commit_message
raise NotImplementedError
end
|
#title ⇒ Object
8
9
10
|
# File 'lib/startling/handlers/pull_request_handler_base.rb', line 8
def title
raise NotImplementedError
end
|