aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/pathname
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-02-28 16:48:14 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:35:15 -0700
commita4e3aac40a7545285e4d1ccd78adfc41ca3d5f83 (patch)
tree1cf432cdb6fb06c24faceee1a8554b75daaf5bc5 /activesupport/lib/active_support/core_ext/pathname
parent6ed42ebdff05f9d28a60e91093d8f9afad03a958 (diff)
downloadrails-a4e3aac40a7545285e4d1ccd78adfc41ca3d5f83.tar.gz
rails-a4e3aac40a7545285e4d1ccd78adfc41ca3d5f83.tar.bz2
rails-a4e3aac40a7545285e4d1ccd78adfc41ca3d5f83.zip
* Introduce ActiveSupport.core_ext Integer, %w(conversions time etc)
* Convert some extension modules to simply reopening the class * Remove deprecated Float time extensions * Fold Base64 extension into ActiveSupport::Base64 since stdlib Base64 is gone
Diffstat (limited to 'activesupport/lib/active_support/core_ext/pathname')
-rw-r--r--activesupport/lib/active_support/core_ext/pathname/clean_within.rb18
1 files changed, 7 insertions, 11 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
index ae03e1bc5a..89690252b1 100644
--- a/activesupport/lib/active_support/core_ext/pathname/clean_within.rb
+++ b/activesupport/lib/active_support/core_ext/pathname/clean_within.rb
@@ -1,14 +1,10 @@
-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
+require 'pathname'
+
+class Pathname
+ # Clean the paths contained in the provided string.
+ def self.clean_within(string)
+ string.gsub(%r{[\w. ]+(/[\w. ]+)+(\.rb)?(\b|$)}) do |path|
+ new(path).cleanpath
end
end
end