pkgsrc/devel/ruby-rspec-core/PLIST

176 lines
8.9 KiB
Text
Raw Normal View History

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
@comment $NetBSD: PLIST,v 1.6 2012/09/03 15:51:39 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/custom_settings.feature
${GEM_LIBDIR}/features/configuration/default_path.feature
${GEM_LIBDIR}/features/configuration/fail_fast.feature
${GEM_LIBDIR}/features/configuration/read_options_from_file.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/custom_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.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
${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
${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/let.rb
${GEM_LIBDIR}/lib/rspec/core/load_path.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/subject.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
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.8.7.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.9.2.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_formatted-1.9.3.html
${GEM_LIBDIR}/spec/rspec/core/formatters/html_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
${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
${GEM_LIBDIR}/spec/rspec/core/formatters/text_mate_formatted-1.9.3.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/let_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/subject_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
${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