A group of Guard plugins. There are two reasons why you want to group your guards:
You can start only certain Groups from the command line by passing the `--group` option.
Abort task execution chain on failure within a group.
@example Group that aborts on failure
group :frontend, :halt_on_fail => true do guard 'coffeescript', :input => 'spec/coffeescripts', :output => 'spec/javascripts' guard 'jasmine-headless-webkit' do watch(%r{^spec/javascripts/(.*)\..*}) { |m| newest_js_file("spec/javascripts/#{m[1]}_spec") } end end
@see Guard::CLI
Initializes a Group.
@param [String] name the name of the group @param [Hash] options the group options @option options [Boolean] halt_on_fail if a task execution
should be halted for all Guard plugins in this group if a Guard plugin throws `:task_has_failed`
# File lib/guard/group.rb, line 30 def initialize(name, options = {}) @name = name.to_sym @options = options end
String representation of the Guard group.
@return [String] the group name
# File lib/guard/group.rb, line 39 def to_s @name.to_s.capitalize end
Generated with the Darkfish Rdoc Generator 2.