pkgsrc/devel/ruby-rspec-core/PLIST

198 lines
10 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.8 2013/03/11 07:46:45 taca Exp $
bin/autospec
bin/rspec
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.document
${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/Changelog.md
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/License.txt
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/exe/autospec
${GEM_LIBDIR}/exe/rspec
${GEM_LIBDIR}/features/Autotest.md
${GEM_LIBDIR}/features/README.md
${GEM_LIBDIR}/features/Upgrade.md
${GEM_LIBDIR}/features/command_line/README.md
${GEM_LIBDIR}/features/command_line/example_name_option.feature
${GEM_LIBDIR}/features/command_line/exit_status.feature
${GEM_LIBDIR}/features/command_line/format_option.feature
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/features/command_line/init.feature
${GEM_LIBDIR}/features/command_line/line_number_appended_to_path.feature
${GEM_LIBDIR}/features/command_line/line_number_option.feature
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/features/command_line/order.feature
${GEM_LIBDIR}/features/command_line/pattern_option.feature
${GEM_LIBDIR}/features/command_line/rake_task.feature
${GEM_LIBDIR}/features/command_line/ruby.feature
${GEM_LIBDIR}/features/command_line/tag.feature
${GEM_LIBDIR}/features/configuration/alias_example_to.feature
${GEM_LIBDIR}/features/configuration/backtrace_clean_patterns.feature
${GEM_LIBDIR}/features/configuration/custom_settings.feature
${GEM_LIBDIR}/features/configuration/default_path.feature
${GEM_LIBDIR}/features/configuration/fail_fast.feature
${GEM_LIBDIR}/features/configuration/failure_exit_code.feature
${GEM_LIBDIR}/features/configuration/order_and_seed.feature
${GEM_LIBDIR}/features/configuration/output_stream.feature
${GEM_LIBDIR}/features/configuration/pattern.feature
${GEM_LIBDIR}/features/configuration/profile.feature
${GEM_LIBDIR}/features/configuration/read_options_from_file.feature
${GEM_LIBDIR}/features/configuration/run_all_when_everything_filtered.feature
${GEM_LIBDIR}/features/configuration/show_failures_in_pending_blocks.feature
${GEM_LIBDIR}/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature
${GEM_LIBDIR}/features/example_groups/basic_structure.feature
${GEM_LIBDIR}/features/example_groups/shared_context.feature
${GEM_LIBDIR}/features/example_groups/shared_examples.feature
${GEM_LIBDIR}/features/expectation_framework_integration/configure_expectation_framework.feature
${GEM_LIBDIR}/features/filtering/exclusion_filters.feature
${GEM_LIBDIR}/features/filtering/if_and_unless.feature
${GEM_LIBDIR}/features/filtering/inclusion_filters.feature
${GEM_LIBDIR}/features/filtering/run_all_when_everything_filtered.feature
${GEM_LIBDIR}/features/formatters/configurable_colors.feature
${GEM_LIBDIR}/features/formatters/custom_formatter.feature
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/features/formatters/json_formatter.feature
${GEM_LIBDIR}/features/formatters/text_formatter.feature
${GEM_LIBDIR}/features/helper_methods/arbitrary_methods.feature
${GEM_LIBDIR}/features/helper_methods/let.feature
${GEM_LIBDIR}/features/helper_methods/modules.feature
${GEM_LIBDIR}/features/hooks/around_hooks.feature
${GEM_LIBDIR}/features/hooks/before_and_after_hooks.feature
${GEM_LIBDIR}/features/hooks/filtering.feature
${GEM_LIBDIR}/features/metadata/current_example.feature
${GEM_LIBDIR}/features/metadata/described_class.feature
${GEM_LIBDIR}/features/metadata/user_defined.feature
${GEM_LIBDIR}/features/mock_framework_integration/use_any_framework.feature
${GEM_LIBDIR}/features/mock_framework_integration/use_flexmock.feature
${GEM_LIBDIR}/features/mock_framework_integration/use_mocha.feature
${GEM_LIBDIR}/features/mock_framework_integration/use_rr.feature
${GEM_LIBDIR}/features/mock_framework_integration/use_rspec.feature
${GEM_LIBDIR}/features/pending/pending_examples.feature
${GEM_LIBDIR}/features/spec_files/arbitrary_file_suffix.feature
${GEM_LIBDIR}/features/step_definitions/additional_cli_steps.rb
${GEM_LIBDIR}/features/subject/attribute_of_subject.feature
${GEM_LIBDIR}/features/subject/explicit_subject.feature
${GEM_LIBDIR}/features/subject/implicit_receiver.feature
${GEM_LIBDIR}/features/subject/implicit_subject.feature
${GEM_LIBDIR}/features/support/env.rb
${GEM_LIBDIR}/lib/autotest/discover.rb
${GEM_LIBDIR}/lib/autotest/rspec2.rb
${GEM_LIBDIR}/lib/rspec/autorun.rb
${GEM_LIBDIR}/lib/rspec/core.rb
${GEM_LIBDIR}/lib/rspec/core/backward_compatibility.rb
${GEM_LIBDIR}/lib/rspec/core/command_line.rb
${GEM_LIBDIR}/lib/rspec/core/configuration.rb
${GEM_LIBDIR}/lib/rspec/core/configuration_options.rb
${GEM_LIBDIR}/lib/rspec/core/deprecation.rb
${GEM_LIBDIR}/lib/rspec/core/drb_command_line.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/lib/rspec/core/drb_options.rb
${GEM_LIBDIR}/lib/rspec/core/dsl.rb
${GEM_LIBDIR}/lib/rspec/core/example.rb
${GEM_LIBDIR}/lib/rspec/core/example_group.rb
${GEM_LIBDIR}/lib/rspec/core/extensions/instance_eval_with_args.rb
${GEM_LIBDIR}/lib/rspec/core/extensions/kernel.rb
${GEM_LIBDIR}/lib/rspec/core/extensions/module_eval_with_args.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/lib/rspec/core/extensions/ordered.rb
${GEM_LIBDIR}/lib/rspec/core/filter_manager.rb
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/lib/rspec/core/formatters.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/base_formatter.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/base_text_formatter.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/documentation_formatter.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/helpers.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/html_formatter.rb
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/lib/rspec/core/formatters/html_printer.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/json_formatter.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/progress_formatter.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/snippet_extractor.rb
${GEM_LIBDIR}/lib/rspec/core/formatters/text_mate_formatter.rb
${GEM_LIBDIR}/lib/rspec/core/hooks.rb
${GEM_LIBDIR}/lib/rspec/core/load_path.rb
${GEM_LIBDIR}/lib/rspec/core/memoized_helpers.rb
${GEM_LIBDIR}/lib/rspec/core/metadata.rb
${GEM_LIBDIR}/lib/rspec/core/metadata_hash_builder.rb
${GEM_LIBDIR}/lib/rspec/core/mocking/with_absolutely_nothing.rb
${GEM_LIBDIR}/lib/rspec/core/mocking/with_flexmock.rb
${GEM_LIBDIR}/lib/rspec/core/mocking/with_mocha.rb
${GEM_LIBDIR}/lib/rspec/core/mocking/with_rr.rb
${GEM_LIBDIR}/lib/rspec/core/mocking/with_rspec.rb
${GEM_LIBDIR}/lib/rspec/core/option_parser.rb
${GEM_LIBDIR}/lib/rspec/core/pending.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/lib/rspec/core/project_initializer.rb
${GEM_LIBDIR}/lib/rspec/core/rake_task.rb
${GEM_LIBDIR}/lib/rspec/core/reporter.rb
${GEM_LIBDIR}/lib/rspec/core/ruby_project.rb
${GEM_LIBDIR}/lib/rspec/core/runner.rb
${GEM_LIBDIR}/lib/rspec/core/shared_context.rb
${GEM_LIBDIR}/lib/rspec/core/shared_example_group.rb
${GEM_LIBDIR}/lib/rspec/core/version.rb
${GEM_LIBDIR}/lib/rspec/core/world.rb
${GEM_LIBDIR}/spec/autotest/discover_spec.rb
${GEM_LIBDIR}/spec/autotest/failed_results_re_spec.rb
${GEM_LIBDIR}/spec/autotest/rspec_spec.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/spec/command_line/order_spec.rb
${GEM_LIBDIR}/spec/rspec/core/command_line_spec.rb
${GEM_LIBDIR}/spec/rspec/core/command_line_spec_output.txt
${GEM_LIBDIR}/spec/rspec/core/configuration_options_spec.rb
${GEM_LIBDIR}/spec/rspec/core/configuration_spec.rb
${GEM_LIBDIR}/spec/rspec/core/deprecations_spec.rb
${GEM_LIBDIR}/spec/rspec/core/drb_command_line_spec.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/spec/rspec/core/drb_options_spec.rb
Update ruby-rspec-core to 2.11.1. ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston). ### 2.11.0 / 2012-07-07 [full changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0) Enhancements * Support multiple `--example` options. (Daniel Doubrovkine @dblock) * Named subject e.g. `subject(:article) { Article.new }` * see [http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/](http://blog.davidchelimsky.net/2012/05/13/spec-smell-explicit-use-of-subject/) for background. * thanks to Bradley Schaefer for suggesting it and Avdi Grimm for almost suggesting it. * `config.mock_with` and `config.expect_with` yield custom config object to a block if given * aids decoupling from rspec-core's configuation * `include_context` and `include_examples` support a block, which gets eval'd in the current context (vs the nested context generated by `it_behaves_like`). * Add `config.order = 'random'` to the `spec_helper.rb` generated by `rspec --init`. * Delay the loading of DRb (Myron Marston). * Limit monkey patching of `describe` onto just the objects that need it rather than every object in the system (Myron Marston). Bug fixes * Support alternative path separators. For example, on Windows, you can now do this: `rspec spec\subdir`. (Jarmo Pertman @jarmo) * When an example raises an error and an after or around hook does as well, print out the hook error. Previously, the error was silenced and the user got no feedback about what happened. (Myron Marston) * `--require` and `-I` are merged among different configuration sources (Andy Lindeman) * Delegate to mocha methods instead of aliasing them in mocha adapter.
2012-09-03 17:51:39 +02:00
${GEM_LIBDIR}/spec/rspec/core/dsl_spec.rb
${GEM_LIBDIR}/spec/rspec/core/example_group_spec.rb
${GEM_LIBDIR}/spec/rspec/core/example_spec.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/spec/rspec/core/filter_manager_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/base_formatter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/base_text_formatter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/documentation_formatter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/helpers_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.8.7.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.9.2.html
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.9.3.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-2.0.0.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatter_spec.rb
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/spec/rspec/core/formatters/json_formatter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/progress_formatter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/snippet_extractor_spec.rb
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/hooks_filtering_spec.rb
${GEM_LIBDIR}/spec/rspec/core/hooks_spec.rb
${GEM_LIBDIR}/spec/rspec/core/kernel_extensions_spec.rb
${GEM_LIBDIR}/spec/rspec/core/memoized_helpers_spec.rb
${GEM_LIBDIR}/spec/rspec/core/metadata_spec.rb
${GEM_LIBDIR}/spec/rspec/core/option_parser_spec.rb
${GEM_LIBDIR}/spec/rspec/core/pending_example_spec.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/spec/rspec/core/project_initializer_spec.rb
${GEM_LIBDIR}/spec/rspec/core/rake_task_spec.rb
${GEM_LIBDIR}/spec/rspec/core/reporter_spec.rb
${GEM_LIBDIR}/spec/rspec/core/resources/a_bar.rb
${GEM_LIBDIR}/spec/rspec/core/resources/a_foo.rb
${GEM_LIBDIR}/spec/rspec/core/resources/a_spec.rb
${GEM_LIBDIR}/spec/rspec/core/resources/custom_example_group_runner.rb
${GEM_LIBDIR}/spec/rspec/core/resources/formatter_specs.rb
${GEM_LIBDIR}/spec/rspec/core/resources/utf8_encoded.rb
${GEM_LIBDIR}/spec/rspec/core/rspec_matchers_spec.rb
${GEM_LIBDIR}/spec/rspec/core/ruby_project_spec.rb
${GEM_LIBDIR}/spec/rspec/core/runner_spec.rb
${GEM_LIBDIR}/spec/rspec/core/shared_context_spec.rb
${GEM_LIBDIR}/spec/rspec/core/shared_example_group_spec.rb
${GEM_LIBDIR}/spec/rspec/core/world_spec.rb
${GEM_LIBDIR}/spec/rspec/core_spec.rb
${GEM_LIBDIR}/spec/spec_helper.rb
Update ruby-rspec-core to 2.8.0. 2.8.0 / 2012-01-04 full changelog Bug fixes * For metadata filtering, restore passing the entire array to the proc, rather than each item in the array (weidenfreak) * Ensure each spec file is loaded only once * Fixes a bug that caused all the examples in a file to be run when referenced twice with line numbers in a command, e.g. rspec path/to/file:37 path/to/file:42 2.8.0.rc2 / 2011-12-19 full changelog Enhancments * new --init command (Peter Schr«Óder) - generates spec/spec_helper.rb - deletes obsolete files (on confirmation) - merged with and deprecates --configure command, which generated .rspec * use require_relative when available (Ian Leitch) * include_context and include_examples accept params (Calvin Bascom) * print the time for every example in the html formatter (Richie Vos) * several tasty refactoring niblets (Sasha) * `it "does something", :x => :foo,'bar',/baz/ * supports matching n command line tag values with an example or group 2.8.0.rc1 / 2011-11-06 full changelog Enhancements * --order (Justin Ko) - run examples in random order: --order rand - specify the seed: --order rand:123 * --seed SEED - equivalent of --order rand:SEED * SharedContext supports let (David Chelimsky) * Filter improvements (David Chelimsky) - override opposing tags from the command line - override RSpec.configure tags from the command line - --line_number 37 overrides all other filters - path/to/file.rb:37 overrides all other filters - refactor: consolidate filter management in a FilterManger object * Eliminate Ruby warnings (Matijs van Zuijlen) * Make reporter.report an API (David Chelimsky) * supports extension tools like interative_rspec Changes * change config.color_enabled (getter/setter/predicate) to color to align with --[no]-color CLI option. * color_enabled is still supported for now, but will likley be deprecated in a 2.x release so we can remove it in 3.0. Bug fixes * Make sure the bar in --tag foo:bar makes it to DRb (Aaron Gibralter) * Fix bug where full descriptions of groups nested 3 deep were repeated. * Restore report of time to run to start after files are loaded. - fixes bug where run times were cumalitive in spork - fixes compatibility with time-series metrics * Don't error out when config.mock_with or expect_with is re-specifying the current config (Myron Marston) * Deprecations - :alias option on configuration.add_setting. Use :alias_with on the original setting declaration instead.
2012-03-17 16:06:58 +01:00
${GEM_LIBDIR}/spec/support/config_options_helper.rb
${GEM_LIBDIR}/spec/support/helper_methods.rb
Update ruby-rspec-core to 2.12.2. ### 2.12.2 / 2012-12-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2) Bug fixes * Fix `RSpec::Core::RakeTask` so that it is compatible with rake 0.8.7 on ruby 1.8.7. We had accidentally broke it in the 2.12 release (Myron Marston). * Fix `RSpec::Core::RakeTask` so it is tolerant of the `Rspec` constant for backwards compatibility (Patrick Van Stee) ### 2.12.1 / 2012-12-01 [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1) Bug fixes * Specs are run even if another at\_exit hook calls `exit`. This allows Test::Unit and RSpec to run together. (Suraj N. Kurapati) * Fix full doc string concatenation so that it handles the case of a method string (e.g. "#foo") being nested under a context string (e.g. "when it is tuesday"), so that we get "when it is tuesday #foo" rather than "when it is tuesday#foo". (Myron Marston) * Restore public API I unintentionally broke in 2.12.0: `RSpec::Core::Formatters::BaseFormatter#format_backtrce(backtrace, example)` (Myron Marston). ### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...2.12.0) Enhancements * Add support for custom ordering strategies for groups and examples. (Myron Marston) * JSON Formatter (Alex Chaffee) * Refactor rake task internals (Sam Phippen) * Refactor HtmlFormatter (Pete Hodgson) * Autotest supports a path to Ruby that contains spaces (dsisnero) * Provide a helpful warning when a shared example group is redefined. (Mark Burns). * `--default_path` can be specified as `--default-line`. `--line_number` can be specified as `--line-number`. Hyphens are more idiomatic command line argument separators (Sam Phippen). * A more useful error message is shown when an invalid command line option is used (Jordi Polo). * Add `format_docstrings { |str| }` config option. It can be used to apply formatting rules to example group and example docstrings. (Alex Tan) * Add support for an `.rspec-local` options file. This is intended to allow individual developers to set options in a git-ignored file that override the common project options in `.rspec`. (Sam Phippen) * Support for mocha 0.13.0. (Andy Lindeman) Bug fixes * Remove override of `ExampleGroup#ancestors`. This is a core ruby method that RSpec shouldn't override. Instead, define `ExampleGroup#parent_groups`. (Myron Marston) * Limit monkey patching of shared example/context declaration methods (`shared_examples_for`, etc.) to just the objects that need it rather than every object in the system (Myron Marston). * Fix Metadata#fetch to support computed values (Sam Goldman). * Named subject can now be referred to from within subject block in a nested group (tomykaira). * Fix `fail_fast` so that it properly exits when an error occurs in a `before(:all) hook` (Bradley Schaefer). * Make the order spec files are loaded consistent, regardless of the order of the files returned by the OS or the order passed at the command line (Jo Liss and Sam Phippen). * Ensure instance variables from `before(:all)` are always exposed from `after(:all)`, even if an error occurs in `before(:all)` (Sam Phippen). * `rspec --init` no longer generates an incorrect warning about `--configure` being deprecated (Sam Phippen). * Fix pluralization of `1 seconds` (Odin Dutton) * Fix ANSICON url (Jarmo Pertman) * Use dup of Time so reporting isn't clobbered by examples that modify Time without properly restoring it. (David Chelimsky) Deprecations * `share_as` is no longer needed. `shared_context` and/or `RSpec::SharedContext` provide better mechanisms (Sam Phippen). * Deprecate `RSpec.configuration` with a block (use `RSpec.configure`). ### 2.11.1 / 2012-07-18 [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1) Bug fixes * Fix the way we autoload RSpec::Matchers so that custom matchers can be defined before rspec-core has been configured to definitely use rspec-expectations. (Myron Marston) * Fix typo in --help message printed for -e option. (Jo Liss) * Fix ruby warnings. (Myron Marston) * Ignore mock expectation failures when the example has already failed. Mock expectation failures have always been ignored in this situation, but due to my changes in 27059bf1 it was printing a confusing message. (Myron Marston).
2012-12-16 17:43:33 +01:00
${GEM_LIBDIR}/spec/support/isolated_directory.rb
${GEM_LIBDIR}/spec/support/isolated_home_directory.rb
${GEM_LIBDIR}/spec/support/matchers.rb
${GEM_LIBDIR}/spec/support/shared_example_groups.rb
${GEM_LIBDIR}/spec/support/spec_files.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec