Methods
C
Instance Public methods
clean_within(string)

Clean the paths contained in the provided string.

# File rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb, line 6
def clean_within(string)
  string.gsub(%r{[\w. ]+(/[\w. ]+)+(\.rb)?(\b|$)}) do |path|
    new(path).cleanpath
  end
end