# File lib/thor/actions.rb, line 176 def apply(path, config={}) verbose = config.fetch(:verbose, true) path = find_in_source_paths(path) unless path =~ /^http\:\/\// say_status :apply, path, verbose shell.padding += 1 if verbose instance_eval(open(path).read) shell.padding -= 1 if verbose end