rbtrace 0.4.4 → 0.4.5

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.
data/ext/extconf.rb CHANGED
@@ -38,7 +38,7 @@ unless File.exists?("#{CWD}/dst/#{libdir}/libmsgpackc.a")
38
38
  if RUBY_PLATFORM =~ /darwin/ and File.exist?("/usr/bin/gcc-4.2")
39
39
  ENV['CC'] = '/usr/bin/gcc-4.2'
40
40
  end
41
- sys("./configure --disable-dependency-tracking --disable-shared --with-pic --prefix=#{CWD}/dst/")
41
+ sys("./configure --disable-dependency-tracking --disable-shared --with-pic --prefix=#{CWD}/dst/ --libdir=#{CWD}/dst/#{libdir}")
42
42
  sys("make install")
43
43
  end
44
44
  end
data/ext/rbtrace.c CHANGED
@@ -324,7 +324,7 @@ event_hook(rb_event_t event, NODE *node, VALUE self, ID mid, VALUE klass)
324
324
  bool singleton = false;
325
325
  if (klass) {
326
326
  if (TYPE(klass) == T_ICLASS) {
327
- klass = RBASIC(klass)->klass;
327
+ klass = RBASIC_CLASS(klass);
328
328
  }
329
329
 
330
330
  singleton = FL_TEST(klass, FL_SINGLETON);
@@ -1,3 +1,3 @@
1
1
  class RBTracer
2
- VERSION = '0.4.4'
2
+ VERSION = '0.4.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbtrace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-06-17 00:00:00.000000000 Z
12
+ date: 2014-09-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi