class Guard::DslReader

TODO: this should probably be a base class for Dsl instead (in Guard 3.x)

Attributes

plugin_names[R]

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/guard/dsl_reader.rb, line 8
def initialize
  super
  @plugin_names = []
end

Public Instance Methods

callback(*_args, &_block) click to toggle source
# File lib/guard/dsl_reader.rb, line 30
def callback(*_args, &_block)
end
clearing(_on) click to toggle source
# File lib/guard/dsl_reader.rb, line 48
def clearing(_on)
end
directories(_directories) click to toggle source
# File lib/guard/dsl_reader.rb, line 45
def directories(_directories)
end
group(*_args) click to toggle source
# File lib/guard/dsl_reader.rb, line 24
def group(*_args)
end
guard(name, _options = {}) click to toggle source
# File lib/guard/dsl_reader.rb, line 13
def guard(name, _options = {})
  @plugin_names << name.to_s
end
ignore(*_regexps) click to toggle source
# File lib/guard/dsl_reader.rb, line 33
def ignore(*_regexps)
end
ignore!(*_regexps) click to toggle source
# File lib/guard/dsl_reader.rb, line 36
def ignore!(*_regexps)
end
interactor(_options) click to toggle source
# File lib/guard/dsl_reader.rb, line 21
def interactor(_options)
end
logger(_options) click to toggle source
# File lib/guard/dsl_reader.rb, line 39
def logger(_options)
end
notification(_notifier, _opts = {}) click to toggle source

Stub everything else

# File lib/guard/dsl_reader.rb, line 18
def notification(_notifier, _opts = {})
end
scope(_scope = {}) click to toggle source
# File lib/guard/dsl_reader.rb, line 42
def scope(_scope = {})
end
watch(_pattern, &_action) click to toggle source
# File lib/guard/dsl_reader.rb, line 27
def watch(_pattern, &_action)
end