Class: Guard::Jobs::Base
- Inherits:
-
Object
- Object
- Guard::Jobs::Base
- Defined in:
- lib/guard/jobs/base.rb
Direct Known Subclasses
Instance Method Summary collapse
- #background ⇒ Object
- #foreground ⇒ Symbol
-
#handle_interrupt ⇒ Object
Signal handler calls this, so avoid actually doing anything other than signaling threads.
-
#initialize(_options) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(_options) ⇒ Base
Returns a new instance of Base.
4 5 |
# File 'lib/guard/jobs/base.rb', line 4 def initialize() end |
Instance Method Details
#background ⇒ Object
12 13 |
# File 'lib/guard/jobs/base.rb', line 12 def background end |
#foreground ⇒ Symbol
9 10 |
# File 'lib/guard/jobs/base.rb', line 9 def foreground end |
#handle_interrupt ⇒ Object
Signal handler calls this, so avoid actually doing anything other than signaling threads
17 18 |
# File 'lib/guard/jobs/base.rb', line 17 def handle_interrupt end |