pry-capture 0.1.pre.3 → 0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -3
- data/pry-capture.gemspec +1 -5
- metadata +49 -50
data/README.md
CHANGED
@@ -73,9 +73,9 @@ pry-stack explorer
|
|
73
73
|
==================
|
74
74
|
|
75
75
|
If you're running rubinius, or ruby-1.9, then you can use `pry-capture` alongside
|
76
|
-
`pry-stack_explorer`. This gives you the ability to move `up` or `down the stack so that
|
77
|
-
you can get a better idea of why your function ended up in a bad state.
|
78
|
-
example2.rb](https://github.com/ConradIrwin/pry-capture/blob/master/examples/example2.rb) to get a feel for what this is like.
|
76
|
+
`pry-stack_explorer`. This gives you the ability to move `up` or `down` the stack so that
|
77
|
+
you can get a better idea of why your function ended up in a bad state. Run
|
78
|
+
[example2.rb](https://github.com/ConradIrwin/pry-capture/blob/master/examples/example2.rb) to get a feel for what this is like.
|
79
79
|
|
80
80
|
Known bugs
|
81
81
|
==========
|
data/pry-capture.gemspec
CHANGED
@@ -1,9 +1,6 @@
|
|
1
|
-
# For packaging Octokey, please use "rake gems; rake pushgems".
|
2
|
-
# This gemspec will only generate the correct gem for the current platform.
|
3
1
|
Gem::Specification.new do |s|
|
4
|
-
|
5
2
|
s.name = 'pry-capture'
|
6
|
-
s.version = '0.1
|
3
|
+
s.version = '0.1'
|
7
4
|
s.summary = 'Open a pry session on any unhandled exceptions'
|
8
5
|
s.description = 'Allows you to wrap code in Pry::capture{ } to open a pry session at any unhandled exceptions'
|
9
6
|
s.homepage = 'https://github.com/ConradIrwin/pry-capture'
|
@@ -13,5 +10,4 @@ Gem::Specification.new do |s|
|
|
13
10
|
s.require_paths = ["lib"]
|
14
11
|
|
15
12
|
s.add_dependency 'interception'
|
16
|
-
s.add_dependency 'pry-stack_explorer'
|
17
13
|
end
|
metadata
CHANGED
@@ -1,58 +1,47 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: pry-capture
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 9
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: "0.1"
|
6
10
|
platform: ruby
|
7
|
-
authors:
|
11
|
+
authors:
|
8
12
|
- Conrad Irwin
|
9
13
|
- banisterfiend
|
10
14
|
autorequire:
|
11
15
|
bindir: bin
|
12
16
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
17
|
+
|
18
|
+
date: 2012-08-12 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
16
21
|
name: interception
|
17
|
-
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
|
-
requirements:
|
20
|
-
- - ! '>='
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '0'
|
23
|
-
type: :runtime
|
24
22
|
prerelease: false
|
25
|
-
|
26
|
-
none: false
|
27
|
-
requirements:
|
28
|
-
- - ! '>='
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: '0'
|
31
|
-
- !ruby/object:Gem::Dependency
|
32
|
-
name: pry-stack_explorer
|
33
|
-
requirement: !ruby/object:Gem::Requirement
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
34
24
|
none: false
|
35
|
-
requirements:
|
36
|
-
- -
|
37
|
-
- !ruby/object:Gem::Version
|
38
|
-
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
version: "0"
|
39
32
|
type: :runtime
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
requirements:
|
44
|
-
- - ! '>='
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
version: '0'
|
47
|
-
description: Allows you to wrap code in Pry::capture{ } to open a pry session at any
|
48
|
-
unhandled exceptions
|
49
|
-
email:
|
33
|
+
version_requirements: *id001
|
34
|
+
description: Allows you to wrap code in Pry::capture{ } to open a pry session at any unhandled exceptions
|
35
|
+
email:
|
50
36
|
- conrad.irwin@gmail.com
|
51
37
|
- jrmair@gmail.com
|
52
38
|
executables: []
|
39
|
+
|
53
40
|
extensions: []
|
41
|
+
|
54
42
|
extra_rdoc_files: []
|
55
|
-
|
43
|
+
|
44
|
+
files:
|
56
45
|
- LICENSE.MIT
|
57
46
|
- README.md
|
58
47
|
- Rakefile
|
@@ -65,27 +54,37 @@ files:
|
|
65
54
|
- pry-capture.gemspec
|
66
55
|
homepage: https://github.com/ConradIrwin/pry-capture
|
67
56
|
licenses: []
|
57
|
+
|
68
58
|
post_install_message:
|
69
59
|
rdoc_options: []
|
70
|
-
|
60
|
+
|
61
|
+
require_paths:
|
71
62
|
- lib
|
72
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
73
64
|
none: false
|
74
|
-
requirements:
|
75
|
-
- -
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
|
78
|
-
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
hash: 3
|
69
|
+
segments:
|
70
|
+
- 0
|
71
|
+
version: "0"
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
73
|
none: false
|
80
|
-
requirements:
|
81
|
-
- -
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
version: "0"
|
84
81
|
requirements: []
|
82
|
+
|
85
83
|
rubyforge_project:
|
86
84
|
rubygems_version: 1.8.24
|
87
85
|
signing_key:
|
88
86
|
specification_version: 3
|
89
87
|
summary: Open a pry session on any unhandled exceptions
|
90
88
|
test_files: []
|
89
|
+
|
91
90
|
has_rdoc:
|