city-watch 0.7.7 → 0.7.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/city_watch/util/watchman.rb +1 -1
- data/lib/version.rb +1 -1
- metadata +1 -1
@@ -65,7 +65,7 @@ module Watchman
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def get_watchman_options
|
68
|
-
CityWatch.config[:watchmen] && CityWatch.config[:watchmen][self.name.to_sym] && CityWatch.config[:watchmen][self.name.to_sym].is_a?(Hash) ? CityWatch.config[:watchmen][self.name.to_sym] : {}
|
68
|
+
CityWatch.config[:watchmen] && CityWatch.config[:watchmen].is_a?(Hash) && CityWatch.config[:watchmen][self.name.to_sym] && CityWatch.config[:watchmen][self.name.to_sym].is_a?(Hash) ? CityWatch.config[:watchmen][self.name.to_sym] : {}
|
69
69
|
end
|
70
70
|
|
71
71
|
end
|
data/lib/version.rb
CHANGED