rspec-core 2.6.0 → 2.7.0.rc1

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.
Files changed (113) hide show
  1. data/README.md +1 -1
  2. data/features/Upgrade.md +11 -0
  3. data/features/command_line/exit_status.feature +20 -3
  4. data/features/command_line/format_option.feature +8 -0
  5. data/features/command_line/line_number_appended_to_path.feature +35 -1
  6. data/features/command_line/line_number_option.feature +16 -3
  7. data/features/command_line/pattern_option.feature +31 -0
  8. data/features/command_line/rake_task.feature +1 -1
  9. data/features/command_line/ruby.feature +22 -0
  10. data/features/configuration/default_path.feature +38 -0
  11. data/features/example_groups/{shared_example_group.feature → shared_examples.feature} +49 -26
  12. data/features/expectation_framework_integration/configure_expectation_framework.feature +1 -1
  13. data/features/filtering/inclusion_filters.feature +4 -5
  14. data/features/formatters/text_formatter.feature +16 -13
  15. data/features/helper_methods/let.feature +4 -4
  16. data/features/hooks/around_hooks.feature +1 -1
  17. data/features/hooks/before_and_after_hooks.feature +3 -3
  18. data/features/hooks/filtering.feature +13 -6
  19. data/features/metadata/user_defined.feature +12 -10
  20. data/features/pending/pending_examples.feature +21 -8
  21. data/features/step_definitions/additional_cli_steps.rb +1 -1
  22. data/features/subject/attribute_of_subject.feature +2 -2
  23. data/features/support/env.rb +1 -2
  24. data/lib/rspec/core/backward_compatibility.rb +1 -1
  25. data/lib/rspec/core/configuration.rb +71 -16
  26. data/lib/rspec/core/configuration_options.rb +46 -16
  27. data/lib/rspec/core/{extensions/object.rb → dsl.rb} +2 -4
  28. data/lib/rspec/core/example.rb +10 -7
  29. data/lib/rspec/core/example_group.rb +34 -18
  30. data/lib/rspec/core/expecting/with_rspec.rb +0 -2
  31. data/lib/rspec/core/extensions.rb +0 -1
  32. data/lib/rspec/core/formatters/base_formatter.rb +8 -4
  33. data/lib/rspec/core/formatters/base_text_formatter.rb +38 -18
  34. data/lib/rspec/core/formatters/html_formatter.rb +3 -1
  35. data/lib/rspec/core/formatters/snippet_extractor.rb +9 -3
  36. data/lib/rspec/core/formatters/text_mate_formatter.rb +20 -6
  37. data/lib/rspec/core/hooks.rb +7 -6
  38. data/lib/rspec/core/let.rb +5 -5
  39. data/lib/rspec/core/metadata.rb +136 -94
  40. data/lib/rspec/core/metadata_hash_builder.rb +1 -1
  41. data/lib/rspec/core/option_parser.rb +11 -7
  42. data/lib/rspec/core/pending.rb +2 -1
  43. data/lib/rspec/core/rake_task.rb +26 -15
  44. data/lib/rspec/core/reporter.rb +5 -6
  45. data/lib/rspec/core/runner.rb +1 -1
  46. data/lib/rspec/core/shared_example_group.rb +4 -4
  47. data/lib/rspec/core/subject.rb +7 -7
  48. data/lib/rspec/core/version.rb +1 -1
  49. data/lib/rspec/core/world.rb +9 -13
  50. data/lib/rspec/core.rb +14 -21
  51. data/spec/autotest/discover_spec.rb +2 -2
  52. data/spec/autotest/failed_results_re_spec.rb +29 -21
  53. data/spec/autotest/rspec_spec.rb +3 -3
  54. data/spec/rspec/core/command_line_spec.rb +1 -6
  55. data/spec/rspec/core/configuration_options_spec.rb +111 -27
  56. data/spec/rspec/core/configuration_spec.rb +161 -37
  57. data/spec/rspec/core/deprecations_spec.rb +2 -2
  58. data/spec/rspec/core/drb_command_line_spec.rb +6 -6
  59. data/spec/rspec/core/example_group_spec.rb +197 -61
  60. data/spec/rspec/core/example_spec.rb +33 -16
  61. data/spec/rspec/core/formatters/base_formatter_spec.rb +3 -3
  62. data/spec/rspec/core/formatters/base_text_formatter_spec.rb +222 -71
  63. data/spec/rspec/core/formatters/helpers_spec.rb +8 -8
  64. data/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html +90 -26
  65. data/spec/rspec/core/formatters/html_formatted-1.8.7.html +12 -11
  66. data/spec/rspec/core/formatters/html_formatted-1.9.2.html +12 -11
  67. data/spec/rspec/core/formatters/{html_formatted-1.9.1.html → html_formatted-1.9.3.html} +12 -11
  68. data/spec/rspec/core/formatters/html_formatter_spec.rb +5 -5
  69. data/spec/rspec/core/formatters/progress_formatter_spec.rb +2 -2
  70. data/spec/rspec/core/formatters/snippet_extractor_spec.rb +2 -2
  71. data/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html +91 -27
  72. data/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html +13 -12
  73. data/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html +29 -28
  74. data/spec/rspec/core/formatters/{text_mate_formatted-1.9.1.html → text_mate_formatted-1.9.3.html} +29 -28
  75. data/spec/rspec/core/formatters/text_mate_formatter_spec.rb +2 -2
  76. data/spec/rspec/core/hooks_filtering_spec.rb +18 -18
  77. data/spec/rspec/core/let_spec.rb +19 -6
  78. data/spec/rspec/core/metadata_spec.rb +146 -61
  79. data/spec/rspec/core/pending_example_spec.rb +4 -4
  80. data/spec/rspec/core/rake_task_spec.rb +71 -50
  81. data/spec/rspec/core/reporter_spec.rb +2 -2
  82. data/spec/rspec/core/ruby_project_spec.rb +2 -2
  83. data/spec/rspec/core/runner_spec.rb +4 -1
  84. data/spec/rspec/core/shared_example_group_spec.rb +15 -119
  85. data/spec/rspec/core/subject_spec.rb +13 -13
  86. data/spec/rspec/core/world_spec.rb +31 -22
  87. data/spec/rspec/core_spec.rb +1 -29
  88. data/spec/spec_helper.rb +51 -50
  89. data/spec/support/shared_example_groups.rb +3 -3
  90. data/spec/support/spec_files.rb +8 -8
  91. metadata +79 -94
  92. data/.document +0 -5
  93. data/.gitignore +0 -12
  94. data/.rspec +0 -0
  95. data/.travis.yml +0 -7
  96. data/Gemfile +0 -50
  97. data/Guardfile +0 -5
  98. data/License.txt +0 -23
  99. data/Rakefile +0 -89
  100. data/cucumber.yml +0 -2
  101. data/features/.nav +0 -57
  102. data/features/Changelog.md +0 -269
  103. data/rspec-core.gemspec +0 -24
  104. data/script/FullBuildRakeFile +0 -63
  105. data/script/console +0 -8
  106. data/script/cucumber +0 -1
  107. data/script/full_build +0 -1
  108. data/script/spec +0 -1
  109. data/spec/rspec/core/formatters/html_formatted-1.8.6.html +0 -398
  110. data/spec/rspec/core/formatters/text_mate_formatted-1.8.6.html +0 -398
  111. data/spec.txt +0 -1126
  112. /data/{bin → exe}/autospec +0 -0
  113. /data/{bin → exe}/rspec +0 -0
@@ -1,269 +0,0 @@
1
- ### 2.6.0 / 2011-05-12
2
-
3
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
4
-
5
- * Enhancements
6
- * `shared_context` (Damian Nurzynski)
7
- * extend groups matching specific metadata with:
8
- * method definitions
9
- * subject declarations
10
- * let/let! declarations
11
- * etc (anything you can do in a group)
12
- * `its([:key])` works for any subject with #[]. (Peter Jaros)
13
- * `treat_symbols_as_metadata_keys_with_true_values` (Myron Marston)
14
- * Print a deprecation warning when you configure RSpec after defining
15
- an example. All configuration should happen before any examples are
16
- defined. (Myron Marston)
17
- * Pass the exit status of a DRb run to the invoking process. This causes
18
- specs run via DRb to not just return true or false. (Ilkka Laukkanen)
19
- * Refactoring of `ConfigurationOptions#parse_options` (Rodrigo Rosenfeld Rosas)
20
- * Report excluded filters in runner output (tip from andyl)
21
- * Clean up messages for filters/tags.
22
- * Restore --pattern/-P command line option from rspec-1
23
- * Support false as well as true in config.full_backtrace= (Andreas Tolf Tolfsen)
24
-
25
- * Bug fixes
26
- * Don't stumble over an exception without a message (Hans Hasselberg)
27
- * Remove non-ascii characters from comments that were choking rcov (Geoffrey
28
- Byers)
29
- * Fixed backtrace so it doesn't include lines from before the autorun at_exit
30
- hook (Myron Marston)
31
- * Include RSpec::Matchers when first example group is defined, rather
32
- than just before running the examples. This works around an obscure
33
- bug in ruby 1.9 that can cause infinite recursion. (Myron Marston)
34
- * Don't send `example_group_[started|finished]` to formatters for empty groups.
35
- * Get specs passing on jruby (Sidu Ponnappa)
36
- * Fix bug where mixing nested groups and outer-level examples gave
37
- unpredictable :line_number behavior (Artur Małecki)
38
- * Regexp.escape the argument to --example (tip from Elliot Winkler)
39
- * Correctly pass/fail pending block with message expectations
40
- * CommandLine returns exit status (0/1) instead of true/false
41
- * Create path to formatter output file if it doesn't exist (marekj).
42
-
43
-
44
- ### 2.5.1 / 2011-02-06
45
-
46
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
47
-
48
- NOTE: this release breaks compatibility with rspec/autotest/bundler
49
- integration, but does so in order to greatly simplify it.
50
-
51
- With this release, if you want the generated autotest command to include
52
- 'bundle exec', require Autotest's bundler plugin in a .autotest file in the
53
- project's root directory or in your home directory:
54
-
55
- require "autotest/bundler"
56
-
57
- Now you can just type 'autotest' on the commmand line and it will work as you expect.
58
-
59
- If you don't want 'bundle exec', there is nothing you have to do.
60
-
61
- ### 2.5.0 / 2011-02-05
62
-
63
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
64
-
65
- * Enhancements
66
- * Autotest::Rspec2 parses command line args passed to autotest after '--'
67
- * --skip-bundler option for autotest command
68
- * Autotest regexp fixes (Jon Rowe)
69
- * Add filters to html and textmate formatters (Daniel Quimper)
70
- * Explicit passing of block (need for JRuby 1.6) (John Firebaugh)
71
-
72
- * Bug fixes
73
- * fix dom IDs in HTML formatter (Brian Faherty)
74
- * fix bug with --drb + formatters when not running in drb
75
- * include --tag options in drb args (monocle)
76
- * fix regression so now SPEC_OPTS take precedence over CLI options again
77
- (Roman Chernyatchik)
78
- * only call its(:attribute) once (failing example from Brian Dunn)
79
- * fix bizarre bug where rspec would hang after String.alias :to_int :to_i
80
- (Damian Nurzynski)
81
-
82
- * Deprecations
83
- * implicit inclusion of 'bundle exec' when Gemfile present (use autotest's
84
- bundler plugin instead)
85
-
86
- ### 2.4.0 / 2011-01-02
87
-
88
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
89
-
90
- * Enhancements
91
- * start the debugger on -d so the stack trace is visible when it stops
92
- (Clifford Heath)
93
- * apply hook filtering to examples as well as groups (Myron Marston)
94
- * support multiple formatters, each with their own output
95
- * show exception classes in failure messages unless they come from RSpec
96
- matchers or message expectations
97
- * before(:all) { pending } sets all examples to pending
98
-
99
- * Bug fixes
100
- * fix bug due to change in behavior of reject in Ruby 1.9.3-dev (Shota Fukumori)
101
- * fix bug when running in jruby: be explicit about passing block to super
102
- (John Firebaugh)
103
- * rake task doesn't choke on paths with quotes (Janmejay Singh)
104
- * restore --options option from rspec-1
105
- * require 'ostruct' to fix bug with its([key]) (Kim Burgestrand)
106
- * --configure option generates .rspec file instead of autotest/discover.rb
107
-
108
- ### 2.3.1 / 2010-12-16
109
-
110
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
111
-
112
- * Bug fixes
113
- * send debugger warning message to $stdout if RSpec.configuration.error_stream
114
- has not been defined yet.
115
- * HTML Formatter _finally_ properly displays nested groups (Jarmo Pertman)
116
- * eliminate some warnings when running RSpec's own suite (Jarmo Pertman)
117
-
118
- ### 2.3.0 / 2010-12-12
119
-
120
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
121
-
122
- * Enhancements
123
- * tell autotest to use "rspec2" if it sees a .rspec file in the project's
124
- root directory
125
- * replaces the need for ./autotest/discover.rb, which will not work with
126
- all versions of ZenTest and/or autotest
127
- * config.expect_with
128
- * :rspec # => rspec/expectations
129
- * :stdlib # => test/unit/assertions
130
- * :rspec, :stdlib # => both
131
-
132
- * Bug fixes
133
- * fix dev Gemfile to work on non-mac-os machines (Lake Denman)
134
- * ensure explicit subject is only eval'd once (Laszlo Bacsi)
135
-
136
- ### 2.2.1 / 2010-11-28
137
-
138
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
139
-
140
- * Bug fixes
141
- * alias_method instead of override Kernel#method_missing (John Wilger)
142
- * changed --autotest to --tty in generated command (MIKAMI Yoshiyuki)
143
- * revert change to debugger (had introduced conflict with Rails)
144
- * also restored --debugger/-debug option
145
-
146
- ### 2.2.0 / 2010-11-28
147
-
148
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
149
-
150
- * Deprecations/changes
151
- * --debug/-d on command line is deprecated and now has no effect
152
- * win32console is now ignored; Windows users must use ANSICON for color support
153
- (Bosko Ivanisevic)
154
-
155
- * Enhancements
156
- * When developing locally rspec-core now works with the rspec-dev setup or your local gems
157
- * Raise exception with helpful message when rspec-1 is loaded alongside
158
- rspec-2 (Justin Ko)
159
- * debugger statements _just work_ as long as ruby-debug is installed
160
- * otherwise you get warned, but not fired
161
- * Expose example.metadata in around hooks
162
- * Performance improvments (much faster now)
163
-
164
- * Bug fixes
165
- * Make sure --fail-fast makes it across drb
166
- * Pass -Ilib:spec to rcov
167
-
168
- ### 2.1.0 / 2010-11-07
169
-
170
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
171
-
172
- * Enhancments
173
- * Add skip_bundler option to rake task to tell rake task to ignore the
174
- presence of a Gemfile (jfelchner)
175
- * Add gemfile option to rake task to tell rake task what Gemfile to look
176
- for (defaults to 'Gemfile')
177
- * Allow passing caller trace into Metadata to support extensions (Glenn
178
- Vanderburg)
179
- * Add deprecation warning for Spec::Runner.configure to aid upgrade from
180
- RSpec-1
181
- * Add deprecated Spec::Rake::SpecTask to aid upgrade from RSpec-1
182
- * Add 'autospec' command with helpful message to aid upgrade from RSpec-1
183
- * Add support for filtering with tags on CLI (Lailson Bandeira)
184
- * Add a helpful message about RUBYOPT when require fails in bin/rspec
185
- (slyphon)
186
- * Add "-Ilib" to the default rcov options (Tianyi Cui)
187
- * Make the expectation framework configurable (default rspec, of course)
188
- (Justin Ko)
189
- * Add 'pending' to be conditional (Myron Marston)
190
- * Add explicit support for :if and :unless as metadata keys for conditional run
191
- of examples (Myron Marston)
192
- * Add --fail-fast command line option (Jeff Kreeftmeijer)
193
-
194
- * Bug fixes
195
- * Eliminate stack overflow with "subject { self }"
196
- * Require 'rspec/core' in the Raketask (ensures it required when running rcov)
197
-
198
- ### 2.0.1 / 2010-10-18
199
-
200
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
201
-
202
- * Bug fixes
203
- * Restore color when using spork + autotest
204
- * Pending examples without docstrings render the correct message (Josep M. Bach)
205
- * Fixed bug where a failure in a spec file ending in anything but _spec.rb would
206
- fail in a confusing way.
207
- * Support backtrace lines from erb templates in html formatter (Alex Crichton)
208
-
209
- ### 2.0.0 / 2010-10-10
210
-
211
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
212
-
213
- * RSpec-1 compatibility
214
- * Rake task uses ENV["SPEC"] as file list if present
215
-
216
- * Bug fixes
217
- * Bug Fix: optparse --out foo.txt (Leonardo Bessa)
218
- * Suppress color codes for non-tty output (except autotest)
219
-
220
- ### 2.0.0.rc / 2010-10-05
221
-
222
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
223
-
224
- * Enhancements
225
- * implicitly require unknown formatters so you don't have to require the
226
- file explicitly on the commmand line (Michael Grosser)
227
- * add --out/-o option to assign output target
228
- * added fail_fast configuration option to abort on first failure
229
- * support a Hash subject (its([:key]) { should == value }) (Josep M. Bach)
230
-
231
- * Bug fixes
232
- * Explicitly require rspec version to fix broken rdoc task (Hans de Graaff)
233
- * Ignore backtrace lines that come from other languages, like Java or
234
- Javascript (Charles Lowell)
235
- * Rake task now does what is expected when setting (or not setting)
236
- fail_on_error and verbose
237
- * Fix bug in which before/after(:all) hooks were running on excluded nested
238
- groups (Myron Marston)
239
- * Fix before(:all) error handling so that it fails examples in nested groups,
240
- too (Myron Marston)
241
-
242
- ### 2.0.0.beta.22 / 2010-09-12
243
-
244
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
245
-
246
- * Enhancements
247
- * removed at_exit hook
248
- * CTRL-C stops the run (almost) immediately
249
- * first it cleans things up by running the appropriate after(:all) and after(:suite) hooks
250
- * then it reports on any examples that have already run
251
- * cleaned up rake task
252
- * generate correct task under variety of conditions
253
- * options are more consistent
254
- * deprecated redundant options
255
- * run 'bundle exec autotest' when Gemfile is present
256
- * support ERB in .rspec options files (Justin Ko)
257
- * depend on bundler for development tasks (Myron Marston)
258
- * add example_group_finished to formatters and reporter (Roman Chernyatchik)
259
-
260
- * Bug fixes
261
- * support paths with spaces when using autotest (Andreas Neuhaus)
262
- * fix module_exec with ruby 1.8.6 (Myron Marston)
263
- * remove context method from top-level
264
- * was conflicting with irb, for example
265
- * errors in before(:all) are now reported correctly (Chad Humphries)
266
-
267
- * Removals
268
- * removed -o --options-file command line option
269
- * use ./.rspec and ~/.rspec
data/rspec-core.gemspec DELETED
@@ -1,24 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
3
- require "rspec/core/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "rspec-core"
7
- s.version = RSpec::Core::Version::STRING
8
- s.platform = Gem::Platform::RUBY
9
- s.authors = ["Chad Humphries", "David Chelimsky"]
10
- s.email = "rspec-users@rubyforge.org;"
11
- s.homepage = "http://github.com/rspec"
12
- s.summary = "rspec-core-#{RSpec::Core::Version::STRING}"
13
- s.description = "BDD for Ruby. RSpec runner and example groups."
14
-
15
- s.rubyforge_project = "rspec"
16
-
17
- s.files = `git ls-files`.split("\n")
18
- s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
19
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
- s.extra_rdoc_files = [ "README.md" ]
21
- s.rdoc_options = ["--charset=UTF-8"]
22
- s.require_path = "lib"
23
- end
24
-
@@ -1,63 +0,0 @@
1
- # this is in a separate rakefile because our main one depends on the bundled gems
2
- # already being installed. This must be able to run w/o bundled gems installed.
3
-
4
- def rake(command = "")
5
- sh "rake #{command}"
6
- end
7
-
8
- desc "Run a full build: install necessary gems with bundler, runs specs, run cukes"
9
- task :build => :bundle_install do
10
- rake
11
- end
12
-
13
- desc "Install necessary gems with bundler and runs specs"
14
- task :spec => :bundle_install do
15
- rake "spec"
16
- end
17
-
18
- desc "Install necessary gems with bundler and runs cukes"
19
- task :cucumber => :bundle_install do
20
- rake "cucumber"
21
- end
22
-
23
- desc "Prints description of current ruby interpreter"
24
- task :print_ruby_description do
25
- description = if defined?(RUBY_DESCRIPTION)
26
- RUBY_DESCRIPTION
27
- else
28
- # RUBY_DESCRIPTION is undefined on 1.8.6
29
- "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE} patchlevel #{RUBY_PATCHLEVEL}) [#{RUBY_PLATFORM}]"
30
- end
31
-
32
- puts
33
- puts "=" * 80
34
- puts "Using #{description}"
35
- puts "=" * 80
36
- puts
37
- end
38
-
39
- task :bundle_install => :ensure_bundler_installed do
40
- # Unfortunately, there is no version of ruby-debug that installs cleanly on 1.9.1 and 1.9.2.
41
- # Our Gemfile specifies different versions using conditionals, but we still need to bundle update
42
- # to get bundler to use the different versions.
43
- if RUBY_VERSION =~ /^1\.9/
44
- sh "bundle update ruby-debug-base19"
45
- end
46
-
47
- sh "bundle install"
48
- end
49
-
50
- task :ensure_bundler_installed => :print_ruby_description do
51
- installed = begin
52
- require 'rubygems'
53
- require 'bundler'
54
- true
55
- rescue LoadError
56
- false
57
- end
58
-
59
- unless installed
60
- sh "gem install bundler"
61
- end
62
- end
63
-
data/script/console DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require "irb"
3
- lib_path = File.expand_path(File.dirname(__FILE__) + "/../lib")
4
- $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
5
-
6
- require 'rspec/core'
7
-
8
- IRB.start(__FILE__)
data/script/cucumber DELETED
@@ -1 +0,0 @@
1
- rvm 1.8.6,1.8.7,ree,1.9.1,1.9.2,jruby rake -f script/FullBuildRakeFile cucumber | tee tmp/cucumber.out
data/script/full_build DELETED
@@ -1 +0,0 @@
1
- rvm 1.8.6,1.8.7,ree,1.9.1,1.9.2,jruby rake -f script/FullBuildRakeFile build | tee tmp/full_build.out
data/script/spec DELETED
@@ -1 +0,0 @@
1
- rvm 1.8.6,1.8.7,ree,1.9.1,1.9.2,jruby rake -f script/FullBuildRakeFile spec | tee tmp/spec.out