README.md in irb_hacks-0.2.2 vs README.md in irb_hacks-0.2.3
- old
+ new
@@ -22,11 +22,11 @@
The Hacks
---------
-### Code snippets -- `a` and `ae` ###
+### Code Snippets -- `a` and `ae` ###
There's often a need to invoke our work-in-progress code a number of times using the same arguments, wrapping block, etc. For that, "code snippets" feature is quite handy.
`irb_hacks` provides the two methods with short, meaningless (and thus conflict-free) names -- `a` and `ae`. `a` means nothing, it's just the first letter of the alphabet. `a` **invokes** the last-edited snippet. `ae` **lets you edit** the actual snippet (it roughly stands for "a" + "edit").
@@ -95,11 +95,11 @@
(snippet)>> puts "snippet one"
You can configure some aspects of the snippets. Read "Configuration" chapter below.
-### Browse program data with GNU `less` ###
+### Browse Program Data With GNU `less` ###
Sometimes the data your code works with is too long to fit in a console window. The clearest example of this are variables filled with text content, e.g. [Hpricot](http://github.com/whymirror/hpricot) documents/elements.
To solve that, the greatest paging program of all times, GNU `less`, comes to the rescue.
@@ -125,11 +125,11 @@
end
You can configure which pager program to use and with which options. Read "Configuration" chapter below.
-### Break execution and return instant value ###
+### Break Execution and Return Instant Value ###
By using `IrbHacks.break(value)` you break snippet (`a`) execution and make it return `value`. This is a simple yet powerful debugging technique.
Suppose you're debugging the code which contains something like:
@@ -171,11 +171,17 @@
* `snippet_history_file` -- Snippet (`a`, `ae`) history file.
* `snippet_history_size` -- Snippet history size.
* `snippet_prompt` -- Snippet input prompt.
+Copyright
+---------
+
+Copyright © 2010-2012 Alex Fortuna.
+
+Licensed under the MIT License.
+
+
Feedback
--------
Send bug reports, suggestions and criticisms through [project's page on GitHub](http://github.com/dadooda/irb_hacks).
-
-Licensed under the MIT License.