rudebug 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/NEWS +4 -0
  2. data/lib/rudebug/gtk-patch.rb +1 -1
  3. metadata +2 -2
data/NEWS CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file sums up important changes that happened between releases.
4
4
 
5
+ == rudebug 0.3.2
6
+ * And now that fix works again in ruby-gtk2-0.16.0-1 (method_defined?() only
7
+ checks public and protected methods, not private ones... d'uh!)
8
+
5
9
  == rudebug 0.3.1
6
10
  * Fixed a bug where rudebug wouldn't work with ruby-gtk2-0.14.1-1 because of a
7
11
  fix from gtk-patch.rb
@@ -5,7 +5,7 @@ class GladeXML # :nodoc:
5
5
  # from a glade file against the GC by holding a reference so they won't go
6
6
  # away. However, it can try to reference objects which weren't loaded when we
7
7
  # supply a root argument. This ought to protect against that case. -- flgr
8
- if method_defined?(:guard_source_from_gc) then
8
+ if defined?(guard_source_from_gc) then
9
9
  alias :guard_source_from_gc_without_nil_check :guard_source_from_gc
10
10
  def guard_source_from_gc(source)
11
11
  guard_source_from_gc_without_nil_check(source) unless source.nil?
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: rudebug
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.3.1
7
- date: 2007-01-06 00:00:00 +01:00
6
+ version: 0.3.2
7
+ date: 2007-01-07 00:00:00 +01:00
8
8
  summary: A graphical debugger for Ruby
9
9
  require_paths:
10
10
  - lib