rb-threadframe 0.35 → 0.36
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +6 -7
- data/ext/thread_frame.c +1 -1
- data/include/vm_core_mini.h +1 -1
- metadata +3 -3
data/Rakefile
CHANGED
@@ -69,14 +69,13 @@ task :default => [:test]
|
|
69
69
|
|
70
70
|
require 'rake/testtask'
|
71
71
|
desc 'Test units - the smaller tests'
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
t.verbose = true
|
78
|
-
end
|
72
|
+
Rake::TestTask.new(:'test:unit') do |t|
|
73
|
+
t.libs << './ext'
|
74
|
+
t.test_files = FileList['test/unit/**/*.rb']
|
75
|
+
# t.pattern = 'test/**/*test-*.rb' # instead of above
|
76
|
+
t.verbose = true
|
79
77
|
end
|
78
|
+
task :'test:unit' => [:ext]
|
80
79
|
|
81
80
|
desc 'Test everything - unit tests for now.'
|
82
81
|
task :test do
|
data/ext/thread_frame.c
CHANGED
data/include/vm_core_mini.h
CHANGED
@@ -82,9 +82,9 @@ typedef struct rb_compile_option_struct {
|
|
82
82
|
int instructions_unification;
|
83
83
|
int stack_caching;
|
84
84
|
int trace_instruction;
|
85
|
-
int debug_level;
|
86
85
|
int save_tree_node;
|
87
86
|
int save_compile_opts;
|
87
|
+
int debug_level;
|
88
88
|
} rb_compile_option_t;
|
89
89
|
|
90
90
|
/* Instruction sequence */
|
metadata
CHANGED
@@ -4,8 +4,8 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
8
|
-
version: "0.
|
7
|
+
- 36
|
8
|
+
version: "0.36"
|
9
9
|
platform: ruby
|
10
10
|
authors:
|
11
11
|
- R. Bernstein
|
@@ -80,7 +80,7 @@ rdoc_options:
|
|
80
80
|
- --main
|
81
81
|
- README.md
|
82
82
|
- --title
|
83
|
-
- ThreadFrame 0.
|
83
|
+
- ThreadFrame 0.36 Documentation
|
84
84
|
require_paths:
|
85
85
|
- lib
|
86
86
|
required_ruby_version: !ruby/object:Gem::Requirement
|