pry-em 0.1 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +1 -1
- data/lib/pry-em.rb +2 -2
- metadata +3 -2
data/README.markdown
CHANGED
@@ -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
|
44
|
+
I'm indebted to @samstokes for some of the ideas behind `pry-em` (though the faults in the implementation are all mine).
|
data/lib/pry-em.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
EmCommands = Pry::CommandSet.new do
|
2
2
|
|
3
|
-
EM_DESCRIPTION = "Wait for a deferrable
|
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
|
7
|
+
:listing => "em",
|
8
8
|
:requires_gem => 'eventmachine'
|
9
9
|
}
|
10
10
|
|
metadata
CHANGED