pry-debugger-jruby 2.1.1-java → 2.2.1-java

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 674908e61c443a62c0bb7ca44b35097920b43e55c87550853cb113eabf899dea
4
- data.tar.gz: ddb4c064edef6dc16090635a6033ca271ba4b94d1d6c0057e0d21c85ed61f91c
3
+ metadata.gz: fdcda2dc50966e2c4bc265b85525d9ca0eea13679aedd32d8a143e44e8b3d5c4
4
+ data.tar.gz: f283538ff192f53e3669b741f72ef2defc0f68d0d59f2528d7bfeb9c50471120
5
5
  SHA512:
6
- metadata.gz: 06ba93aa3d4f4afa29189d2182be2d751d4c79a2e5beca7f18efaa90e2f03b33d6dd4c7ef3be9ef32e8eb080eaa510dbb3d703aaace9e75b267659890ed534ba
7
- data.tar.gz: bde34464766bebc045364934c7868c939e4f5bf1caddaa67dfb93d929d168397f5749557d96bb2d056f54b92888b4c04ed4986cafefcc69357ea64de380fb907
6
+ metadata.gz: b9d094a8c51864fbd430b4421552499a768b2d1461004f80dc4f8c6cc46636c41c6f5075b48f7c3a215df19b7ca949ad5e8a80d6ed78245305e4820aeebe5a2f
7
+ data.tar.gz: b4430f01588f0c9f25e6dc3d0329c35e204f2463c44975d89bd30e5aa5f95da3f9db0cc833ea10f7386f93d3d8f1a25aca8f8b4689afb8a794b5e3a8e176aad4
@@ -3,15 +3,12 @@ require 'pry-debugger-jruby/processor'
3
3
 
4
4
  class << Pry
5
5
  alias start_without_pry_debugger start
6
- attr_reader :processor
7
6
 
8
7
  def start_with_pry_debugger(target = TOPLEVEL_BINDING, options = {})
9
- @processor ||= PryDebuggerJRuby::Processor.new
10
-
11
8
  if target.is_a?(Binding) && PryDebuggerJRuby.check_file_context(target)
12
9
  # Wrap the processer around the usual Pry.start to catch navigation
13
10
  # commands.
14
- @processor.run(true) do
11
+ processor.run(true) do
15
12
  start_without_pry_debugger(target, options)
16
13
  end
17
14
  else
@@ -20,4 +17,8 @@ class << Pry
20
17
  end
21
18
  end
22
19
  alias start start_with_pry_debugger
20
+
21
+ def processor
22
+ @processor ||= PryDebuggerJRuby::Processor.new
23
+ end
23
24
  end
@@ -1,3 +1,3 @@
1
1
  module PryDebuggerJRuby
2
- VERSION = '2.1.1'.freeze
2
+ VERSION = '2.2.1'.freeze
3
3
  end
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.required_ruby_version = '>= 2.2.0'
23
23
 
24
- spec.add_dependency 'pry', '>= 0.13', '< 0.15'
24
+ spec.add_dependency 'pry', '>= 0.13', '< 0.16'
25
25
  spec.add_dependency 'ruby-debug-base', '>= 0.10.4', '< 0.12'
26
26
 
27
27
  spec.add_development_dependency 'bundler', '~> 2.1'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-debugger-jruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.2.1
5
5
  platform: java
6
6
  authors:
7
7
  - Ivo Anjo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-02 00:00:00.000000000 Z
11
+ date: 2024-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '0.13'
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: '0.15'
21
+ version: '0.16'
22
22
  name: pry
23
23
  type: :runtime
24
24
  prerelease: false
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '0.13'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '0.15'
32
+ version: '0.16'
33
33
  - !ruby/object:Gem::Dependency
34
34
  requirement: !ruby/object:Gem::Requirement
35
35
  requirements:
@@ -101,7 +101,6 @@ extra_rdoc_files: []
101
101
  files:
102
102
  - ".gitignore"
103
103
  - ".ruby-version"
104
- - CHANGELOG.md
105
104
  - LICENSE
106
105
  - README.md
107
106
  - Rakefile
@@ -136,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
135
  - !ruby/object:Gem::Version
137
136
  version: '0'
138
137
  requirements: []
139
- rubygems_version: 3.3.25
138
+ rubygems_version: 3.3.26
140
139
  signing_key:
141
140
  specification_version: 4
142
141
  summary: JRuby 9k-compatible pry debugging!
data/CHANGELOG.md DELETED
@@ -1,69 +0,0 @@
1
- ## 2.1.0 (2021-07-24)
2
-
3
- * Tweak supported versions to allow Pry 0.14 (no code changes otherwise needed)
4
-
5
- ## 2.0.0 (2020-11-11)
6
-
7
- * Allow syntax highlighting when printing breakpoints
8
- * Improve documentation for next and breakpoints commands
9
- * Add support for Pry 0.13, drop support for older Pry versions
10
-
11
- ## 1.2.2 (2020-08-18)
12
-
13
- * Bump dependencies: `pry`, `ruby-debug-base` ([@stergiom](https://gitlab.com/stergiom))
14
-
15
- ## 1.2.1 (2018-06-06)
16
-
17
- * Moved gem to gitlab
18
-
19
- ## 1.2.0 (2017-12-03)
20
-
21
- * Fix breaking using `Class#method` syntax
22
- * Allow pry-debugger-jruby to be used with pry 0.11
23
-
24
- ## 1.1.0 (2016-12-02)
25
-
26
- * Avoid stepping into pry code
27
- * Add help text when running without `--debug`
28
-
29
- ## 1.0.0 (2016-12-01)
30
-
31
- * Revamp documentation for JRuby usage
32
- * Add workaround for using `step` in JRuby
33
- * Fix circular require warning
34
- * Fixed missing banner in commands causing uninitialized variable warning
35
- * Drop support for ruby < 2.2
36
- * Officially forked from `pry-debugger`, renaming gem to `pry-debugger-jruby` and releasing on RubyGems
37
-
38
- ## 0.2.3 (2014-07-02)
39
-
40
- * Support [pry] 0.10
41
-
42
- ## 0.2.2 (2013-03-07)
43
-
44
- * Relaxed [debugger][debugger] dependency.
45
-
46
- ## 0.2.1 (2012-12-26)
47
-
48
- * Support breakpoints on methods defined in the pry console. (@banister)
49
- * Fix support for specifying breakpoints by *file:line_number*. (@nviennot)
50
- * Validate breakpoint conditionals are real Ruby expressions.
51
- * Support for [debugger][debugger] ~> 1.2.0. (@jshou)
52
- * Safer `alias_method_chain`-style patching of `Pry.start` and
53
- `PryRemote::Server#teardown`. (@benizi)
54
-
55
- ## 0.2.0 (2012-06-11)
56
-
57
- * Breakpoints
58
- * **finish** command
59
- * Internal cleanup and bug fixes
60
-
61
- ## 0.1.0 (2012-06-07)
62
-
63
- * First release. **step**, **next**, and **continue** commands.
64
- [pry-remote 0.1.4][pry-remote] support.
65
-
66
-
67
- [pry]: http://pryrepl.org/
68
- [pry-remote]: https://github.com/Mon-Ouie/pry-remote
69
- [debugger]: https://github.com/cldwalker/debugger