README.md in tfg_support-0.1.1 vs README.md in tfg_support-0.2.1

- old
+ new

@@ -35,32 +35,15 @@ hash.deep[:foo, :missing_key, :baz] = :frob hash => {:foo=>{:bar=>{:baz=>:frob}, :missing_key=>{:baz=>:frob}}} -### TfgSupport::Sequence +### [String] (http://ruby-doc.org/core-2.0/String.html) -An object which can be used to generate an infinite sequence. +#### to_boolean - sequence = TfgSupport::Sequence.new(1) { |previous| previous * 2 } - sequence.next - => 1 - sequence.next - => 2 - sequence.next - => 4 - -#### self.new - -**Sequence.new(initial_value, &generator)** - -Returns a new `Sequence` object. - -#### next -*this method is not thread safe* - -Applies the generator block provided during construction to the previous result. - +Converts strings `'true' 't' 'yes' 'y' '1'` to `true` +and `'false' 'f' 'no' 'n' '0'` to `false` ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)