pry 0.8.1 → 0.8.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +5 -0
- data/bin/pry +1 -1
- data/lib/pry/commands.rb +0 -1
- data/lib/pry/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -21,6 +21,11 @@ these include:
|
|
21
21
|
* Ability to view and replay history
|
22
22
|
* Many convenience commands inspired by IPython and other advanced REPLs
|
23
23
|
|
24
|
+
Pry also aims to be more than an IRB replacement; it is an
|
25
|
+
attempt to bring REPL driven programming to the Ruby language. It is
|
26
|
+
currently not nearly as powerful as tools like [SLIME](http://en.wikipedia.org/wiki/SLIME) for lisp, but that is the
|
27
|
+
general direction Pry is heading.
|
28
|
+
|
24
29
|
Pry is also fairly flexible and allows significant user
|
25
30
|
[customization](http://rdoc.info/github/banister/pry/master/file/wiki/Customizing-pry.md). It
|
26
31
|
is trivial to set it to read from any object that has a `readline` method and write to any object that has a
|
data/bin/pry
CHANGED
@@ -18,7 +18,7 @@ See: `https://github.com/banister` for more information.
|
|
18
18
|
}
|
19
19
|
|
20
20
|
on :e, :exec, "A line of code to execute in context before the session starts", true
|
21
|
-
on :f, "
|
21
|
+
on :f, "Suppress loading of ~/.pryrc"
|
22
22
|
on "no-color", "Disable syntax highlighting for session"
|
23
23
|
|
24
24
|
on "simple-prompt", "Enable simple prompt mode" do
|
data/lib/pry/commands.rb
CHANGED
data/lib/pry/version.rb
CHANGED