pry 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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, "Supress loading of ~/.pryrc"
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
@@ -557,7 +557,6 @@ Shows local and instance variables by default.
557
557
 
558
558
  command "lls", "List local files using 'ls'" do |*args|
559
559
  cmd = ".ls"
560
- cmd << " --color=always" if Pry.color
561
560
  run cmd, *args
562
561
  end
563
562
 
@@ -1,3 +1,3 @@
1
1
  class Pry
2
- VERSION = "0.8.1"
2
+ VERSION = "0.8.2"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: pry
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.8.1
5
+ version: 0.8.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - John Mair (banisterfiend)