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 CHANGED
@@ -69,14 +69,13 @@ task :default => [:test]
69
69
 
70
70
  require 'rake/testtask'
71
71
  desc 'Test units - the smaller tests'
72
- task :'test:unit' => [:ext] do |t|
73
- Rake::TestTask.new(:'test:unit') do |t|
74
- t.libs << './ext'
75
- t.test_files = FileList['test/unit/**/*.rb']
76
- # t.pattern = 'test/**/*test-*.rb' # instead of above
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
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  /* What release we got? */
9
- #define THREADFRAME_VERSION "0.35"
9
+ #define THREADFRAME_VERSION "0.36"
10
10
 
11
11
  #include <string.h>
12
12
  #include "../include/vm_core_mini.h" /* Pulls in ruby.h and node.h */
@@ -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
- - 35
8
- version: "0.35"
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.35 Documentation
83
+ - ThreadFrame 0.36 Documentation
84
84
  require_paths:
85
85
  - lib
86
86
  required_ruby_version: !ruby/object:Gem::Requirement