pry-byebug 3.4.0 → 3.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7ccdf30b01d3da08853340f1ebcfece6fa15f37
4
- data.tar.gz: fd2d3a518fc219cba6127cea742feb72f1bd7d17
3
+ metadata.gz: c82e5e0e33e86fda5905a320f13357d01e039a7f
4
+ data.tar.gz: 275275905238abca852d9f7e29331dc6c2ebda6d
5
5
  SHA512:
6
- metadata.gz: ba6de59e8732c7a8d6cdf5f3f46b3d5803c4d75c04ea7e1d934680d926516021dc06928b043587aca86cdeaad035c847417eeffe0394bf361419ee8988ad68d0
7
- data.tar.gz: cc83d46530c56cf1ecf12581271fc66709570813f22406b0a293c704093f826107a2d091f34f9aec10d608739f883baa96a3cd4cc9af32057c23301d91743622
6
+ metadata.gz: c7518ce6362f5060ffd905806e222a0142196890a86ce6726cca46a80443eaf9fb70ea81f6e588c35fba16aa6bd9ee51a15f61d013c7e11f4dba21602047daef
7
+ data.tar.gz: d28ed5fbd07fd7d1eb0b87cdfa8129a1daab759bea763ace086c5e3b2e9518dd7be0058621fd01b83697d954ec9580a265c64ffb02531e0c08e651c03472bd0c
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 3.4.1 (2016-11-22)
6
+
7
+ ### Fixed
8
+
9
+ * control_d handler not being required properly when `pry-byebug` loaded
10
+ as a `pry` plugin and not through explicit require.
11
+
5
12
  ## 3.4.0 (2016-05-15)
6
13
 
7
14
  ### Fixed
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Version][VersionBadge]][VersionURL]
4
4
  [![Build][TravisBadge]][TravisURL]
5
5
  [![Inline docs][InchCIBadge]][InchCIURL]
6
- [![Gittip][GittipBadge]][GittipURL]
6
+ [![Gratipay][GratipayBadge]][GratipayURL]
7
7
  [![Coverage][CoverageBadge]][CoverageURL]
8
8
 
9
9
  Adds step-by-step debugging and stack navigation capabilities to [pry][] using
@@ -22,7 +22,6 @@ some_method # Execution will stop here.
22
22
  puts 'Goodbye World' # Run 'next' in the console to move here.
23
23
  ```
24
24
 
25
-
26
25
  ## Requirements
27
26
 
28
27
  * Required: MRI 2.0.0 or higher. For debugging ruby 1.9.3 or older, use
@@ -106,7 +105,6 @@ Pry::Commands.command /^$/, "repeat last command" do
106
105
  end
107
106
  ```
108
107
 
109
-
110
108
  ## Breakpoints
111
109
 
112
110
  You can set and adjust breakpoints directly from a Pry session using the
@@ -136,7 +134,6 @@ break --show 2 # Show details about breakpoint #2.
136
134
 
137
135
  Type `break --help` from a Pry session to see all available options.
138
136
 
139
-
140
137
  ## Credits
141
138
 
142
139
  * Gopal Patel (@nixme), creator of [pry-debugger][], and everybody who
@@ -157,7 +154,7 @@ Patches and bug reports are welcome.
157
154
  [TravisURL]: http://travis-ci.org/deivid-rodriguez/pry-byebug
158
155
  [InchCIBadge]: http://inch-ci.org/github/deivid-rodriguez/pry-byebug.svg?branch=master
159
156
  [InchCIURL]: http://inch-ci.org/github/deivid-rodriguez/pry-byebug
160
- [GittipBadge]: http://img.shields.io/gittip/deivid-rodriguez.svg
161
- [GittipURL]: https://www.gittip.com/deivid-rodriguez
157
+ [GratipayBadge]: http://img.shields.io/gratipay/pry-byebug.svg
158
+ [GratipayURL]: https://www.gratipay.com/pry-byebug
162
159
  [CoverageBadge]: https://img.shields.io/codeclimate/coverage/github/deivid-rodriguez/pry-byebug.svg
163
160
  [CoverageURL]: https://codeclimate.com/github/deivid-rodriguez/pry-byebug
@@ -1,5 +1,2 @@
1
1
  require 'pry'
2
- require 'pry-byebug/base'
3
- require 'pry-byebug/pry_ext'
4
- require 'pry-byebug/commands'
5
- require 'pry-byebug/control_d_handler'
2
+ require 'pry-byebug/cli'
@@ -1,3 +1,4 @@
1
1
  require 'pry-byebug/base'
2
2
  require 'pry-byebug/pry_ext'
3
3
  require 'pry-byebug/commands'
4
+ require 'pry-byebug/control_d_handler'
@@ -1,7 +1,7 @@
1
1
  original_handler = Pry.config.control_d_handler
2
2
 
3
- Pry.config.control_d_handler = proc do |eval_string, pry_|
3
+ Pry.config.control_d_handler = proc do |eval_string, pry_instance|
4
4
  Byebug.stop if Byebug.stoppable?
5
5
 
6
- original_handler.call(eval_string, pry_)
6
+ original_handler.call(eval_string, pry_instance)
7
7
  end
@@ -1,7 +1,6 @@
1
- # frozen_string_literal: true
2
1
  #
3
2
  # Main container module for Pry-Byebug functionality
4
3
  #
5
4
  module PryByebug
6
- VERSION = '3.4.0'.freeze
5
+ VERSION = '3.4.1'.freeze
7
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-byebug
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Rodríguez
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-05-15 00:00:00.000000000 Z
12
+ date: 2016-11-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pry
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  version: '0'
96
96
  requirements: []
97
97
  rubyforge_project:
98
- rubygems_version: 2.5.1
98
+ rubygems_version: 2.6.7
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: Fast debugging with Pry.