pry-rescue 0.10.pre.1 → 0.10
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.md +3 -3
- data/examples/loop.rb +1 -1
- data/pry-rescue.gemspec +1 -1
- metadata +4 -5
data/README.md
CHANGED
@@ -123,9 +123,9 @@ foo
|
|
123
123
|
Peeking
|
124
124
|
=======
|
125
125
|
|
126
|
-
|
127
|
-
stuck. Examples include infinite loops, slow network calls, or
|
128
|
-
|
126
|
+
Sometimes bugs in your program don't cause exceptions. Instead your program just gets
|
127
|
+
stuck. Examples include infinite loops, slow network calls, or tests that take a
|
128
|
+
suprisingly long time to run.
|
129
129
|
|
130
130
|
In this case it's useful to be able to open a pry console when you notice that your
|
131
131
|
program is not going anywhere. To enable this feature you need to run:
|
data/examples/loop.rb
CHANGED
data/pry-rescue.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'pry-rescue'
|
3
|
-
s.version = '0.10
|
3
|
+
s.version = '0.10'
|
4
4
|
s.summary = 'Open a pry session on any unhandled exceptions'
|
5
5
|
s.description = 'Allows you to wrap code in Pry::rescue{ } to open a pry session at any unhandled exceptions'
|
6
6
|
s.homepage = 'https://github.com/ConradIrwin/pry-rescue'
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pry-rescue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10
|
5
|
-
prerelease:
|
4
|
+
version: '0.10'
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Conrad Irwin
|
@@ -154,9 +154,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
154
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
155
155
|
none: false
|
156
156
|
requirements:
|
157
|
-
- - ! '
|
157
|
+
- - ! '>='
|
158
158
|
- !ruby/object:Gem::Version
|
159
|
-
version:
|
159
|
+
version: '0'
|
160
160
|
requirements: []
|
161
161
|
rubyforge_project:
|
162
162
|
rubygems_version: 1.8.23
|
@@ -164,4 +164,3 @@ signing_key:
|
|
164
164
|
specification_version: 3
|
165
165
|
summary: Open a pry session on any unhandled exceptions
|
166
166
|
test_files: []
|
167
|
-
has_rdoc:
|