ruby-debug-base 0.8 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/CHANGES +1 -0
  2. data/ext/ruby_debug.c +3 -3
  3. metadata +2 -2
data/CHANGES CHANGED
@@ -1,5 +1,6 @@
1
1
  0.8
2
2
  - Extract the base debugger API into a separate gem (ruby-debug-base), so it will be easier to add a new interface.
3
+ - Added 'set autoirb' setting.
3
4
  - Bugfixes.
4
5
 
5
6
  0.7.5
@@ -4,7 +4,7 @@
4
4
  #include <rubysig.h>
5
5
  #include <st.h>
6
6
 
7
- #define DEBUG_VERSION "0.8"
7
+ #define DEBUG_VERSION "0.8.1"
8
8
 
9
9
  #ifdef _WIN32
10
10
  struct FRAME {
@@ -744,8 +744,8 @@ debug_event_hook(rb_event_t event, NODE *node, VALUE self, ID mid, VALUE klass)
744
744
  VALUE thread, context, breakpoint;
745
745
  VALUE binding = Qnil;
746
746
  debug_context_t *debug_context;
747
- char *file;
748
- int line;
747
+ char *file = NULL;
748
+ int line = 0;
749
749
  int breakpoint_index = -1;
750
750
 
751
751
  hook_count++;
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: ruby-debug-base
5
5
  version: !ruby/object:Gem::Version
6
- version: "0.8"
7
- date: 2007-03-14 22:41:18 -04:00
6
+ version: 0.8.1
7
+ date: 2007-03-19 03:56:11 -04:00
8
8
  summary: Fast Ruby debugger
9
9
  require_paths:
10
10
  - lib