Class: Guard::UI
- Inherits:
-
Object
- Object
- Guard::UI
- Defined in:
- lib/guard/compat/test/helper.rb
Class Method Summary collapse
- .debug(_msg, _options = {}) ⇒ Object
- .deprecation(_msg, _options = {}) ⇒ Object
- .error(_msg, _options = {}) ⇒ Object
- .info(_msg, _options = {}) ⇒ Object
- .warning(_msg, _options = {}) ⇒ Object
Class Method Details
.debug(_msg, _options = {}) ⇒ Object
30 31 32 |
# File 'lib/guard/compat/test/helper.rb', line 30 def self.debug(_msg, = {}) fail NotImplementedError, 'stub this method in your tests' end |
.deprecation(_msg, _options = {}) ⇒ Object
34 35 36 |
# File 'lib/guard/compat/test/helper.rb', line 34 def self.deprecation(_msg, = {}) fail NotImplementedError, 'stub this method in your tests' end |
.error(_msg, _options = {}) ⇒ Object
26 27 28 |
# File 'lib/guard/compat/test/helper.rb', line 26 def self.error(_msg, = {}) fail NotImplementedError, 'stub this method in your tests' end |
.info(_msg, _options = {}) ⇒ Object
18 19 20 |
# File 'lib/guard/compat/test/helper.rb', line 18 def self.info(_msg, = {}) fail NotImplementedError, 'stub this method in your tests' end |
.warning(_msg, _options = {}) ⇒ Object
22 23 24 |
# File 'lib/guard/compat/test/helper.rb', line 22 def self.warning(_msg, = {}) fail NotImplementedError, 'stub this method in your tests' end |