Removed extra attr_accessor and used proper formatting.

This commit is contained in:
Kevin Krauss 2011-10-10 15:10:44 -07:00
parent 037b1e6feb
commit 5429d10eb5

View File

@ -6,7 +6,7 @@ module Guard
# #
class Watcher class Watcher
attr_accessor :pattern, :action, :any_return attr_accessor :pattern, :action
# Initialize a file watcher. # Initialize a file watcher.
# #
@ -57,7 +57,7 @@ module Guard
end end
end end
guard.options[:any_return] ? paths : paths.flatten.map{ |p| p.to_s } guard.options[:any_return] ? paths : paths.flatten.map { |p| p.to_s }
end end
end end