aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/pathname/clean_within.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/pathname/clean_within.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/pathname/clean_within.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/activesupport/lib/active_support/core_ext/pathname/clean_within.rb b/activesupport/lib/active_support/core_ext/pathname/clean_within.rb
deleted file mode 100644
index ae03e1bc5a..0000000000
--- a/activesupport/lib/active_support/core_ext/pathname/clean_within.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-module ActiveSupport #:nodoc:
- module CoreExtensions #:nodoc:
- module Pathname #:nodoc:
- module CleanWithin
- # Clean the paths contained in the provided string.
- def clean_within(string)
- string.gsub(%r{[\w. ]+(/[\w. ]+)+(\.rb)?(\b|$)}) do |path|
- new(path).cleanpath
- end
- end
- end
- end
- end
-end