Ensure group name is a Symbol in Guard::Guard#initialize
This commit is contained in:
parent
12fcf15a95
commit
916613c027
@ -19,7 +19,7 @@ module Guard
|
|||||||
# @param [Hash] options the custom Guard options.
|
# @param [Hash] options the custom Guard options.
|
||||||
#
|
#
|
||||||
def initialize(watchers = [], options = {})
|
def initialize(watchers = [], options = {})
|
||||||
@group = options.delete(:group) || :default
|
@group = options[:group] ? options.delete(:group).to_sym : :default
|
||||||
@watchers, @options = watchers, options
|
@watchers, @options = watchers, options
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -85,4 +85,5 @@ module Guard
|
|||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user