Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/string/gsub_tags.txt (3791 => 3792)
--- MacRuby/trunk/spec/frozen/tags/macruby/core/string/gsub_tags.txt 2010-03-18 01:53:09 UTC (rev 3791)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/string/gsub_tags.txt 2010-03-18 01:53:36 UTC (rev 3792)
@@ -8,3 +8,4 @@
fails:String#gsub with pattern and Hash raises a TypeError if the hash has a default proc
fails:String#gsub! with pattern and replacement raises a RuntimeError when self is frozen
fails:String#gsub! with pattern and block raises a RuntimeError when self is frozen
+fails:String#gsub with pattern and replacement supports \G which matches at the beginning of the remaining (non-matched) string
Modified: MacRuby/trunk/spec/frozen/tags/macruby/core/string/scan_tags.txt (3791 => 3792)
--- MacRuby/trunk/spec/frozen/tags/macruby/core/string/scan_tags.txt 2010-03-18 01:53:09 UTC (rev 3791)
+++ MacRuby/trunk/spec/frozen/tags/macruby/core/string/scan_tags.txt 2010-03-18 01:53:36 UTC (rev 3792)
@@ -1,5 +1 @@
-fails:String#scan sets $~ to MatchData of last match and nil when there's none
-fails:String#scan taints the match strings if self is tainted, unless the taint happens in the method call
-fails:String#scan with pattern and block sets $~ for access from the block
-fails:String#scan with pattern and block sets $~ to MatchData of last match and nil when there's none for access from outside
-fails:String#scan with pattern and block taints the match strings if self is tainted, unless the tain happens inside the scan
+fails:String#scan supports \G which matches the end of the previous match / string start for first match