pry-em 0.1 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.markdown +1 -1
  2. data/lib/pry-em.rb +2 -2
  3. metadata +3 -2
@@ -41,4 +41,4 @@ Unfortunately it's possibly (and in fact quite easy) to boot Pry into a thread w
41
41
 
42
42
  `pry-em` is licensed under the MIT license, see LICENSE.MIT for details. Bug-reports, feature-requests and patches are most welcome.
43
43
 
44
- I'm indebted to @samstokes for many of the ideas behind `pry-em`.
44
+ I'm indebted to @samstokes for some of the ideas behind `pry-em` (though the faults in the implementation are all mine).
@@ -1,10 +1,10 @@
1
1
  EmCommands = Pry::CommandSet.new do
2
2
 
3
- EM_DESCRIPTION = "Wait for a deferrable to succeed or fail, a timeout can be specified before the colon."
3
+ EM_DESCRIPTION = "Wait for a deferrable for a length of time (default 3 seconds). `em 3: EM::HttpRequest.new(url).get`"
4
4
  EM_CONFIG = {
5
5
  :keep_retval => true,
6
6
  :interpolate => false,
7
- :listing => "em[timeout=3]:",
7
+ :listing => "em",
8
8
  :requires_gem => 'eventmachine'
9
9
  }
10
10
 
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-em
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- version: "0.1"
9
+ - 1
10
+ version: 0.1.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Conrad Irwin