Merge pull request #2710 from sdottaka/fix-window-build

tasks/ruby_ext.rake: Fix build error when file path includes \1 or \2.  ...
This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-01-23 01:15:44 +09:00
+1 -1
View File
@@ -22,7 +22,7 @@ class String
if params.is_a?(Hash)
str = self.clone
params.each do |k, v|
str.gsub!("%{#{k}}", v)
str.gsub!("%{#{k}}") { v }
end
str
else