* [sup-devel] [PATCH] implement String#each on Ruby 1.9 for lockfile
@ 2010-01-04 19:34 Rich Lane
2010-01-05 21:34 ` William Morgan
0 siblings, 1 reply; 2+ messages in thread
From: Rich Lane @ 2010-01-04 19:34 UTC (permalink / raw)
To: sup-devel
---
lib/sup/util.rb | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/lib/sup/util.rb b/lib/sup/util.rb
index 206c18a..2d3a2ad 100644
--- a/lib/sup/util.rb
+++ b/lib/sup/util.rb
@@ -290,6 +290,12 @@ class String
end
end
+ unless method_defined? :each
+ def each &b
+ each_line &b
+ end
+ end
+
## takes a list of words, and returns an array of symbols. typically used in
## Sup for translating Ferret's representation of a list of labels (a string)
## to an array of label symbols.
--
1.6.3.3
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-01-05 21:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-04 19:34 [sup-devel] [PATCH] implement String#each on Ruby 1.9 for lockfile Rich Lane
2010-01-05 21:34 ` William Morgan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox