Sha256: 336f33338fba0aef6ec6814952b8e69492d617501ba54a626644817f05fa07ad

Contents?: true

Size: 365 Bytes

Versions: 288

Compression:

Stored size: 365 Bytes

Contents

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

Version data entries

288 entries across 255 versions & 30 rubygems

Version Path
swivel-0.0.150 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.149 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.157 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.160 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.152 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.155 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.156 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb
swivel-0.0.175 vendor/activesupport-2.0.2-/lib/active_support/core_ext/pathname/clean_within.rb