A class that holds options. Can be instantiated with default options.
Initializes an Guard::Options object. `default_opts` is merged into `opts`.
@param [Hash] opts the options @param [Hash] default_opts the default options
# File lib/guard/options.rb, line 13 def initialize(opts = {}, default_opts = {}) super(default_opts.merge(opts || {})) end
workaround for: github.com/erikhuda/thor/issues/504
# File lib/guard/options.rb, line 18 def fetch(name) super(name.to_s) end