debug 1.0.0.beta5 → 1.0.0.rc1

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: debug
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta5
4
+ version: 1.0.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Koichi Sasada
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: irb
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: reline
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.2.7
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.2.7
27
41
  description: Debugging functionality for Ruby. This is completely rewritten debug.rb
28
42
  which was contained by the encient Ruby versions.
29
43
  email:
@@ -43,6 +57,7 @@ files:
43
57
  - Rakefile
44
58
  - TODO.md
45
59
  - bin/console
60
+ - bin/gentest
46
61
  - bin/setup
47
62
  - debug.gemspec
48
63
  - exe/rdbg
@@ -57,14 +72,16 @@ files:
57
72
  - lib/debug/config.rb
58
73
  - lib/debug/console.rb
59
74
  - lib/debug/frame_info.rb
75
+ - lib/debug/local.rb
60
76
  - lib/debug/open.rb
61
- - lib/debug/run.rb
77
+ - lib/debug/open_nonstop.rb
62
78
  - lib/debug/server.rb
63
79
  - lib/debug/server_dap.rb
64
80
  - lib/debug/session.rb
65
81
  - lib/debug/source_repository.rb
66
- - lib/debug/test_console.rb
82
+ - lib/debug/start.rb
67
83
  - lib/debug/thread_client.rb
84
+ - lib/debug/tracer.rb
68
85
  - lib/debug/version.rb
69
86
  - misc/README.md.erb
70
87
  homepage: https://github.com/ruby/debug
data/lib/debug/run.rb DELETED
@@ -1,4 +0,0 @@
1
- require_relative 'console'
2
- return unless defined?(DEBUGGER__)
3
-
4
- DEBUGGER__.console
File without changes