debase 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.idea/vcs.xml +28 -0
- data/ext/debase_internals.c +2 -2
- data/ext/extconf.rb +1 -1
- data/lib/debase/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af76c0e3d54fd797116e1b2f71d0e4b904846d2eed97c17df586a162ec9de110
|
4
|
+
data.tar.gz: 1e355349293790de799118aae3876b02c1152aaabc7ffbe00579a0aef7228d8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ebbeef9ebc594b30c8724272ca90f3b7f54ff607c18ebb1711ebc783c3251d1ce41dd30ab542d3ec10c746847314978d6f1f32522d304e568fea9d7d45c4f2e
|
7
|
+
data.tar.gz: 02106b81d1b6f070546c8f5c05c0f3b384ec9e97528f32f421b7e19394607f60da98a2a5fd2f73b3c0284dd6a3577e1fc45b60a9cfcd0d81849b322126fc1248
|
data/.gitignore
CHANGED
data/.idea/vcs.xml
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="IssueNavigationConfiguration">
|
4
|
+
<option name="links">
|
5
|
+
<list>
|
6
|
+
<IssueNavigationLink>
|
7
|
+
<option name="issueRegexp" value="[A-Z]+\-\d+" />
|
8
|
+
<option name="linkRegexp" value="http://youtrack.jetbrains.com/issue/$0" />
|
9
|
+
</IssueNavigationLink>
|
10
|
+
<IssueNavigationLink>
|
11
|
+
<option name="issueRegexp" value="RUBYMINE-CR-(\d+)" />
|
12
|
+
<option name="linkRegexp" value="https://jetbrains.team/p/rubymine/reviews/$1/timeline" />
|
13
|
+
</IssueNavigationLink>
|
14
|
+
<IssueNavigationLink>
|
15
|
+
<option name="issueRegexp" value="([\w-_]+/[\w-_]+)#(\d+)" />
|
16
|
+
<option name="linkRegexp" value="https://github.com/$1/issues/$2" />
|
17
|
+
</IssueNavigationLink>
|
18
|
+
<IssueNavigationLink>
|
19
|
+
<option name="issueRegexp" value="#(\d+)" />
|
20
|
+
<option name="linkRegexp" value="https://github.com/ruby-debug/debase/issues/$1" />
|
21
|
+
</IssueNavigationLink>
|
22
|
+
</list>
|
23
|
+
</option>
|
24
|
+
</component>
|
25
|
+
<component name="VcsDirectoryMappings">
|
26
|
+
<mapping directory="" vcs="Git" />
|
27
|
+
</component>
|
28
|
+
</project>
|
data/ext/debase_internals.c
CHANGED
@@ -316,8 +316,8 @@ call_at_line(debug_context_t *context, char *file, int line, VALUE context_objec
|
|
316
316
|
int count_stack_size() {
|
317
317
|
rb_thread_t *thread = ruby_current_thread;
|
318
318
|
rb_control_frame_t *last_cfp = TH_CFP(thread);
|
319
|
-
rb_control_frame_t *start_cfp = RUBY_VM_END_CONTROL_FRAME(TH_INFO(thread));
|
320
|
-
rb_control_frame_t *cfp;
|
319
|
+
const rb_control_frame_t *start_cfp = RUBY_VM_END_CONTROL_FRAME(TH_INFO(thread));
|
320
|
+
const rb_control_frame_t *cfp;
|
321
321
|
|
322
322
|
ptrdiff_t size, i;
|
323
323
|
|
data/ext/extconf.rb
CHANGED
@@ -40,7 +40,7 @@ hdrs = proc {
|
|
40
40
|
config_file = File.join(File.dirname(__FILE__), 'config_options.rb')
|
41
41
|
load config_file if File.exist?(config_file)
|
42
42
|
|
43
|
-
$CFLAGS += ' -Werror=implicit-function-declaration'
|
43
|
+
$CFLAGS += ' -Werror=implicit-function-declaration -Werror=discarded-qualifiers'
|
44
44
|
|
45
45
|
if ENV['debase_debug']
|
46
46
|
$CFLAGS += ' -Wall -Werror'
|
data/lib/debase/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: debase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandr Evstigneev
|
8
8
|
- Dennis Ushakov
|
9
|
+
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
12
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: debase-ruby_core_source
|
@@ -67,6 +68,7 @@ extensions:
|
|
67
68
|
extra_rdoc_files: []
|
68
69
|
files:
|
69
70
|
- ".gitignore"
|
71
|
+
- ".idea/vcs.xml"
|
70
72
|
- ".travis.yml"
|
71
73
|
- Gemfile
|
72
74
|
- LICENSE
|
@@ -122,6 +124,7 @@ homepage: https://github.com/ruby-debug/debase
|
|
122
124
|
licenses:
|
123
125
|
- MIT
|
124
126
|
metadata: {}
|
127
|
+
post_install_message:
|
125
128
|
rdoc_options: []
|
126
129
|
require_paths:
|
127
130
|
- lib
|
@@ -136,7 +139,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
139
|
- !ruby/object:Gem::Version
|
137
140
|
version: '0'
|
138
141
|
requirements: []
|
139
|
-
rubygems_version: 3.
|
142
|
+
rubygems_version: 3.3.7
|
143
|
+
signing_key:
|
140
144
|
specification_version: 4
|
141
145
|
summary: debase is a fast implementation of the standard Ruby debugger debug.rb for
|
142
146
|
Ruby 2.0+
|