methodchain 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +2 -3
- data/Rakefile +1 -1
- data/doc/created.rid +1 -1
- metadata +1 -1
data/README
CHANGED
|
@@ -3,9 +3,8 @@ methodchain - ruby helpers for method chaining: chain, tap, then, else, and, or
|
|
|
3
3
|
===
|
|
4
4
|
Easy ways to navigate around nil without creating local variables.
|
|
5
5
|
===
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
</a>
|
|
6
|
+
Initial blog post describing previous ideas:
|
|
7
|
+
http://blog.thoughtfolder.com/2008-03-16-navigating-nil-method-chaining-in-ruby.html
|
|
9
8
|
|
|
10
9
|
== Author and License
|
|
11
10
|
Copyright (c) 2008 Greg Weber, http://gregweber.info
|
data/Rakefile
CHANGED
|
@@ -54,7 +54,7 @@ require 'rake/gempackagetask'
|
|
|
54
54
|
spec = Gem::Specification.new do |s|
|
|
55
55
|
s.name = $project
|
|
56
56
|
s.rubyforge_project = $project
|
|
57
|
-
s.version = "0.4.
|
|
57
|
+
s.version = "0.4.2"
|
|
58
58
|
s.author = "Greg Weber"
|
|
59
59
|
s.email = "greg@gregweber.info"
|
|
60
60
|
s.homepage = "http://projects.gregweber.info/#{$project}"
|
data/doc/created.rid
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon, 24 Mar 2008 14:21
|
|
1
|
+
Mon, 24 Mar 2008 14:26:21 -0500
|