aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/gettext-2.1.0/replace.rb
blob: ae45a61c539f5a98d7f51d72e123b3df1659f146 (plain)
1
2
3
4
5
6
7
8
ARGV.each do |path|
  data = IO.read(path)
  data.gsub!(/license terms as Ruby\./, "license terms as Ruby or LGPL.")
  open(path, "w") do |out|
    out.write data
  end
end