iseq 0.0.1-x86-mingw32 → 0.0.3-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. data/README +2 -2
  2. data/README.ja +1 -1
  3. data/ext/extconf.rb +15 -0
  4. data/ext/iseq.c +16 -2
  5. data/files +7 -0
  6. data/lib/iseq.so +0 -0
  7. metadata +6 -4
data/README CHANGED
@@ -5,9 +5,9 @@ This is a library, by the ISeq freaks, for the ISeq freaks, of the ISeq freaks.
5
5
  RubyVM::InstructionSequence is too long name, so I aliased it as Object::ISeq.
6
6
  please use ISeq easily.
7
7
 
8
- I define RubyVM::InstructionSequence#load, it is hidden feature on Ruby level.
8
+ I define RubyVM::InstructionSequence.load, it is hidden feature on Ruby level.
9
9
 
10
- Other feature is (TODO:�l����). If you have a question, please contact me.
10
+ Other feature is under seeking. If you have a question, please contact me.
11
11
  e-mail (s.wanabe AT gmail.com) or twitter (wannabe53) is welcome.
12
12
 
13
13
  LICENCE
data/README.ja CHANGED
@@ -5,7 +5,7 @@ ISeq
5
5
  RubyVM::InstructionSequence �Ƃ��������ɂ��������O���g�킹�Ȃ��C���X�Ȃ̂�
6
6
  Object::ISeq �ɑ�����܂����B�C�y�� ISeq �ƎQ�Ƃ��Ă��������B
7
7
 
8
- �ӂ��� Ruby ����͎g���Ȃ� RubyVM::InstructionSequence#load ���`���܂����B
8
+ �ӂ��� Ruby ����͎g���Ȃ� RubyVM::InstructionSequence.load ���`���܂����B
9
9
 
10
10
  ���̂ق��̋@�\�͍l�����ł��B�Ȃɂ�����܂����烏�i�x�܂ŁB
11
11
  ���[���is.wanabe ������ gmail.com�j�܂��� twitter�iwannabe53�j�łǂ����B
data/ext/extconf.rb CHANGED
@@ -1,6 +1,21 @@
1
1
  require "mkmf"
2
+
3
+ # $defs = ["-D_MSC_VER=1200"]
4
+ # $LDFLAGS += " msvcrt_winxp.obj"
5
+
2
6
  if RUBY_VERSION >= "1.9.0" &&
3
7
  defined?(RUBY_ENGINE) &&
4
8
  RUBY_ENGINE == "ruby"
9
+ #$defs ||= []
10
+ load_api = \
11
+ if RUBY_VERSION < "1.9.1"
12
+ $CFLAGS += " -DOLD_ISEQ_LOAD"
13
+ "rb_iseq_load"
14
+ elsif RUBY_VERSION < "1.9.2"
15
+ "ruby_iseq_load"
16
+ else
17
+ "rb_iseq_load"
18
+ end
19
+ $CFLAGS += " -DISEQ_LOAD=#{load_api}"
5
20
  create_makefile("iseq")
6
21
  end
data/ext/iseq.c CHANGED
@@ -1,7 +1,21 @@
1
1
  #include "ruby.h"
2
+ #ifndef ISEQ_LOAD
3
+ #define ISEQ_LOAD rb_iseq_load
4
+ #endif
2
5
 
3
6
  RUBY_EXTERN VALUE rb_cISeq;
4
- RUBY_EXTERN VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
7
+
8
+ #ifdef OLD_ISEQ_LOAD
9
+ RUBY_EXTERN VALUE iseq_load(VALUE self, VALUE data, VALUE parent, VALUE opt);
10
+
11
+ static inline VALUE
12
+ ISEQ_LOAD(VALUE data, VALUE parent, VALUE opt)
13
+ {
14
+ iseq_load(rb_cISeq, data, parent, opt);
15
+ }
16
+ #else
17
+ RUBY_EXTERN VALUE ISEQ_LOAD(VALUE data, VALUE parent, VALUE opt);
18
+ #endif
5
19
 
6
20
  static VALUE
7
21
  iseq_s_load(int argc, VALUE *argv, VALUE self)
@@ -9,7 +23,7 @@ iseq_s_load(int argc, VALUE *argv, VALUE self)
9
23
  VALUE data, opt=Qnil;
10
24
  rb_scan_args(argc, argv, "11", &data, &opt);
11
25
 
12
- return rb_iseq_load(data, 0, opt);
26
+ return ISEQ_LOAD(data, 0, opt);
13
27
  }
14
28
 
15
29
  void
data/files ADDED
@@ -0,0 +1,7 @@
1
+ LICENSE
2
+ LICENSE.ja
3
+ README
4
+ README.ja
5
+ ext/extconf.rb
6
+ ext/iseq.c
7
+ files
data/lib/iseq.so CHANGED
Binary file
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: x86-mingw32
11
11
  authors:
12
12
  - wanabe
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-03-16 00:00:00 +09:00
17
+ date: 2010-03-18 00:00:00 +09:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -36,6 +36,7 @@ files:
36
36
  - README.ja
37
37
  - ext/extconf.rb
38
38
  - ext/iseq.c
39
+ - files
39
40
  - lib/iseq.so
40
41
  has_rdoc: true
41
42
  homepage: http://github.com/wanabe/iseq
@@ -53,7 +54,8 @@ required_ruby_version: !ruby/object:Gem::Requirement
53
54
  segments:
54
55
  - 1
55
56
  - 9
56
- version: "1.9"
57
+ - 2
58
+ version: 1.9.2
57
59
  required_rubygems_version: !ruby/object:Gem::Requirement
58
60
  requirements:
59
61
  - - ">="