summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-08-06 22:57:19 +0200
committermh <mh@immerda.ch>2010-08-06 22:57:19 +0200
commita925020c832b6a6c03cada268e47a98f934f48cf (patch)
treec16682b6863bd22f544285bddeb13920713274d5 /files
parentecb858cb19ebb04c8318b2e0d5755e4c9fdcf76b (diff)
remove unnecessary file
Diffstat (limited to 'files')
-rw-r--r--files/improvements/functions/slash_escape.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/files/improvements/functions/slash_escape.rb b/files/improvements/functions/slash_escape.rb
deleted file mode 100644
index 70cd892..0000000
--- a/files/improvements/functions/slash_escape.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-# escape slashes in a String
-module Puppet::Parser::Functions
- newfunction(:slash_escape, :type => :rvalue) do |args|
- args[0].gsub(/\//, '\\/')
- end
-end