lib/gitenv/files/dot_files.rb in gitenv-1.1.0 vs lib/gitenv/files/dot_files.rb in gitenv-1.2.0
- old
+ new
@@ -1,10 +1,7 @@
-
module Gitenv
-
class DotFiles < AllFiles
-
- def files path
- super(path).select{ |f| f.match /^\.[^\.]/ }
+ def files(path)
+ super(path).select { |f| f.match(/^\.[^.]/) }
end
end
end