README.md in guerrilla_patch-1.0.0 vs README.md in guerrilla_patch-2.0.0

- old
+ new

@@ -1,9 +1,31 @@ Guerrilla Patch ================ I am tired of hunting and tracking down my own monkey patches. Not to mention hassle of dragging them between projects. I figured gem is a remedy for this. +* new in 2.0 version + +Support for defining one liners with more succinct syntax (let, self_let) + +``` +def right? + @right ? "YES" : "NO" +end +``` + +Instead of ugly + +``` +def right?() @right ? "YES" : "NO" end +``` + +Becomes beautiful + +``` +let(:right?) { @right ? "YES" : "NO" } + + Contributing to guerrilla_patch ------------------------------- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it