pry-byebug 3.7.0 → 3.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/README.md +18 -9
- data/lib/pry-byebug/base.rb +3 -1
- data/lib/pry-byebug/commands/breakpoint.rb +2 -0
- data/lib/pry-byebug/commands/continue.rb +2 -0
- data/lib/pry-byebug/helpers/breakpoints.rb +0 -8
- data/lib/pry-byebug/helpers/location.rb +24 -0
- data/lib/pry-byebug/version.rb +1 -1
- data/lib/pry/byebug/breakpoints.rb +1 -2
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a137892969eac20ea48ac02620df8aaf21837620c414e5a0325aac15f05dbf4b
|
4
|
+
data.tar.gz: cce1bd93d1c513dc53df7399ee6feaf54c8be31dcf8bdc9220026c7a9c0cf0e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f9582bfb0b2fc9851c61ec59cd27ee6ec522d371d03f20b2dd53def4dd4f6df40048386c6483bad3fcc541b172801317288b395714fd82d8b95f1190d9e21cf
|
7
|
+
data.tar.gz: c6e3720e4710748ed2f2f46bab28b8ec6712b0e1dd5cfd5b63fa3a45f91b574f956800fae3efda3499c65516ad470aaac3267551169229ea57dd4306ffeda7f1
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
## Master (Unreleased)
|
4
4
|
|
5
|
+
## 3.8.0 (2020-01-22)
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
|
9
|
+
* Use `Binding#source_location` instead of evaluating `__FILE__` to avoid
|
10
|
+
warnings on Ruby 2.7 and on Ruby 2.6 in verbose mode (#221).
|
11
|
+
|
12
|
+
### Removed
|
13
|
+
|
14
|
+
* Support for Ruby 2.3. Pry-byebug no longer installs on this platform.
|
15
|
+
|
5
16
|
## 3.7.0 (2019-02-21)
|
6
17
|
|
7
18
|
* Byebug 11 compatibility, with ruby 2.6 support.
|
@@ -16,7 +27,7 @@
|
|
16
27
|
|
17
28
|
### Fixed
|
18
29
|
|
19
|
-
* Allow other threads like Pry
|
30
|
+
* Allow other threads like Pry (#142).
|
20
31
|
|
21
32
|
## 3.5.0 (2017-08-23)
|
22
33
|
|
data/README.md
CHANGED
@@ -23,7 +23,7 @@ puts 'Goodbye World' # Run 'next' in the console to move here.
|
|
23
23
|
|
24
24
|
## Requirements
|
25
25
|
|
26
|
-
MRI 2.
|
26
|
+
MRI 2.4.0 or higher.
|
27
27
|
|
28
28
|
## Installation
|
29
29
|
|
@@ -149,14 +149,23 @@ mentioned here if they are present in your Gemfile.
|
|
149
149
|
|
150
150
|
See [Getting Started with Development](CONTRIBUTING.md).
|
151
151
|
|
152
|
-
|
153
|
-
[Liberapay][liberapay.com].
|
152
|
+
## Funding
|
154
153
|
|
155
|
-
|
154
|
+
Subscribe to [Tidelift] to ensure pry-byebug stays actively maintained, and at
|
155
|
+
the same time get licensing assurances and timely security notifications for
|
156
|
+
your open source dependencies.
|
156
157
|
|
157
|
-
[
|
158
|
-
|
159
|
-
[
|
158
|
+
You can also help `pry-byebug` by leaving a small (or big) tip through [Liberapay].
|
159
|
+
|
160
|
+
[Tidelift]: https://tidelift.com/subscription/pkg/rubygems-pry-byebug?utm_source=rubygems-pry-byebug&utm_medium=referral&utm_campaign=readme
|
161
|
+
[Liberapay]: https://liberapay.com/pry-byebug/donate
|
162
|
+
|
163
|
+
## Security contact information
|
164
|
+
|
165
|
+
Please use the Tidelift security contact to [report a security vulnerability].
|
166
|
+
Tidelift will coordinate the fix and disclosure.
|
167
|
+
|
168
|
+
[report a security vulnerability]: https://tidelift.com/security
|
160
169
|
|
161
170
|
## Credits
|
162
171
|
|
@@ -179,5 +188,5 @@ Patches and bug reports are welcome.
|
|
179
188
|
[CircleCIURL]: https://circleci.com/gh/deivid-rodriguez/pry-byebug/tree/master
|
180
189
|
[InchCIBadge]: http://inch-ci.org/github/deivid-rodriguez/pry-byebug.svg?branch=master
|
181
190
|
[InchCIURL]: http://inch-ci.org/github/deivid-rodriguez/pry-byebug
|
182
|
-
[CoverageBadge]: https://
|
183
|
-
[CoverageURL]: https://codeclimate.com/github/deivid-rodriguez/pry-byebug
|
191
|
+
[CoverageBadge]: https://api.codeclimate.com/v1/badges/a88e27809329c03af017/test_coverage
|
192
|
+
[CoverageURL]: https://codeclimate.com/github/deivid-rodriguez/pry-byebug/test_coverage
|
data/lib/pry-byebug/base.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "pry-byebug/helpers/location"
|
4
|
+
|
3
5
|
#
|
4
6
|
# Main container module for Pry-Byebug functionality
|
5
7
|
#
|
@@ -13,7 +15,7 @@ module PryByebug
|
|
13
15
|
# Checks that a target binding is in a local file context.
|
14
16
|
#
|
15
17
|
def file_context?(target)
|
16
|
-
file =
|
18
|
+
file = Helpers::Location.current_file(target)
|
17
19
|
file == Pry.eval_path || !Pry::Helpers::BaseHelpers.not_a_real_file?(file)
|
18
20
|
end
|
19
21
|
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require "pry/byebug/breakpoints"
|
4
4
|
require "pry-byebug/helpers/breakpoints"
|
5
|
+
require "pry-byebug/helpers/location"
|
5
6
|
require "pry-byebug/helpers/multiline"
|
6
7
|
|
7
8
|
module PryByebug
|
@@ -10,6 +11,7 @@ module PryByebug
|
|
10
11
|
#
|
11
12
|
class BreakCommand < Pry::ClassCommand
|
12
13
|
include Helpers::Breakpoints
|
14
|
+
include Helpers::Location
|
13
15
|
include Helpers::Multiline
|
14
16
|
|
15
17
|
match "break"
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require "pry-byebug/helpers/navigation"
|
4
4
|
require "pry-byebug/helpers/breakpoints"
|
5
|
+
require "pry-byebug/helpers/location"
|
5
6
|
|
6
7
|
module PryByebug
|
7
8
|
#
|
@@ -10,6 +11,7 @@ module PryByebug
|
|
10
11
|
class ContinueCommand < Pry::ClassCommand
|
11
12
|
include Helpers::Navigation
|
12
13
|
include Helpers::Breakpoints
|
14
|
+
include Helpers::Location
|
13
15
|
|
14
16
|
match "continue"
|
15
17
|
group "Byebug"
|
@@ -15,14 +15,6 @@ module PryByebug
|
|
15
15
|
Pry::Byebug::Breakpoints
|
16
16
|
end
|
17
17
|
|
18
|
-
#
|
19
|
-
# Current file in the target binding. Used as the default breakpoint
|
20
|
-
# location.
|
21
|
-
#
|
22
|
-
def current_file
|
23
|
-
target.eval("__FILE__")
|
24
|
-
end
|
25
|
-
|
26
18
|
#
|
27
19
|
# Prints a message with bold font.
|
28
20
|
#
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module PryByebug
|
4
|
+
module Helpers
|
5
|
+
#
|
6
|
+
# Compatibility helper to handle source location
|
7
|
+
#
|
8
|
+
module Location
|
9
|
+
module_function
|
10
|
+
|
11
|
+
#
|
12
|
+
# Current file in the target binding. Used as the default breakpoint
|
13
|
+
# location.
|
14
|
+
#
|
15
|
+
def current_file(source = target)
|
16
|
+
# Guard clause for Ruby >= 2.6 providing now Binding#source_location ...
|
17
|
+
return source.source_location[0] if source.respond_to?(:source_location)
|
18
|
+
|
19
|
+
# ... to avoid warning: 'eval may not return location in binding'
|
20
|
+
source.eval("__FILE__")
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/lib/pry-byebug/version.rb
CHANGED
@@ -88,7 +88,6 @@ class Pry
|
|
88
88
|
#
|
89
89
|
def delete(id)
|
90
90
|
deleted =
|
91
|
-
::Byebug.started? &&
|
92
91
|
::Byebug::Breakpoint.remove(id) &&
|
93
92
|
breakpoints.delete(find_by_id(id))
|
94
93
|
|
@@ -100,7 +99,7 @@ class Pry
|
|
100
99
|
#
|
101
100
|
def delete_all
|
102
101
|
@breakpoints = []
|
103
|
-
::Byebug.breakpoints.clear
|
102
|
+
::Byebug.breakpoints.clear
|
104
103
|
end
|
105
104
|
|
106
105
|
#
|
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
|
+
version: 3.8.0
|
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:
|
12
|
+
date: 2020-01-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: byebug
|
@@ -69,6 +69,7 @@ files:
|
|
69
69
|
- lib/pry-byebug/commands/up.rb
|
70
70
|
- lib/pry-byebug/control_d_handler.rb
|
71
71
|
- lib/pry-byebug/helpers/breakpoints.rb
|
72
|
+
- lib/pry-byebug/helpers/location.rb
|
72
73
|
- lib/pry-byebug/helpers/multiline.rb
|
73
74
|
- lib/pry-byebug/helpers/navigation.rb
|
74
75
|
- lib/pry-byebug/pry_ext.rb
|
@@ -87,14 +88,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
88
|
requirements:
|
88
89
|
- - ">="
|
89
90
|
- !ruby/object:Gem::Version
|
90
|
-
version: 2.
|
91
|
+
version: 2.4.0
|
91
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
93
|
requirements:
|
93
94
|
- - ">="
|
94
95
|
- !ruby/object:Gem::Version
|
95
96
|
version: '0'
|
96
97
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
98
|
+
rubygems_version: 3.1.2
|
98
99
|
signing_key:
|
99
100
|
specification_version: 4
|
100
101
|
summary: Fast debugging with Pry.
|