lib/rake/funnel/extensions/windows_path.rb in rake-funnel-0.3.2.pre vs lib/rake/funnel/extensions/windows_path.rb in rake-funnel-0.4.0.pre
- old
+ new
@@ -1,11 +1,15 @@
-module Rake::Funnel::Extensions
- module WindowsPath
- def to_windows_path
- self.gsub(%r|/|, '\\')
- end
- end
-end
-
-class String
- include Rake::Funnel::Extensions::WindowsPath
-end
+module Rake
+ module Funnel
+ module Extensions
+ module WindowsPath
+ def to_windows_path
+ gsub(%r|/|, '\\')
+ end
+ end
+ end
+ end
+end
+
+class String
+ include Rake::Funnel::Extensions::WindowsPath
+end