./README in methodchain-0.4.0 vs ./README in methodchain-0.4.1
- old
+ new
@@ -1,8 +1,13 @@
== Summary
methodchain - ruby helpers for method chaining: chain, tap, then, else, and, or
+===
Easy ways to navigate around nil without creating local variables.
+===
+<a href="http://blog.thoughtfolder.com/2008-03-16-navigating-nil-method-chaining-in-ruby.html#Object-chain">
+Initial blog post describing previous ideas
+</a>
== Author and License
Copyright (c) 2008 Greg Weber, http://gregweber.info
Licensed under the MIT license
@@ -144,19 +149,9 @@
import will still load all the private methods from the module:
- yield_or_eval
- send_as_function
- send_as_functions
-
-
-==== not into Object
-To import nothing into the Object namespace
- require 'methodchain/no-import'
-
-Then include where needed:
- class MyObject
- include MethodChain
- end
== Implementation
There are no proxy objects and no use of method_missing- these are simply function calls, so it should be fast.