Methods
Instance Public methods
Clean the paths contained in the provided string.
Source: show
# 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