sender 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,184 @@
1
+ /**********************************************************************
2
+
3
+ vm.h -
4
+
5
+ $Author: yugui $
6
+ created at: 04/01/01 16:56:59 JST
7
+
8
+ Copyright (C) 2004-2007 Koichi Sasada
9
+
10
+ **********************************************************************/
11
+
12
+ #ifndef RUBY_VM_EXEC_H
13
+ #define RUBY_VM_EXEC_H
14
+
15
+ typedef long OFFSET;
16
+ typedef unsigned long lindex_t;
17
+ typedef unsigned long dindex_t;
18
+ typedef rb_num_t GENTRY;
19
+ typedef rb_iseq_t *ISEQ;
20
+
21
+ #ifdef COLLECT_USAGE_ANALYSIS
22
+ #define USAGE_ANALYSIS_INSN(insn) vm_analysis_insn(insn)
23
+ #define USAGE_ANALYSIS_OPERAND(insn, n, op) vm_analysis_operand(insn, n, (VALUE)op)
24
+ #define USAGE_ANALYSIS_REGISTER(reg, s) vm_analysis_register(reg, s)
25
+ #else
26
+ #define USAGE_ANALYSIS_INSN(insn) /* none */
27
+ #define USAGE_ANALYSIS_OPERAND(insn, n, op) /* none */
28
+ #define USAGE_ANALYSIS_REGISTER(reg, s) /* none */
29
+ #endif
30
+
31
+ #ifdef __GCC__
32
+ /* TODO: machine dependent prefetch instruction */
33
+ #define PREFETCH(pc)
34
+ #else
35
+ #define PREFETCH(pc)
36
+ #endif
37
+
38
+ #if VMDEBUG > 0
39
+ #define debugs printf
40
+ #define DEBUG_ENTER_INSN(insn) \
41
+ debug_print_pre(th, GET_CFP());
42
+
43
+ #if OPT_STACK_CACHING
44
+ #define SC_REGS() , reg_a, reg_b
45
+ #else
46
+ #define SC_REGS()
47
+ #endif
48
+
49
+ #define DEBUG_END_INSN() \
50
+ debug_print_post(th, GET_CFP() SC_REGS());
51
+
52
+ #else
53
+
54
+ #define debugs
55
+ #define DEBUG_ENTER_INSN(insn)
56
+ #define DEBUG_END_INSN()
57
+ #endif
58
+
59
+ #define throwdebug if(0)printf
60
+ /* #define throwdebug printf */
61
+
62
+ /************************************************/
63
+ #if DISPATCH_XXX
64
+ error !
65
+ /************************************************/
66
+ #elif OPT_CALL_THREADED_CODE
67
+
68
+ #define LABEL(x) insn_func_##x
69
+ #define ELABEL(x)
70
+ #define LABEL_PTR(x) &LABEL(x)
71
+
72
+ #define INSN_ENTRY(insn) \
73
+ static rb_control_frame_t * \
74
+ FUNC_FASTCALL(LABEL(insn))(rb_thread_t *th, rb_control_frame_t *reg_cfp) {
75
+
76
+ #define END_INSN(insn) return reg_cfp;}
77
+
78
+ #define NEXT_INSN() return reg_cfp;
79
+
80
+ /************************************************/
81
+ #elif OPT_TOKEN_THREADED_CODE || OPT_DIRECT_THREADED_CODE
82
+ /* threaded code with gcc */
83
+
84
+ #define LABEL(x) INSN_LABEL_##x
85
+ #define ELABEL(x) INSN_ELABEL_##x
86
+ #define LABEL_PTR(x) &&LABEL(x)
87
+
88
+ #define INSN_ENTRY_SIG(insn)
89
+
90
+
91
+ #define INSN_DISPATCH_SIG(insn)
92
+
93
+ #define INSN_ENTRY(insn) \
94
+ LABEL(insn): \
95
+ INSN_ENTRY_SIG(insn); \
96
+
97
+ /* dispather */
98
+ #if __GNUC__ && (__i386__ || __x86_64__) && __GNUC__ == 3
99
+ #define DISPATCH_ARCH_DEPEND_WAY(addr) \
100
+ asm volatile("jmp *%0;\t# -- inseted by vm.h\t[length = 2]" : : "r" (addr))
101
+
102
+ #else
103
+ #define DISPATCH_ARCH_DEPEND_WAY(addr) \
104
+ /* do nothing */
105
+
106
+ #endif
107
+
108
+
109
+ /**********************************/
110
+ #if OPT_DIRECT_THREADED_CODE
111
+
112
+ /* for GCC 3.4.x */
113
+ #define TC_DISPATCH(insn) \
114
+ INSN_DISPATCH_SIG(insn); \
115
+ goto *GET_CURRENT_INSN(); \
116
+ ;
117
+
118
+ #else
119
+ /* token threade code */
120
+
121
+ #define TC_DISPATCH(insn) \
122
+ DISPATCH_ARCH_DEPEND_WAY(insns_address_table[GET_CURRENT_INSN()]); \
123
+ INSN_DISPATCH_SIG(insn); \
124
+ goto *insns_address_table[GET_CURRENT_INSN()]; \
125
+ rb_bug("tc error");
126
+
127
+
128
+ #endif /* DISPATCH_DIRECT_THREADED_CODE */
129
+
130
+ #define END_INSN(insn) \
131
+ DEBUG_END_INSN(); \
132
+ TC_DISPATCH(insn); \
133
+
134
+ #define INSN_DISPATCH() \
135
+ TC_DISPATCH(__START__) \
136
+ {
137
+
138
+ #define END_INSNS_DISPATCH() \
139
+ rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
140
+ } /* end of while loop */ \
141
+
142
+ #define NEXT_INSN() TC_DISPATCH(__NEXT_INSN__)
143
+
144
+ /************************************************/
145
+ #else /* no threaded code */
146
+ /* most common method */
147
+
148
+ #define INSN_ENTRY(insn) \
149
+ case BIN(insn):
150
+
151
+ #define END_INSN(insn) \
152
+ DEBUG_END_INSN(); \
153
+ break;
154
+
155
+
156
+ #define INSN_DISPATCH() \
157
+ while(1){ \
158
+ switch(GET_CURRENT_INSN()){
159
+
160
+ #define END_INSNS_DISPATCH() \
161
+ default: \
162
+ SDR(); \
163
+ rb_bug("unknown insn: %ld", GET_CURRENT_INSN()); \
164
+ } /* end of switch */ \
165
+ } /* end of while loop */ \
166
+
167
+ #define NEXT_INSN() goto first
168
+
169
+ #endif
170
+
171
+ #define VM_SP_CNT(th, sp) ((sp) - (th)->stack)
172
+
173
+ #if OPT_CALL_THREADED_CODE
174
+ #define THROW_EXCEPTION(exc) do { \
175
+ th->errinfo = (VALUE)(exc); \
176
+ return 0; \
177
+ } while (0)
178
+ #else
179
+ #define THROW_EXCEPTION(exc) return (VALUE)(exc)
180
+ #endif
181
+
182
+ #define SCREG(r) (reg_##r)
183
+
184
+ #endif /* RUBY_VM_EXEC_H */
@@ -0,0 +1,196 @@
1
+ /**********************************************************************
2
+
3
+ insnhelper.h - helper macros to implement each instructions
4
+
5
+ $Author: yugui $
6
+ created at: 04/01/01 15:50:34 JST
7
+
8
+ Copyright (C) 2004-2007 Koichi Sasada
9
+
10
+ **********************************************************************/
11
+
12
+ #ifndef RUBY_INSNHELPER_H
13
+ #define RUBY_INSNHELPER_H
14
+
15
+ /**
16
+ * VM Debug Level
17
+ *
18
+ * debug level:
19
+ * 0: no debug output
20
+ * 1: show instruction name
21
+ * 2: show stack frame when control stack frame is changed
22
+ * 3: show stack status
23
+ * 4: show register
24
+ * 5:
25
+ * 10: gc check
26
+ */
27
+
28
+ #ifndef VMDEBUG
29
+ #define VMDEBUG 0
30
+ #endif
31
+
32
+ #if 0
33
+ #undef VMDEBUG
34
+ #define VMDEBUG 3
35
+ #endif
36
+
37
+ enum {
38
+ BOP_PLUS,
39
+ BOP_MINUS,
40
+ BOP_MULT,
41
+ BOP_DIV,
42
+ BOP_MOD,
43
+ BOP_EQ,
44
+ BOP_EQQ,
45
+ BOP_LT,
46
+ BOP_LE,
47
+ BOP_LTLT,
48
+ BOP_AREF,
49
+ BOP_ASET,
50
+ BOP_LENGTH,
51
+ BOP_SUCC,
52
+ BOP_GT,
53
+ BOP_GE,
54
+ BOP_NOT,
55
+ BOP_NEQ,
56
+
57
+ BOP_LAST_
58
+ };
59
+
60
+ extern char ruby_vm_redefined_flag[BOP_LAST_];
61
+ extern VALUE ruby_vm_global_state_version;
62
+ extern VALUE ruby_vm_const_missing_count;
63
+
64
+ #define GET_VM_STATE_VERSION() (ruby_vm_global_state_version)
65
+ #define INC_VM_STATE_VERSION() \
66
+ (ruby_vm_global_state_version = (ruby_vm_global_state_version+1) & 0x8fffffff)
67
+
68
+
69
+ /**********************************************************/
70
+ /* deal with stack */
71
+ /**********************************************************/
72
+
73
+ #define PUSH(x) (SET_SV(x), INC_SP(1))
74
+ #define TOPN(n) (*(GET_SP()-(n)-1))
75
+ #define POPN(n) (DEC_SP(n))
76
+ #define POP() (DEC_SP(1))
77
+ #define STACK_ADDR_FROM_TOP(n) (GET_SP()-(n))
78
+
79
+ #define GET_TOS() (tos) /* dummy */
80
+
81
+ /**********************************************************/
82
+ /* deal with registers */
83
+ /**********************************************************/
84
+
85
+ #define REG_CFP (reg_cfp)
86
+ #define REG_PC (REG_CFP->pc)
87
+ #define REG_SP (REG_CFP->sp)
88
+ #define REG_LFP (REG_CFP->lfp)
89
+ #define REG_DFP (REG_CFP->dfp)
90
+
91
+ #define RESTORE_REGS() do { \
92
+ REG_CFP = th->cfp; \
93
+ } while (0)
94
+
95
+ #define REG_A reg_a
96
+ #define REG_B reg_b
97
+
98
+ #ifdef COLLECT_USAGE_ANALYSIS
99
+ #define USAGE_ANALYSIS_REGISTER_HELPER(a, b, v) \
100
+ (USAGE_ANALYSIS_REGISTER(a, b), (v))
101
+ #else
102
+ #define USAGE_ANALYSIS_REGISTER_HELPER(a, b, v) (v)
103
+ #endif
104
+
105
+ /* PC */
106
+ #define GET_PC() (USAGE_ANALYSIS_REGISTER_HELPER(0, 0, REG_PC))
107
+ #define SET_PC(x) (REG_PC = (USAGE_ANALYSIS_REGISTER_HELPER(0, 1, x)))
108
+ #define GET_CURRENT_INSN() (*GET_PC())
109
+ #define GET_OPERAND(n) (GET_PC()[(n)])
110
+ #define ADD_PC(n) (SET_PC(REG_PC + (n)))
111
+
112
+ #define GET_PC_COUNT() (REG_PC - GET_ISEQ()->iseq_encoded)
113
+ #define JUMP(dst) (REG_PC += (dst))
114
+
115
+ /* FP */
116
+ #define GET_CFP() (USAGE_ANALYSIS_REGISTER_HELPER(2, 0, REG_CFP))
117
+ #define GET_LFP() (USAGE_ANALYSIS_REGISTER_HELPER(3, 0, REG_LFP))
118
+ #define SET_LFP(x) (REG_LFP = (USAGE_ANALYSIS_REGISTER_HELPER(3, 1, (x))))
119
+ #define GET_DFP() (USAGE_ANALYSIS_REGISTER_HELPER(4, 0, REG_DFP))
120
+ #define SET_DFP(x) (REG_DFP = (USAGE_ANALYSIS_REGISTER_HELPER(4, 1, (x))))
121
+
122
+ /* SP */
123
+ #define GET_SP() (USAGE_ANALYSIS_REGISTER_HELPER(1, 0, REG_SP))
124
+ #define SET_SP(x) (REG_SP = (USAGE_ANALYSIS_REGISTER_HELPER(1, 1, (x))))
125
+ #define INC_SP(x) (REG_SP += (USAGE_ANALYSIS_REGISTER_HELPER(1, 1, (x))))
126
+ #define DEC_SP(x) (REG_SP -= (USAGE_ANALYSIS_REGISTER_HELPER(1, 1, (x))))
127
+ #define SET_SV(x) (*GET_SP() = (x))
128
+ /* set current stack value as x */
129
+
130
+ #define GET_SP_COUNT() (REG_SP - th->stack)
131
+
132
+ /* instruction sequence C struct */
133
+ #define GET_ISEQ() (GET_CFP()->iseq)
134
+
135
+ /**********************************************************/
136
+ /* deal with variables */
137
+ /**********************************************************/
138
+
139
+ #define GET_PREV_DFP(dfp) ((VALUE *)((dfp)[0] & ~0x03))
140
+
141
+ #define GET_GLOBAL(entry) rb_gvar_get((struct global_entry*)entry)
142
+ #define SET_GLOBAL(entry, val) rb_gvar_set((struct global_entry*)entry, val)
143
+
144
+ #define GET_CONST_INLINE_CACHE(dst) ((IC) * (GET_PC() + (dst) + 1))
145
+
146
+ /**********************************************************/
147
+ /* deal with values */
148
+ /**********************************************************/
149
+
150
+ #define GET_SELF() (USAGE_ANALYSIS_REGISTER_HELPER(5, 0, GET_CFP()->self))
151
+
152
+ /**********************************************************/
153
+ /* deal with control flow 2: method/iterator */
154
+ /**********************************************************/
155
+
156
+ #define COPY_CREF(c1, c2) do { \
157
+ NODE *__tmp_c2 = (c2); \
158
+ c1->nd_clss = __tmp_c2->nd_clss; \
159
+ c1->nd_visi = __tmp_c2->nd_visi; \
160
+ c1->nd_next = __tmp_c2->nd_next; \
161
+ } while (0)
162
+
163
+ #define CALL_METHOD(num, blockptr, flag, id, mn, recv) do { \
164
+ VALUE v = vm_call_method(th, GET_CFP(), num, blockptr, flag, id, mn, recv); \
165
+ if (v == Qundef) { \
166
+ RESTORE_REGS(); \
167
+ NEXT_INSN(); \
168
+ } \
169
+ else { \
170
+ val = v; \
171
+ } \
172
+ } while (0)
173
+
174
+ #define GET_BLOCK_PTR() \
175
+ ((rb_block_t *)(GC_GUARDED_PTR_REF(GET_LFP()[0])))
176
+
177
+ /**********************************************************/
178
+ /* deal with control flow 3: exception */
179
+ /**********************************************************/
180
+
181
+
182
+ /**********************************************************/
183
+ /* others */
184
+ /**********************************************************/
185
+
186
+ /* optimize insn */
187
+ #define FIXNUM_2_P(a, b) ((a) & (b) & 1)
188
+ #define BASIC_OP_UNREDEFINED_P(op) (LIKELY(ruby_vm_redefined_flag[op] == 0))
189
+ #define HEAP_CLASS_OF(obj) RBASIC(obj)->klass
190
+
191
+ #define CALL_SIMPLE_METHOD(num, id, recv) do { \
192
+ VALUE klass = CLASS_OF(recv); \
193
+ CALL_METHOD(num, 0, 0, id, rb_method_node(klass, id), recv); \
194
+ } while (0)
195
+
196
+ #endif /* RUBY_INSNHELPER_H */
@@ -0,0 +1,51 @@
1
+ /*-*-c-*-*/
2
+ /**********************************************************************
3
+
4
+ vm_opts.h - VM optimize option
5
+
6
+ $Author: ko1 $
7
+
8
+ Copyright (C) 2004-2007 Koichi Sasada
9
+
10
+ **********************************************************************/
11
+
12
+
13
+ #ifndef RUBY_VM_OPTS_H
14
+ #define RUBY_VM_OPTS_H
15
+
16
+ /* Compile options.
17
+ * You can change these options at runtime by VM::CompileOption.
18
+ * Following definitions are default values.
19
+ */
20
+
21
+ #define OPT_TRACE_INSTRUCTION 1
22
+ #define OPT_TAILCALL_OPTIMIZATION 0
23
+ #define OPT_PEEPHOLE_OPTIMIZATION 1
24
+ #define OPT_SPECIALISED_INSTRUCTION 1
25
+ #define OPT_INLINE_CONST_CACHE 1
26
+
27
+
28
+ /* Build Options.
29
+ * You can't change these options at runtime.
30
+ */
31
+
32
+ /* C compiler depend */
33
+ #define OPT_DIRECT_THREADED_CODE 1
34
+ #define OPT_TOKEN_THREADED_CODE 0
35
+ #define OPT_CALL_THREADED_CODE 0
36
+
37
+ /* VM running option */
38
+ #define OPT_CHECKED_RUN 1
39
+ #define OPT_INLINE_METHOD_CACHE 1
40
+ #define OPT_BLOCKINLINING 0
41
+
42
+ /* architecture independent, affects generated code */
43
+ #define OPT_OPERANDS_UNIFICATION 0
44
+ #define OPT_INSTRUCTIONS_UNIFICATION 0
45
+ #define OPT_UNIFY_ALL_COMBINATION 0
46
+ #define OPT_STACK_CACHING 0
47
+
48
+ /* misc */
49
+ #define SUPPORT_JOKE 0
50
+
51
+ #endif /* RUBY_VM_OPTS_H */
Binary file
data/lib/sender.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'sender/sender'
2
2
 
3
3
  module Sender
4
- VERSION = '1.0.1'
4
+ # VERSION is set by hoe
5
5
  end
data/sender.gemspec ADDED
@@ -0,0 +1,55 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{sender}
5
+ s.version = "1.1.0"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Asher"]
9
+ s.date = %q{2010-06-23}
10
+ s.description = %q{http://rubygems.org/gems/sender
11
+
12
+ Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
13
+
14
+ Adds object-oriented backtrace, which returns :object and :method for each stack frame,
15
+ and which permits queries regarding backtrace contents.
16
+
17
+ * __sender__
18
+ * __caller__
19
+ * backtrace
20
+ * backtrace( frames_to_trace_backward )
21
+ * backtrace_includes?( Class )
22
+ * backtrace_includes?( class_instance )
23
+ * backtrace_includes?( :symbol )
24
+ * backtrace_includes?( Class, class_instance, :symbol, ... )}
25
+ s.email = ["asher@ridiculouspower.com"]
26
+ s.extensions = ["ext/sender/extconf.rb"]
27
+ s.extra_rdoc_files = ["Manifest.txt", "CHANGELOG.rdoc", "README.rdoc"]
28
+ s.files = [".autotest", "CHANGELOG.rdoc", "Makefile", "Manifest.txt", "README.rdoc", "Rakefile", "ext/sender/RPSender_internal.c", "ext/sender/RPSender_internal.h", "ext/sender/RubySourceSupport.c", "ext/sender/RubySourceSupport.h", "ext/sender/debug.h", "ext/sender/dln.h", "ext/sender/encdb.h", "ext/sender/eval_intern.h", "ext/sender/extconf.rb", "ext/sender/gc.h", "ext/sender/id.h", "ext/sender/iseq.h", "ext/sender/main.c", "ext/sender/node.h", "ext/sender/parse.h", "ext/sender/rb_Global.c", "ext/sender/rb_Global.h", "ext/sender/rb_Global_internal.h", "ext/sender/rb_Kernel.c", "ext/sender/rb_Kernel.h", "ext/sender/regenc.h", "ext/sender/regint.h", "ext/sender/regparse.h", "ext/sender/revision.h", "ext/sender/thread_pthread.h", "ext/sender/thread_win32.h", "ext/sender/transcode_data.h", "ext/sender/transdb.h", "ext/sender/version.h", "ext/sender/vm_core.h", "ext/sender/vm_exec.h", "ext/sender/vm_insnhelper.h", "ext/sender/vm_opts.h", "lib/sender.rb", "lib/sender/sender.bundle", "mkmf.log", "sender.gemspec", "test/test_sender.rb"]
29
+ s.homepage = %q{http://rubygems.org/gems/sender}
30
+ s.rdoc_options = ["--main", "README.rdoc"]
31
+ s.require_paths = ["lib"]
32
+ s.rubyforge_project = %q{asher}
33
+ s.rubygems_version = %q{1.3.7}
34
+ s.summary = %q{http://rubygems.org/gems/sender Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions}
35
+ s.test_files = ["test/test_sender.rb"]
36
+
37
+ if s.respond_to? :specification_version then
38
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
39
+ s.specification_version = 3
40
+
41
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
42
+ s.add_development_dependency(%q<rubyforge>, [">= 2.0.4"])
43
+ s.add_development_dependency(%q<rake-compiler>, [">= 0"])
44
+ s.add_development_dependency(%q<hoe>, [">= 2.6.1"])
45
+ else
46
+ s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
47
+ s.add_dependency(%q<rake-compiler>, [">= 0"])
48
+ s.add_dependency(%q<hoe>, [">= 2.6.1"])
49
+ end
50
+ else
51
+ s.add_dependency(%q<rubyforge>, [">= 2.0.4"])
52
+ s.add_dependency(%q<rake-compiler>, [">= 0"])
53
+ s.add_dependency(%q<hoe>, [">= 2.6.1"])
54
+ end
55
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sender
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 0
9
8
  - 1
10
- version: 1.0.1
9
+ - 0
10
+ version: 1.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Asher
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-06-22 00:00:00 -04:00
18
+ date: 2010-06-23 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -64,7 +64,22 @@ dependencies:
64
64
  version: 2.6.1
65
65
  type: :development
66
66
  version_requirements: *id003
67
- description: Object oriented callback features.
67
+ description: |-
68
+ http://rubygems.org/gems/sender
69
+
70
+ Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
71
+
72
+ Adds object-oriented backtrace, which returns :object and :method for each stack frame,
73
+ and which permits queries regarding backtrace contents.
74
+
75
+ * __sender__
76
+ * __caller__
77
+ * backtrace
78
+ * backtrace( frames_to_trace_backward )
79
+ * backtrace_includes?( Class )
80
+ * backtrace_includes?( class_instance )
81
+ * backtrace_includes?( :symbol )
82
+ * backtrace_includes?( Class, class_instance, :symbol, ... )
68
83
  email:
69
84
  - asher@ridiculouspower.com
70
85
  executables: []
@@ -82,16 +97,43 @@ files:
82
97
  - Manifest.txt
83
98
  - README.rdoc
84
99
  - Rakefile
100
+ - ext/sender/RPSender_internal.c
101
+ - ext/sender/RPSender_internal.h
85
102
  - ext/sender/RubySourceSupport.c
86
103
  - ext/sender/RubySourceSupport.h
104
+ - ext/sender/debug.h
105
+ - ext/sender/dln.h
106
+ - ext/sender/encdb.h
107
+ - ext/sender/eval_intern.h
87
108
  - ext/sender/extconf.rb
109
+ - ext/sender/gc.h
110
+ - ext/sender/id.h
111
+ - ext/sender/iseq.h
88
112
  - ext/sender/main.c
113
+ - ext/sender/node.h
114
+ - ext/sender/parse.h
89
115
  - ext/sender/rb_Global.c
90
116
  - ext/sender/rb_Global.h
91
117
  - ext/sender/rb_Global_internal.h
118
+ - ext/sender/rb_Kernel.c
119
+ - ext/sender/rb_Kernel.h
120
+ - ext/sender/regenc.h
121
+ - ext/sender/regint.h
122
+ - ext/sender/regparse.h
123
+ - ext/sender/revision.h
124
+ - ext/sender/thread_pthread.h
125
+ - ext/sender/thread_win32.h
126
+ - ext/sender/transcode_data.h
127
+ - ext/sender/transdb.h
128
+ - ext/sender/version.h
129
+ - ext/sender/vm_core.h
130
+ - ext/sender/vm_exec.h
131
+ - ext/sender/vm_insnhelper.h
132
+ - ext/sender/vm_opts.h
92
133
  - lib/sender.rb
93
134
  - lib/sender/sender.bundle
94
135
  - mkmf.log
136
+ - sender.gemspec
95
137
  - test/test_sender.rb
96
138
  has_rdoc: true
97
139
  homepage: http://rubygems.org/gems/sender
@@ -127,6 +169,6 @@ rubyforge_project: asher
127
169
  rubygems_version: 1.3.7
128
170
  signing_key:
129
171
  specification_version: 3
130
- summary: Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions.
172
+ summary: http://rubygems.org/gems/sender Adds __sender__ and __caller__ to the built-in __callee__ and __method__ functions
131
173
  test_files:
132
174
  - test/test_sender.rb