method
gsub_file
v2_6_3 -
Show latest stable
- Class:
Bundler::Thor::Actions
gsub_file(path, flag, *args, &block)public
Run a regular expression replacement on a file.
Parameters
|
path of the file to be changed | |
flag<Regexp|String> |
the regexp or string to be replaced |
|
the replacement, can be also given as a block | |
|
give :verbose => false to not log the status. |
Example
gsub_file 'app/controllers/application_controller.rb', /#\s*(filter_parameter_logging :password)/, '\1' gsub_file 'README', /rake/, :green do |match| match << " no more. Use thor!" end