ruby-debug-base19x 0.11.30.pre15 → 0.11.31

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.
Files changed (3) hide show
  1. checksums.yaml +15 -0
  2. data/ext/ruby_debug/ruby_debug.c +7 -6
  3. metadata +9 -15
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ OTc2NzJkODRiMjcwOGE3YTJkY2ZlMzUwNTIzYTcwODBhZDI3NTI0Ng==
5
+ data.tar.gz: !binary |-
6
+ NDU5YjA1MTkzMTc5MmQ3ZGYyZGU5MmE4NzM1ZTBkMjUxZTdmYjg5MA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ODIwYmUxYTRiOWZmNmNkNjQxYzE4NDU5OWRlMmZmZjhlMzY4NmM2YTE3MTM3
10
+ MjZjNGY0MWYxN2I5N2QyYzNhOTZjYmZlNTliYTY4YWUzYmQzZDRjMTM2YjI4
11
+ MmRjYjcwMGJkODZiYTcxYzM5YTRkMzkwZDc5Y2U2YzExNTc1ZmY=
12
+ data.tar.gz: !binary |-
13
+ MTc5M2I2ZmI0NDliZGNlNGM3MWNkZDBiMzUxZTIzYjA1ZTgzOTY0ZDAxNmVh
14
+ YWRjNDlmODUxZTNiNjZmMGNkYTBkY2VmZGVjMWIzOWFhNDMyNDliNzI5Y2Vh
15
+ YThjMzdkMGUxNDE0YjRmOWNlNTUyZGEyMGI1NzUyZGM3YjUzZjA=
@@ -9,7 +9,7 @@
9
9
  #include <insns_info.inc>
10
10
  #include "ruby_debug.h"
11
11
 
12
- #define DEBUG_VERSION "0.11.30.pre15"
12
+ #define DEBUG_VERSION "0.11.31"
13
13
 
14
14
  #define FRAME_N(n) (&debug_context->frames[debug_context->stack_size-(n)-1])
15
15
  #define GET_FRAME (FRAME_N(check_frame_number(debug_context, frame)))
@@ -906,12 +906,12 @@ debug_event_hook(rb_event_flag_t event, VALUE data, VALUE self, ID mid, VALUE kl
906
906
  {
907
907
  case RUBY_EVENT_LINE:
908
908
  {
909
- if(debug_context->stack_size == 0 ||
910
- get_top_frame(debug_context)->info.runtime.block_iseq != thread->cfp->block_iseq ||
911
- get_top_frame(debug_context)->info.runtime.cfp->iseq != thread->cfp->iseq)
909
+ if(debug_context->stack_size == 0) {
912
910
  save_call_frame(event, debug_context, self, file, line, mid);
913
- else
911
+ }
912
+ else {
914
913
  set_frame_source(event, debug_context, self, file, line, mid);
914
+ }
915
915
 
916
916
  if(RTEST(tracing) || CTX_FL_TEST(debug_context, CTX_FL_TRACING))
917
917
  rb_funcall(context, idAtTracing, 2, rb_str_new2(file), INT2FIX(line));
@@ -986,8 +986,9 @@ debug_event_hook(rb_event_flag_t event, VALUE data, VALUE self, ID mid, VALUE kl
986
986
  case RUBY_EVENT_C_RETURN:
987
987
  {
988
988
  /* note if a block is given we fall through! */
989
- if(!rb_method_boundp(klass, mid, 0) || !c_call_new_frame_p(klass, mid))
989
+ if(!rb_method_boundp(klass, mid, 0) || !c_call_new_frame_p(klass, mid)) {
990
990
  break;
991
+ }
991
992
  }
992
993
  case RUBY_EVENT_RETURN:
993
994
  case RUBY_EVENT_END:
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-debug-base19x
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.30.pre15
5
- prerelease: 8
4
+ version: 0.11.31
6
5
  platform: ruby
7
6
  authors:
8
- - Kent Sibilev, Mark Moseley
7
+ - Kent Sibilev, Mark Moseley, JetBrains RubyMine Team
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-09-19 00:00:00.000000000 Z
11
+ date: 2015-02-06 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: debugger-ruby_core_source
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ! '>'
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ! '>'
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rake
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ! '>='
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ! '>='
44
39
  - !ruby/object:Gem::Version
@@ -53,7 +48,7 @@ description: ! 'ruby-debug is a fast implementation of the standard Ruby debugge
53
48
  handling, bindings for stack frames among other things.
54
49
 
55
50
  '
56
- email: ksibilev@yahoo.com
51
+ email: rubymine-feedback@jetbrains.com
57
52
  executables: []
58
53
  extensions:
59
54
  - ext/ruby_debug/extconf.rb
@@ -74,26 +69,25 @@ files:
74
69
  - lib/ruby-debug-base.rb
75
70
  homepage: https://github.com/JetBrains/ruby-debug-base19
76
71
  licenses: []
72
+ metadata: {}
77
73
  post_install_message:
78
74
  rdoc_options: []
79
75
  require_paths:
80
76
  - lib
81
77
  required_ruby_version: !ruby/object:Gem::Requirement
82
- none: false
83
78
  requirements:
84
79
  - - ! '>='
85
80
  - !ruby/object:Gem::Version
86
81
  version: '1.9'
87
82
  required_rubygems_version: !ruby/object:Gem::Requirement
88
- none: false
89
83
  requirements:
90
- - - ! '>'
84
+ - - ! '>='
91
85
  - !ruby/object:Gem::Version
92
- version: 1.3.1
86
+ version: '0'
93
87
  requirements: []
94
88
  rubyforge_project: ruby-debug19
95
- rubygems_version: 1.8.25
89
+ rubygems_version: 2.4.5
96
90
  signing_key:
97
- specification_version: 3
91
+ specification_version: 4
98
92
  summary: Fast Ruby debugger - core component
99
93
  test_files: []