binding_of_caller 0.6.3 → 0.7.3.pre1
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.
- checksums.yaml +7 -0
- data/.gemtest +0 -0
- data/.gitignore +8 -7
- data/.travis.yml +31 -0
- data/.yardopts +0 -0
- data/Gemfile +2 -0
- data/HISTORY +35 -0
- data/LICENSE +0 -0
- data/README.md +10 -5
- data/Rakefile +134 -112
- data/binding_of_caller.gemspec +39 -0
- data/examples/benchmark.rb +63 -0
- data/ext/binding_of_caller/binding_of_caller.c +9 -4
- data/ext/binding_of_caller/extconf.rb +25 -10
- data/ext/binding_of_caller/ruby_headers/192/version.h +0 -8
- data/lib/binding_of_caller/jruby_interpreted.rb +64 -0
- data/lib/binding_of_caller/mri2.rb +69 -0
- data/lib/binding_of_caller/rubinius.rb +67 -0
- data/lib/binding_of_caller/version.rb +3 -3
- data/lib/binding_of_caller.rb +12 -78
- data/test/test_binding_of_caller.rb +161 -0
- metadata +60 -26
- data/lib/binding_of_caller.bundle +0 -0
- data/lib/tester.rb +0 -15
- data/test/test.rb +0 -91
- /data/ext/binding_of_caller/ruby_headers/192/{gc.h → rubys_gc.h} +0 -0
- /data/ext/binding_of_caller/ruby_headers/193/{gc.h → rubys_gc.h} +0 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a17f0ae87a78728422870616ded5e86b588dd3d0
|
|
4
|
+
data.tar.gz: f6ca5bc763c572972d999997d03c55c836c0d2e6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a9f7b1fbf6fc53920a35e66b76c1e324be60997a51c76b3d8029bc51675748776ef572bef36a56d746ee2916402695db1856ef7d6f609ba5c73e05b0780103cf
|
|
7
|
+
data.tar.gz: 1c6485ebd4c0953f31129368086e25c70c42bc659113610bd8adaf4ed6f4e27fe10d330f42376f0276646b1fc93e321938607d6df0fb85690cee43bce8058abe
|
data/.gemtest
CHANGED
|
File without changes
|
data/.gitignore
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Makefile
|
|
2
|
-
*.so
|
|
3
|
-
*.o
|
|
4
|
-
*.def
|
|
5
|
-
doc/
|
|
6
|
-
pkg/
|
|
7
|
-
.yardoc/
|
|
1
|
+
Makefile
|
|
2
|
+
*.so
|
|
3
|
+
*.o
|
|
4
|
+
*.def
|
|
5
|
+
doc/
|
|
6
|
+
pkg/
|
|
7
|
+
.yardoc/
|
|
8
|
+
Gemfile.lock
|
data/.travis.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
rvm:
|
|
2
|
+
- 1.9.2
|
|
3
|
+
- 1.9.3
|
|
4
|
+
- 2.0.0
|
|
5
|
+
- 2.1.0
|
|
6
|
+
- rbx-19mode
|
|
7
|
+
|
|
8
|
+
notifications:
|
|
9
|
+
irc: "irc.freenode.org#pry"
|
|
10
|
+
recipients:
|
|
11
|
+
- jrmair@gmail.com
|
|
12
|
+
|
|
13
|
+
branches:
|
|
14
|
+
only:
|
|
15
|
+
- master
|
|
16
|
+
|
|
17
|
+
matrix:
|
|
18
|
+
include:
|
|
19
|
+
- rvm: jruby
|
|
20
|
+
env: JRUBY_OPTS=-X-C
|
|
21
|
+
allow_failures:
|
|
22
|
+
- rvm: jruby
|
|
23
|
+
|
|
24
|
+
#script: rake test --trace
|
|
25
|
+
#
|
|
26
|
+
#before_install:
|
|
27
|
+
# - gem update --system
|
|
28
|
+
# - gem --version
|
|
29
|
+
# - gem install rake bacon
|
|
30
|
+
# - rake gem
|
|
31
|
+
# - gem install pkg/*.gem
|
data/.yardopts
CHANGED
|
File without changes
|
data/Gemfile
ADDED
data/HISTORY
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
## 0.7.3.pre1 / 2014-08-20
|
|
2
|
+
|
|
3
|
+
This release includes compatibility fixes for different ruby versions
|
|
4
|
+
and some minor enhancements.
|
|
5
|
+
|
|
6
|
+
* C Extensions are only compiled on MRI 1.9.x.
|
|
7
|
+
|
|
8
|
+
For MRI >= 2 the native API is used, so this should speedup
|
|
9
|
+
installation.
|
|
10
|
+
|
|
11
|
+
For JRuby this will avoid crashes on gem installation.
|
|
12
|
+
|
|
13
|
+
This was alredy being checked for Rubinius.
|
|
14
|
+
|
|
15
|
+
*Amadeus Folego*
|
|
16
|
+
|
|
17
|
+
* Added experimental JRuby support for 1.7.x series.
|
|
18
|
+
|
|
19
|
+
Only the main API is implemented and `Binding#eval` is
|
|
20
|
+
monkey-patched as it is private on JRuby.
|
|
21
|
+
|
|
22
|
+
This requires the compiler to be run on interpreted mode,
|
|
23
|
+
otherwise an exception will be thrown when `of_caller` is called.
|
|
24
|
+
|
|
25
|
+
*Charles Nutter*
|
|
26
|
+
|
|
27
|
+
* Remove executability from non-executable files.
|
|
28
|
+
|
|
29
|
+
*David Celis*
|
|
30
|
+
|
|
31
|
+
* Test and notice MRI 2.1 as a working Ruby implementation.
|
|
32
|
+
|
|
33
|
+
*Lennart Fridén*
|
|
34
|
+
|
|
35
|
+
## 0.7.2 / 2013-06-07
|
data/LICENSE
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
[](http://travis-ci.org/banister/binding_of_caller)
|
|
2
|
+
|
|
1
3
|
binding_of_caller
|
|
2
4
|
===========
|
|
3
5
|
|
|
4
|
-
(C) John Mair (banisterfiend)
|
|
6
|
+
(C) John Mair (banisterfiend) 2012
|
|
5
7
|
|
|
6
|
-
_Retrieve the binding of a method's caller in MRI 1.9.
|
|
8
|
+
_Retrieve the binding of a method's caller in MRI 1.9.2+, MRI 2.0, MRI 2.1 and RBX (Rubinius)_
|
|
7
9
|
|
|
8
10
|
The `binding_of_caller` gem provides the `Binding#of_caller` method.
|
|
9
11
|
|
|
@@ -13,7 +15,7 @@ call stack, not limited to just the immediate caller.
|
|
|
13
15
|
|
|
14
16
|
**Recommended for use only in debugging situations. Do not use this in production apps.**
|
|
15
17
|
|
|
16
|
-
**Only works in MRI Ruby 1.9.2
|
|
18
|
+
**Only works in MRI Ruby 1.9.2, 1.9.3, 2.0, 2.1 and RBX (Rubinius)**
|
|
17
19
|
|
|
18
20
|
* Install the [gem](https://rubygems.org/gems/binding_of_caller): `gem install binding_of_caller`
|
|
19
21
|
* See the [source code](http://github.com/banister/binding_of_caller)
|
|
@@ -50,8 +52,11 @@ This project is a spinoff from the [Pry REPL project.](http://pry.github.com)
|
|
|
50
52
|
Features and limitations
|
|
51
53
|
-------------------------
|
|
52
54
|
|
|
53
|
-
* Only works with MRI 1.9.2
|
|
55
|
+
* Only works with MRI 1.9.2, 1.9.3, 2.0, 2.1 and RBX (Rubinius)
|
|
54
56
|
* Does not work in 1.8.7, but there is a well known (continuation-based) hack to get a `Binding#of_caller` there.
|
|
57
|
+
* There is experimental support for jruby 1.7.x, but it only works in interpreted
|
|
58
|
+
mode (i.e. use the option `-Djruby.compile.mode=OFF` or append
|
|
59
|
+
`compile.mode=OFF` to your `.jrubyrc`)
|
|
55
60
|
|
|
56
61
|
Contact
|
|
57
62
|
-------
|
|
@@ -64,7 +69,7 @@ License
|
|
|
64
69
|
|
|
65
70
|
(The MIT License)
|
|
66
71
|
|
|
67
|
-
Copyright (c)
|
|
72
|
+
Copyright (c) 2012 (John Mair)
|
|
68
73
|
|
|
69
74
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
70
75
|
a copy of this software and associated documentation files (the
|
data/Rakefile
CHANGED
|
@@ -1,112 +1,134 @@
|
|
|
1
|
-
dlext =
|
|
2
|
-
direc = File.dirname(__FILE__)
|
|
3
|
-
|
|
4
|
-
$:.unshift 'lib'
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
require
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
s.
|
|
23
|
-
s.
|
|
24
|
-
s.
|
|
25
|
-
s.
|
|
26
|
-
s.
|
|
27
|
-
s.
|
|
28
|
-
s.
|
|
29
|
-
s.
|
|
30
|
-
s.
|
|
31
|
-
s.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
desc "
|
|
45
|
-
task :
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
end
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
end
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
1
|
+
dlext = RbConfig::CONFIG['DLEXT']
|
|
2
|
+
direc = File.dirname(__FILE__)
|
|
3
|
+
|
|
4
|
+
$:.unshift 'lib'
|
|
5
|
+
|
|
6
|
+
require 'rake/clean'
|
|
7
|
+
require 'rubygems/package_task'
|
|
8
|
+
|
|
9
|
+
require "binding_of_caller/version"
|
|
10
|
+
|
|
11
|
+
CLOBBER.include("**/*.#{dlext}", "**/*~", "**/*#*", "**/*.log", "**/*.o")
|
|
12
|
+
CLEAN.include("ext/**/*.#{dlext}", "ext/**/*.log", "ext/**/*.o",
|
|
13
|
+
"ext/**/*~", "ext/**/*#*", "ext/**/*.obj", "**/*#*", "**/*#*.*",
|
|
14
|
+
"ext/**/*.def", "ext/**/*.pdb", "**/*_flymake*.*", "**/*_flymake", "**/*.rbc")
|
|
15
|
+
|
|
16
|
+
def mri_2?
|
|
17
|
+
defined?(RUBY_ENGINE) && RUBY_ENGINE == "ruby" &&
|
|
18
|
+
RUBY_VERSION =~ /^2/
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def apply_spec_defaults(s)
|
|
22
|
+
s.name = "binding_of_caller"
|
|
23
|
+
s.summary = "Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack."
|
|
24
|
+
s.version = BindingOfCaller::VERSION
|
|
25
|
+
s.date = Time.now.strftime '%Y-%m-%d'
|
|
26
|
+
s.author = "John Mair (banisterfiend)"
|
|
27
|
+
s.email = 'jrmair@gmail.com'
|
|
28
|
+
s.description = s.summary
|
|
29
|
+
s.require_path = 'lib'
|
|
30
|
+
s.add_dependency 'debug_inspector', '>= 0.0.1'
|
|
31
|
+
s.add_development_dependency 'bacon'
|
|
32
|
+
s.add_development_dependency 'rake'
|
|
33
|
+
s.homepage = "http://github.com/banister/binding_of_caller"
|
|
34
|
+
s.has_rdoc = 'yard'
|
|
35
|
+
s.files = `git ls-files`.split("\n")
|
|
36
|
+
s.test_files = `git ls-files -- test/*`.split("\n")
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
desc "Show version"
|
|
40
|
+
task :version do
|
|
41
|
+
puts "BindingOfCaller version: #{BindingOfCaller::VERSION}"
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
desc "run tests"
|
|
45
|
+
task :default => [:test]
|
|
46
|
+
|
|
47
|
+
desc "Run tests"
|
|
48
|
+
task :test do
|
|
49
|
+
unless defined?(Rubinius) or defined?(JRuby)
|
|
50
|
+
Rake::Task['compile'].execute
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
$stdout.puts("\033[33m")
|
|
54
|
+
sh "bacon -Itest -rubygems -a -q"
|
|
55
|
+
$stdout.puts("\033[0m")
|
|
56
|
+
|
|
57
|
+
unless defined?(Rubinius)
|
|
58
|
+
Rake::Task['cleanup'].execute
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
task :pry do
|
|
63
|
+
puts "loading binding_of_caller into pry"
|
|
64
|
+
sh "pry -r ./lib/binding_of_caller"
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
desc "generate gemspec"
|
|
68
|
+
task :gemspec => "ruby:gemspec"
|
|
69
|
+
|
|
70
|
+
namespace :ruby do
|
|
71
|
+
spec = Gem::Specification.new do |s|
|
|
72
|
+
apply_spec_defaults(s)
|
|
73
|
+
s.platform = Gem::Platform::RUBY
|
|
74
|
+
s.extensions = ["ext/binding_of_caller/extconf.rb"]
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
Gem::PackageTask.new(spec) do |pkg|
|
|
78
|
+
pkg.need_zip = false
|
|
79
|
+
pkg.need_tar = false
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
desc "Generate gemspec file"
|
|
83
|
+
task :gemspec do
|
|
84
|
+
File.open("#{spec.name}.gemspec", "w") do |f|
|
|
85
|
+
f << spec.to_ruby
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
desc "build the binaries"
|
|
91
|
+
task :compile => :cleanup do
|
|
92
|
+
if !mri_2?
|
|
93
|
+
chdir "./ext/binding_of_caller/" do
|
|
94
|
+
sh "ruby extconf.rb"
|
|
95
|
+
sh "make"
|
|
96
|
+
sh "cp *.#{dlext} ../../lib/"
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
desc 'cleanup the extensions'
|
|
102
|
+
task :cleanup do
|
|
103
|
+
if !mri_2?
|
|
104
|
+
sh 'rm -rf lib/binding_of_caller.so'
|
|
105
|
+
chdir "./ext/binding_of_caller/" do
|
|
106
|
+
sh 'make clean'
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
desc "reinstall gem"
|
|
112
|
+
task :reinstall => :gems do
|
|
113
|
+
sh "gem uninstall binding_of_caller" rescue nil
|
|
114
|
+
sh "gem install #{direc}/pkg/binding_of_caller-#{BindingOfCaller::VERSION}.gem"
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
task :install => :reinstall
|
|
118
|
+
|
|
119
|
+
desc "build all platform gems at once"
|
|
120
|
+
task :gems => [:clean, :rmgems, "ruby:gem"]
|
|
121
|
+
|
|
122
|
+
task :gem => [:gems]
|
|
123
|
+
|
|
124
|
+
desc "remove all platform gems"
|
|
125
|
+
task :rmgems => ["ruby:clobber_package"]
|
|
126
|
+
|
|
127
|
+
desc "build and push latest gems"
|
|
128
|
+
task :pushgems => :gems do
|
|
129
|
+
chdir("./pkg") do
|
|
130
|
+
Dir["*.gem"].each do |gemfile|
|
|
131
|
+
sh "gem push #{gemfile}"
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
end
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
# stub: binding_of_caller 0.7.3.pre1 ruby lib
|
|
3
|
+
# stub: ext/binding_of_caller/extconf.rb
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "binding_of_caller"
|
|
7
|
+
s.version = "0.7.3.pre1"
|
|
8
|
+
|
|
9
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
10
|
+
s.require_paths = ["lib"]
|
|
11
|
+
s.authors = ["John Mair (banisterfiend)"]
|
|
12
|
+
s.date = "2014-08-20"
|
|
13
|
+
s.description = "Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack."
|
|
14
|
+
s.email = "jrmair@gmail.com"
|
|
15
|
+
s.extensions = ["ext/binding_of_caller/extconf.rb"]
|
|
16
|
+
s.files = [".gemtest", ".gitignore", ".travis.yml", ".yardopts", "Gemfile", "HISTORY", "LICENSE", "README.md", "Rakefile", "binding_of_caller.gemspec", "examples/benchmark.rb", "examples/example.rb", "ext/binding_of_caller/binding_of_caller.c", "ext/binding_of_caller/extconf.rb", "ext/binding_of_caller/ruby_headers/192/debug.h", "ext/binding_of_caller/ruby_headers/192/dln.h", "ext/binding_of_caller/ruby_headers/192/eval_intern.h", "ext/binding_of_caller/ruby_headers/192/id.h", "ext/binding_of_caller/ruby_headers/192/iseq.h", "ext/binding_of_caller/ruby_headers/192/method.h", "ext/binding_of_caller/ruby_headers/192/node.h", "ext/binding_of_caller/ruby_headers/192/regenc.h", "ext/binding_of_caller/ruby_headers/192/regint.h", "ext/binding_of_caller/ruby_headers/192/regparse.h", "ext/binding_of_caller/ruby_headers/192/rubys_gc.h", "ext/binding_of_caller/ruby_headers/192/thread_pthread.h", "ext/binding_of_caller/ruby_headers/192/thread_win32.h", "ext/binding_of_caller/ruby_headers/192/timev.h", "ext/binding_of_caller/ruby_headers/192/transcode_data.h", "ext/binding_of_caller/ruby_headers/192/version.h", "ext/binding_of_caller/ruby_headers/192/vm_core.h", "ext/binding_of_caller/ruby_headers/192/vm_exec.h", "ext/binding_of_caller/ruby_headers/192/vm_insnhelper.h", "ext/binding_of_caller/ruby_headers/192/vm_opts.h", "ext/binding_of_caller/ruby_headers/193/addr2line.h", "ext/binding_of_caller/ruby_headers/193/atomic.h", "ext/binding_of_caller/ruby_headers/193/constant.h", "ext/binding_of_caller/ruby_headers/193/debug.h", "ext/binding_of_caller/ruby_headers/193/dln.h", "ext/binding_of_caller/ruby_headers/193/encdb.h", "ext/binding_of_caller/ruby_headers/193/eval_intern.h", "ext/binding_of_caller/ruby_headers/193/id.h", "ext/binding_of_caller/ruby_headers/193/internal.h", "ext/binding_of_caller/ruby_headers/193/iseq.h", "ext/binding_of_caller/ruby_headers/193/method.h", "ext/binding_of_caller/ruby_headers/193/node.h", "ext/binding_of_caller/ruby_headers/193/parse.h", "ext/binding_of_caller/ruby_headers/193/regenc.h", "ext/binding_of_caller/ruby_headers/193/regint.h", "ext/binding_of_caller/ruby_headers/193/regparse.h", "ext/binding_of_caller/ruby_headers/193/revision.h", "ext/binding_of_caller/ruby_headers/193/rubys_gc.h", "ext/binding_of_caller/ruby_headers/193/thread_pthread.h", "ext/binding_of_caller/ruby_headers/193/thread_win32.h", "ext/binding_of_caller/ruby_headers/193/timev.h", "ext/binding_of_caller/ruby_headers/193/transcode_data.h", "ext/binding_of_caller/ruby_headers/193/transdb.h", "ext/binding_of_caller/ruby_headers/193/version.h", "ext/binding_of_caller/ruby_headers/193/vm_core.h", "ext/binding_of_caller/ruby_headers/193/vm_exec.h", "ext/binding_of_caller/ruby_headers/193/vm_insnhelper.h", "ext/binding_of_caller/ruby_headers/193/vm_opts.h", "lib/binding_of_caller.rb", "lib/binding_of_caller/jruby_interpreted.rb", "lib/binding_of_caller/mri2.rb", "lib/binding_of_caller/rubinius.rb", "lib/binding_of_caller/version.rb", "test/test_binding_of_caller.rb"]
|
|
17
|
+
s.homepage = "http://github.com/banister/binding_of_caller"
|
|
18
|
+
s.rubygems_version = "2.2.2"
|
|
19
|
+
s.summary = "Retrieve the binding of a method's caller. Can also retrieve bindings even further up the stack."
|
|
20
|
+
s.test_files = ["test/test_binding_of_caller.rb"]
|
|
21
|
+
|
|
22
|
+
if s.respond_to? :specification_version then
|
|
23
|
+
s.specification_version = 4
|
|
24
|
+
|
|
25
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
26
|
+
s.add_runtime_dependency(%q<debug_inspector>, [">= 0.0.1"])
|
|
27
|
+
s.add_development_dependency(%q<bacon>, [">= 0"])
|
|
28
|
+
s.add_development_dependency(%q<rake>, [">= 0"])
|
|
29
|
+
else
|
|
30
|
+
s.add_dependency(%q<debug_inspector>, [">= 0.0.1"])
|
|
31
|
+
s.add_dependency(%q<bacon>, [">= 0"])
|
|
32
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
|
33
|
+
end
|
|
34
|
+
else
|
|
35
|
+
s.add_dependency(%q<debug_inspector>, [">= 0.0.1"])
|
|
36
|
+
s.add_dependency(%q<bacon>, [">= 0"])
|
|
37
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
require 'benchmark'
|
|
2
|
+
|
|
3
|
+
unless Object.const_defined? :BindingOfCaller
|
|
4
|
+
$:.unshift File.expand_path '../../lib', __FILE__
|
|
5
|
+
require 'binding_of_caller'
|
|
6
|
+
require 'binding_of_caller/version'
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
n = 250000
|
|
11
|
+
|
|
12
|
+
Benchmark.bm(10) do |x|
|
|
13
|
+
x.report("#of_caller") do
|
|
14
|
+
1.upto(n) do
|
|
15
|
+
1.times do
|
|
16
|
+
1.times do
|
|
17
|
+
binding.of_caller(2)
|
|
18
|
+
binding.of_caller(1)
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
x.report("#frame_count") do
|
|
25
|
+
1.upto(n) do
|
|
26
|
+
1.times do
|
|
27
|
+
1.times do
|
|
28
|
+
binding.frame_count
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
x.report("#callers") do
|
|
35
|
+
1.upto(n) do
|
|
36
|
+
1.times do
|
|
37
|
+
1.times do
|
|
38
|
+
binding.callers
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
x.report("#frame_description") do
|
|
45
|
+
1.upto(n) do
|
|
46
|
+
1.times do
|
|
47
|
+
1.times do
|
|
48
|
+
binding.of_caller(1).frame_description
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
x.report("#frame_type") do
|
|
55
|
+
1.upto(n) do
|
|
56
|
+
1.times do
|
|
57
|
+
1.times do
|
|
58
|
+
binding.of_caller(1).frame_type
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
end
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
#include <ruby.h>
|
|
4
4
|
#include "vm_core.h"
|
|
5
|
-
#include "
|
|
5
|
+
#include "rubys_gc.h"
|
|
6
6
|
|
|
7
7
|
typedef enum { false, true } bool;
|
|
8
8
|
|
|
@@ -24,6 +24,7 @@ threadptr_data_type(void)
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
#define ruby_thread_data_type *threadptr_data_type()
|
|
27
|
+
#define ruby_threadptr_data_type *threadptr_data_type()
|
|
27
28
|
|
|
28
29
|
#define ruby_current_thread ((rb_thread_t *)RTYPEDDATA_DATA(rb_thread_current()))
|
|
29
30
|
|
|
@@ -78,8 +79,12 @@ binding_alloc(VALUE klass)
|
|
|
78
79
|
return obj;
|
|
79
80
|
}
|
|
80
81
|
|
|
82
|
+
static bool ifunc_p(rb_control_frame_t * cfp) {
|
|
83
|
+
return (cfp->flag & VM_FRAME_MAGIC_MASK) == VM_FRAME_MAGIC_IFUNC;
|
|
84
|
+
}
|
|
85
|
+
|
|
81
86
|
static bool valid_frame_p(rb_control_frame_t * cfp, rb_control_frame_t * limit_cfp) {
|
|
82
|
-
return cfp->iseq && !NIL_P(cfp->self);
|
|
87
|
+
return cfp->iseq && !ifunc_p(cfp) && !NIL_P(cfp->self);
|
|
83
88
|
}
|
|
84
89
|
|
|
85
90
|
static rb_control_frame_t * find_valid_frame(rb_control_frame_t * cfp, rb_control_frame_t * limit_cfp) {
|
|
@@ -105,7 +110,6 @@ frametype_name(VALUE flag)
|
|
|
105
110
|
case VM_FRAME_MAGIC_BLOCK: return string2sym("block");
|
|
106
111
|
case VM_FRAME_MAGIC_CLASS: return string2sym("class");
|
|
107
112
|
case VM_FRAME_MAGIC_TOP: return string2sym("top");
|
|
108
|
-
case VM_FRAME_MAGIC_FINISH: return string2sym("finish");
|
|
109
113
|
case VM_FRAME_MAGIC_CFUNC: return string2sym("cfunc");
|
|
110
114
|
case VM_FRAME_MAGIC_PROC: return string2sym("proc");
|
|
111
115
|
case VM_FRAME_MAGIC_IFUNC: return string2sym("ifunc");
|
|
@@ -144,10 +148,11 @@ static VALUE binding_of_caller(VALUE self, VALUE rb_level)
|
|
|
144
148
|
rb_raise(rb_eRuntimeError, "Can't create Binding Object on top of Fiber.");
|
|
145
149
|
|
|
146
150
|
GetBindingPtr(bindval, bind);
|
|
151
|
+
|
|
147
152
|
bind->env = rb_vm_make_env_object(th, cfp);
|
|
148
153
|
bind->filename = cfp->iseq->filename;
|
|
149
154
|
bind->line_no = rb_vm_get_sourceline(cfp);
|
|
150
|
-
|
|
155
|
+
|
|
151
156
|
rb_iv_set(bindval, "@frame_type", frametype_name(cfp->flag));
|
|
152
157
|
rb_iv_set(bindval, "@frame_description", cfp->iseq->name);
|
|
153
158
|
|
|
@@ -1,13 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
def fake_makefile
|
|
2
|
+
File.open(File.join(File.dirname(__FILE__), "Makefile"), "w") do |f|
|
|
3
|
+
f.puts %[install:\n\techo "Nada."]
|
|
4
|
+
end
|
|
5
|
+
end
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
when /1.9.3/
|
|
10
|
-
$CFLAGS += " -I./ruby_headers/193/ -DRUBY_193"
|
|
7
|
+
def mri_1_9?
|
|
8
|
+
defined?(RUBY_ENGINE) && RUBY_ENGINE == "ruby" &&
|
|
9
|
+
RUBY_VERSION =~ /^1\.9/
|
|
11
10
|
end
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
if mri_1_9?
|
|
13
|
+
require 'mkmf'
|
|
14
|
+
|
|
15
|
+
$CFLAGS += " -O0"
|
|
16
|
+
$CFLAGS += " -std=c99"
|
|
17
|
+
|
|
18
|
+
case RUBY_VERSION
|
|
19
|
+
when /1.9.2/
|
|
20
|
+
$CFLAGS += " -I./ruby_headers/192/ -DRUBY_192"
|
|
21
|
+
when /1.9.3/
|
|
22
|
+
$CFLAGS += " -I./ruby_headers/193/ -DRUBY_193"
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
create_makefile('binding_of_caller')
|
|
26
|
+
else
|
|
27
|
+
fake_makefile
|
|
28
|
+
end
|
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
#define RUBY_VERSION "1.9.2"
|
|
2
|
-
<<<<<<< HEAD
|
|
3
|
-
<<<<<<< HEAD
|
|
4
|
-
#define RUBY_PATCHLEVEL 34
|
|
5
|
-
=======
|
|
6
|
-
#define RUBY_PATCHLEVEL 27
|
|
7
|
-
>>>>>>> 7f5d559... merges r29155 from trunk into ruby_1_9_2. fixes #3777, #3772 and #3722.
|
|
8
|
-
=======
|
|
9
2
|
#define RUBY_PATCHLEVEL 30
|
|
10
|
-
>>>>>>> 13fdd22... merges r29188 from trunk into ruby_1_9_2.
|
|
11
3
|
#define RUBY_VERSION_MAJOR 1
|
|
12
4
|
#define RUBY_VERSION_MINOR 9
|
|
13
5
|
#define RUBY_VERSION_TEENY 1
|