rspec-core 3.0.0.beta2 → 3.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.yardopts +1 -0
- data/Changelog.md +297 -57
- data/README.md +16 -13
- data/lib/rspec/core.rb +55 -84
- data/lib/rspec/core/backport_random.rb +35 -3
- data/lib/rspec/core/backtrace_formatter.rb +4 -13
- data/lib/rspec/core/configuration.rb +330 -114
- data/lib/rspec/core/configuration_options.rb +38 -22
- data/lib/rspec/core/drb.rb +111 -0
- data/lib/rspec/core/dsl.rb +8 -2
- data/lib/rspec/core/example.rb +203 -94
- data/lib/rspec/core/example_group.rb +344 -316
- data/lib/rspec/core/filter_manager.rb +135 -90
- data/lib/rspec/core/flat_map.rb +1 -0
- data/lib/rspec/core/formatters.rb +50 -14
- data/lib/rspec/core/formatters/base_formatter.rb +32 -138
- data/lib/rspec/core/formatters/base_text_formatter.rb +32 -253
- data/lib/rspec/core/formatters/console_codes.rb +65 -0
- data/lib/rspec/core/formatters/deprecation_formatter.rb +24 -15
- data/lib/rspec/core/formatters/documentation_formatter.rb +7 -10
- data/lib/rspec/core/formatters/helpers.rb +15 -9
- data/lib/rspec/core/formatters/html_formatter.rb +17 -16
- data/lib/rspec/core/formatters/html_printer.rb +1 -0
- data/lib/rspec/core/formatters/json_formatter.rb +18 -20
- data/lib/rspec/core/formatters/profile_formatter.rb +67 -0
- data/lib/rspec/core/formatters/progress_formatter.rb +6 -7
- data/lib/rspec/core/formatters/snippet_extractor.rb +8 -6
- data/lib/rspec/core/hooks.rb +131 -125
- data/lib/rspec/core/memoized_helpers.rb +31 -26
- data/lib/rspec/core/metadata.rb +277 -184
- data/lib/rspec/core/metadata_filter.rb +86 -0
- data/lib/rspec/core/minitest_assertions_adapter.rb +28 -0
- data/lib/rspec/core/mocking_adapters/flexmock.rb +1 -1
- data/lib/rspec/core/mocking_adapters/mocha.rb +1 -1
- data/lib/rspec/core/mocking_adapters/null.rb +1 -1
- data/lib/rspec/core/mocking_adapters/rr.rb +2 -1
- data/lib/rspec/core/mocking_adapters/rspec.rb +1 -1
- data/lib/rspec/core/notifications.rb +435 -24
- data/lib/rspec/core/option_parser.rb +16 -25
- data/lib/rspec/core/ordering.rb +3 -1
- data/lib/rspec/core/pending.rb +57 -33
- data/lib/rspec/core/project_initializer.rb +2 -0
- data/lib/rspec/core/project_initializer/spec_helper.rb +5 -4
- data/lib/rspec/core/rake_task.rb +45 -20
- data/lib/rspec/core/reporter.rb +50 -22
- data/lib/rspec/core/ruby_project.rb +1 -0
- data/lib/rspec/core/runner.rb +93 -39
- data/lib/rspec/core/shared_context.rb +7 -5
- data/lib/rspec/core/shared_example_group.rb +85 -77
- data/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
- data/lib/rspec/core/version.rb +3 -1
- data/lib/rspec/core/warnings.rb +35 -17
- data/lib/rspec/core/world.rb +57 -5
- metadata +56 -369
- metadata.gz.sig +3 -3
- data/features/README.md +0 -13
- data/features/Upgrade.md +0 -352
- data/features/command_line/README.md +0 -25
- data/features/command_line/dry_run.feature +0 -29
- data/features/command_line/example_name_option.feature +0 -97
- data/features/command_line/exit_status.feature +0 -82
- data/features/command_line/fail_fast.feature +0 -26
- data/features/command_line/format_option.feature +0 -75
- data/features/command_line/init.feature +0 -57
- data/features/command_line/line_number_appended_to_path.feature +0 -140
- data/features/command_line/line_number_option.feature +0 -58
- data/features/command_line/order.feature +0 -25
- data/features/command_line/pattern_option.feature +0 -49
- data/features/command_line/rake_task.feature +0 -122
- data/features/command_line/randomization.feature +0 -63
- data/features/command_line/require_option.feature +0 -43
- data/features/command_line/ruby.feature +0 -23
- data/features/command_line/tag.feature +0 -98
- data/features/command_line/warnings_option.feature +0 -29
- data/features/configuration/alias_example_to.feature +0 -39
- data/features/configuration/backtrace_exclusion_patterns.feature +0 -105
- data/features/configuration/custom_settings.feature +0 -84
- data/features/configuration/default_path.feature +0 -38
- data/features/configuration/deprecation_stream.feature +0 -58
- data/features/configuration/enable_global_dsl.feature +0 -54
- data/features/configuration/fail_fast.feature +0 -77
- data/features/configuration/failure_exit_code.feature +0 -36
- data/features/configuration/order_and_seed.feature +0 -3
- data/features/configuration/output_stream.feature +0 -24
- data/features/configuration/overriding_global_ordering.feature +0 -93
- data/features/configuration/pattern.feature +0 -38
- data/features/configuration/profile.feature +0 -220
- data/features/configuration/read_options_from_file.feature +0 -90
- data/features/configuration/run_all_when_everything_filtered.feature +0 -76
- data/features/example_groups/aliasing.feature +0 -48
- data/features/example_groups/basic_structure.feature +0 -55
- data/features/example_groups/shared_context.feature +0 -74
- data/features/example_groups/shared_examples.feature +0 -286
- data/features/expectation_framework_integration/configure_expectation_framework.feature +0 -102
- data/features/filtering/exclusion_filters.feature +0 -135
- data/features/filtering/if_and_unless.feature +0 -138
- data/features/filtering/inclusion_filters.feature +0 -101
- data/features/formatters/configurable_colors.feature +0 -31
- data/features/formatters/custom_formatter.feature +0 -68
- data/features/formatters/json_formatter.feature +0 -30
- data/features/formatters/regression_tests.feature +0 -95
- data/features/formatters/text_formatter.feature +0 -46
- data/features/helper_methods/arbitrary_methods.feature +0 -40
- data/features/helper_methods/let.feature +0 -50
- data/features/helper_methods/modules.feature +0 -146
- data/features/hooks/around_hooks.feature +0 -344
- data/features/hooks/before_and_after_hooks.feature +0 -427
- data/features/hooks/filtering.feature +0 -232
- data/features/metadata/current_example.feature +0 -56
- data/features/metadata/described_class.feature +0 -17
- data/features/metadata/user_defined.feature +0 -100
- data/features/mock_framework_integration/use_any_framework.feature +0 -106
- data/features/mock_framework_integration/use_flexmock.feature +0 -94
- data/features/mock_framework_integration/use_mocha.feature +0 -95
- data/features/mock_framework_integration/use_rr.feature +0 -96
- data/features/mock_framework_integration/use_rspec.feature +0 -95
- data/features/pending_and_skipped_examples/README.md +0 -3
- data/features/pending_and_skipped_examples/pending_examples.feature +0 -118
- data/features/pending_and_skipped_examples/skipped_examples.feature +0 -106
- data/features/spec_files/arbitrary_file_suffix.feature +0 -13
- data/features/step_definitions/additional_cli_steps.rb +0 -83
- data/features/subject/explicit_subject.feature +0 -101
- data/features/subject/implicit_subject.feature +0 -63
- data/features/subject/one_liner_syntax.feature +0 -71
- data/features/support/env.rb +0 -21
- data/features/support/require_expect_syntax_in_aruba_specs.rb +0 -16
- data/features/support/rubinius.rb +0 -6
- data/lib/rspec/core/command_line.rb +0 -35
- data/lib/rspec/core/drb_command_line.rb +0 -26
- data/lib/rspec/core/drb_options.rb +0 -87
- data/lib/rspec/core/formatters/legacy_formatter.rb +0 -227
- data/lib/rspec/core/shared_example_group/collection.rb +0 -27
- data/spec/command_line/order_spec.rb +0 -211
- data/spec/rspec/core/backtrace_formatter_spec.rb +0 -230
- data/spec/rspec/core/command_line_spec.rb +0 -112
- data/spec/rspec/core/command_line_spec_output.txt +0 -0
- data/spec/rspec/core/configuration_options_spec.rb +0 -409
- data/spec/rspec/core/configuration_spec.rb +0 -1479
- data/spec/rspec/core/drb_command_line_spec.rb +0 -102
- data/spec/rspec/core/drb_options_spec.rb +0 -193
- data/spec/rspec/core/dsl_spec.rb +0 -88
- data/spec/rspec/core/example_group_spec.rb +0 -1533
- data/spec/rspec/core/example_spec.rb +0 -642
- data/spec/rspec/core/filter_manager_spec.rb +0 -229
- data/spec/rspec/core/formatters/base_formatter_spec.rb +0 -64
- data/spec/rspec/core/formatters/base_text_formatter_spec.rb +0 -303
- data/spec/rspec/core/formatters/deprecation_formatter_spec.rb +0 -208
- data/spec/rspec/core/formatters/documentation_formatter_spec.rb +0 -75
- data/spec/rspec/core/formatters/helpers_spec.rb +0 -104
- data/spec/rspec/core/formatters/html_formatted-2.1.0.html +0 -392
- data/spec/rspec/core/formatters/html_formatted.html +0 -397
- data/spec/rspec/core/formatters/html_formatter_spec.rb +0 -122
- data/spec/rspec/core/formatters/json_formatter_spec.rb +0 -206
- data/spec/rspec/core/formatters/legacy_formatter_spec.rb +0 -137
- data/spec/rspec/core/formatters/progress_formatter_spec.rb +0 -43
- data/spec/rspec/core/formatters/snippet_extractor_spec.rb +0 -26
- data/spec/rspec/core/formatters_spec.rb +0 -120
- data/spec/rspec/core/hooks_filtering_spec.rb +0 -227
- data/spec/rspec/core/hooks_spec.rb +0 -294
- data/spec/rspec/core/memoized_helpers_spec.rb +0 -495
- data/spec/rspec/core/metadata_spec.rb +0 -491
- data/spec/rspec/core/option_parser_spec.rb +0 -262
- data/spec/rspec/core/ordering_spec.rb +0 -102
- data/spec/rspec/core/pending_example_spec.rb +0 -117
- data/spec/rspec/core/pending_spec.rb +0 -8
- data/spec/rspec/core/project_initializer_spec.rb +0 -73
- data/spec/rspec/core/rake_task_spec.rb +0 -146
- data/spec/rspec/core/random_spec.rb +0 -47
- data/spec/rspec/core/reporter_spec.rb +0 -155
- data/spec/rspec/core/resources/a_bar.rb +0 -0
- data/spec/rspec/core/resources/a_foo.rb +0 -0
- data/spec/rspec/core/resources/a_spec.rb +0 -1
- data/spec/rspec/core/resources/custom_example_group_runner.rb +0 -14
- data/spec/rspec/core/resources/formatter_specs.rb +0 -58
- data/spec/rspec/core/resources/utf8_encoded.rb +0 -8
- data/spec/rspec/core/rspec_matchers_spec.rb +0 -45
- data/spec/rspec/core/ruby_project_spec.rb +0 -26
- data/spec/rspec/core/runner_spec.rb +0 -151
- data/spec/rspec/core/shared_context_spec.rb +0 -102
- data/spec/rspec/core/shared_example_group/collection_spec.rb +0 -57
- data/spec/rspec/core/shared_example_group_spec.rb +0 -114
- data/spec/rspec/core/warnings_spec.rb +0 -29
- data/spec/rspec/core/world_spec.rb +0 -142
- data/spec/rspec/core_spec.rb +0 -91
- data/spec/spec_helper.rb +0 -160
- data/spec/support/config_options_helper.rb +0 -13
- data/spec/support/formatter_support.rb +0 -83
- data/spec/support/helper_methods.rb +0 -26
- data/spec/support/isolate_load_path_mutation.rb +0 -5
- data/spec/support/isolated_directory.rb +0 -10
- data/spec/support/isolated_home_directory.rb +0 -16
- data/spec/support/legacy_formatter_using_sub_classing_example.rb +0 -87
- data/spec/support/matchers.rb +0 -85
- data/spec/support/mathn_integration_support.rb +0 -12
- data/spec/support/old_style_formatter_example.rb +0 -69
- data/spec/support/shared_example_groups.rb +0 -13
- data/spec/support/spec_files.rb +0 -44
- data/spec/support/stderr_splitter.rb +0 -36
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 24e9ee744b540730045b84bf20a81923c580f7f4
|
4
|
+
data.tar.gz: 6390ec51a3ce3722f68c48729f2af92ea660c2f9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 170b4ed1f9ac458cd147b2b55da8dac58e937c116f2fbb45b8bda69c9821f7bdcd6551a144796c4405a00d4696cb84763fa585457e4502f0c8912209783ec179
|
7
|
+
data.tar.gz: 567ea5967b8408fb5fdf5ad083371af79a5e095d0f3c708933939442f8c2fcb677ff3d603bf0ce7132b02a4473844b0d929f73862c64cb8e098e09e1d3cbde83
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/.yardopts
CHANGED
data/Changelog.md
CHANGED
@@ -1,5 +1,160 @@
|
|
1
|
+
### 3.0.0.rc1 / 2014-05-18
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta2...v3.0.0.rc1)
|
3
|
+
|
4
|
+
Breaking Changes for 3.0.0:
|
5
|
+
|
6
|
+
* Change `described_class` so that in a nested group like `describe
|
7
|
+
MyClass`, it returns `MyClass` rather than the outer group's described
|
8
|
+
class. (Myron Marston)
|
9
|
+
* Refactor filter manager so that it no longer subclasses Hash and has a
|
10
|
+
tighter, more domain-specific interface. (Sergey Pchelincev)
|
11
|
+
* Remove legacy colours definitions from `BaseTextFormatter`. (Jon Rowe)
|
12
|
+
* Remove console color definitions from `BaseTextFormatter`. (Jon Rowe)
|
13
|
+
* Restructure example group metadata so that the computed keys are
|
14
|
+
exposed directly off of the metadata hash rather than being on
|
15
|
+
a nested `:example_group` subhash. In addition, the parent example
|
16
|
+
group metadata is now available as `[:parent_example_group]` rather
|
17
|
+
than `[:example_group][:example_group]`. Deprecated access via the
|
18
|
+
old key structure is still provided. (Myron Marston)
|
19
|
+
* Remove `:describes` metadata key. It duplicates `:described_class`
|
20
|
+
for no good reason. Deprecated access via `:describes` is still
|
21
|
+
provided. (Myron Marston)
|
22
|
+
* Rename `:example_group_block` metadata key to `:block`.
|
23
|
+
(Myron Marston)
|
24
|
+
* Remove deprecated `RSpec::Core::Example#options`. (Myron Marston)
|
25
|
+
* Move `BaseTextFormatter#colorize_summary` to `SummaryNotification#colorize_with`
|
26
|
+
(Jon Rowe).
|
27
|
+
* `describe some_hash` treated `some_hash` as metadata in RSpec 2.x but
|
28
|
+
will treat it as the described object in RSpec 3.0. Metadata must
|
29
|
+
always come after the description args. (Myron Marston)
|
30
|
+
* Remove deprecated `display_name` alias of `ExampleGroup.description`.
|
31
|
+
(Myron Marston)
|
32
|
+
* Remove deprecated `describes` alias of `ExampleGroup.described_class`.
|
33
|
+
(Myron Marston)
|
34
|
+
* Remove deprecated `RSpec::Core::ExampleGroup.alias_it_behaves_like_to`.
|
35
|
+
Use `RSpec::Core::Configuration#alias_it_behaves_like_to` instead.
|
36
|
+
(Myron Marston)
|
37
|
+
* Remove deprecated `RSpec::Core::ExampleGroup.alias_example_to`.
|
38
|
+
Use `RSpec::Core::Configuration#alias_example_to` instead.
|
39
|
+
(Myron Marston)
|
40
|
+
* Removed `focused` example alias and change example/group aliases
|
41
|
+
`fit`, `focus`, `fcontext` and `fdescribe` to no longer include
|
42
|
+
`:focused => true` metadata. They only contain `:focus => true`
|
43
|
+
metadata now. This means that you will need to filter them with
|
44
|
+
`filter_run :focus`, not `filter_run :focused`. (Myron Marston)
|
45
|
+
* Remove `--line-number` filtering. It's semantically dubious since it's
|
46
|
+
a global filter (potentially applied to multiple files) but there's no
|
47
|
+
meaningful connection between the same line number in multiple files.
|
48
|
+
Instead use the `rspec path/to/spec.rb:23:46` form, which is terser
|
49
|
+
and makes more sense as it is scoped to a file. (Myron Marston)
|
50
|
+
* Remove `--default_path` as an alias for `--default-path`. (Jon Rowe)
|
51
|
+
* Remove deprecated `share_examples_for`. There's still
|
52
|
+
`shared_examples` and `shared_examples_for`. (Myron Marston)
|
53
|
+
* Rename `RSpec::Core::Configuration#warnings` to
|
54
|
+
`RSpec::Core::Configuration#warnings?` since it's a boolean flag.
|
55
|
+
(Myron Marston)
|
56
|
+
* RSpec's global state is no longer reset after a spec run. This gives
|
57
|
+
more flexibility to alternate runners to decide when and if they
|
58
|
+
want the state reset. Alternate runners are now responsible for
|
59
|
+
calling this (or doing a similar reset) if they are going to run
|
60
|
+
the spec suite multiple times in the same process. (Sam Phippen)
|
61
|
+
* Merge `RSpec::Core::CommandLine` (never formally declared public)
|
62
|
+
into `RSpec::Core::Runner`. (Myron Marston)
|
63
|
+
* Remove `color_enabled` as an alias of `color`. (Jon Rowe)
|
64
|
+
* Remove `backtrace_cleaner` as an alias of `backtrace_formatter`. (Jon Rowe)
|
65
|
+
* Remove `filename_pattern` as an alias of `pattern`. (Jon Rowe)
|
66
|
+
* Extract support for legacy formatters to `rspec-legacy_formatters`. (Jon Rowe)
|
67
|
+
* `RSpec::Configuration#formatters` now returns a dup to prevent mutation. (Jon Rowe)
|
68
|
+
* Replace `stdlib` as an available expectation framework with `test_unit` and
|
69
|
+
`minitest`. (Aaron Kromer)
|
70
|
+
* Remove backtrace formatting helpers from `BaseTextFormatter`. (Jon Rowe)
|
71
|
+
* Extract profiler support to `ProfileFormatter` and `ProfileNotification`.
|
72
|
+
Formatters should implement `dump_profile` if they wish to respond to `--profile`.
|
73
|
+
(Jon Rowe)
|
74
|
+
* Extract remaining formatter state to reporter and notifications. Introduce
|
75
|
+
`ExamplesNotification` to share information about examples that was previously
|
76
|
+
held in `BaseFormatter`. (Jon Rowe)
|
77
|
+
|
78
|
+
Enhancements:
|
79
|
+
|
80
|
+
* Add `config.default_formatter` attribute, which can be used to set a
|
81
|
+
formatter which will only be used if no other formatter is set
|
82
|
+
(e.g. via `--formatter`). (Myron Marston)
|
83
|
+
* Support legacy colour definitions in `LegacyFormatterAdaptor`. (Jon Rowe)
|
84
|
+
* Migrate `execution_result` (exposed by metadata) from a hash to a
|
85
|
+
first-class object with appropriate attributes. `status` is now
|
86
|
+
stored and returned as a symbol rather than a string. It retains
|
87
|
+
deprecated hash behavior for backwards compatibility. (Myron Marston)
|
88
|
+
* Provide console code helper for formatters. (Jon Rowe)
|
89
|
+
* Use raw ruby hashes for the metadata hashes rather than a subclass of
|
90
|
+
a hash. Computed metadata entries are now computed in advance rather
|
91
|
+
than being done lazily on first access. (Myron Marston)
|
92
|
+
* Add `:block` metadata entry to the example metadata, bringing
|
93
|
+
parity with `:block` in the example group metadata. (Myron Marston)
|
94
|
+
* Add `fspecify` and `fexample` as aliases of `specify` and `example`
|
95
|
+
with `:focus => true` metadata for parity with `fit`. (Myron Marston)
|
96
|
+
* Add legacy support for `colorize_summary`. (Jon Rowe)
|
97
|
+
* Restructure runner so it can be more easily customized in a subclass
|
98
|
+
for an alternate runner. (Ben Hoskings)
|
99
|
+
* Document `RSpec::Core::ConfigurationOptions` as an officially
|
100
|
+
supported public API. (Myron Marston)
|
101
|
+
* Add `--deprecation-out` CLI option which directs deprecation warnings
|
102
|
+
to the named file. (Myron Marston)
|
103
|
+
* Minitest 5 compatability for `expect_with :stdlib` (now available as
|
104
|
+
`expect_with :minitest`). (Xavier Shay)
|
105
|
+
* Reporter now notifies formatters of the load time of RSpec and your
|
106
|
+
specs via `StartNotification` and `SummaryNotification`. (Jon Rowe)
|
107
|
+
* Add `disable_monkey_patching!` config option that disables all monkey
|
108
|
+
patching from whatever pieces of RSpec you use. (Alexey Fedorov)
|
109
|
+
* Add `Pathname` support for setting all output streams. (Aaron Kromer)
|
110
|
+
* Add `config.define_derived_metadata`, which can be used to apply
|
111
|
+
additional metadata to all groups or examples that match a given
|
112
|
+
filter. (Myron Marston)
|
113
|
+
* Provide formatted and colorized backtraces via `FailedExampleNotification`
|
114
|
+
and send `PendingExampleFixedNotifications` when the error is due to a
|
115
|
+
passing spec you expect to fail. (Jon Rowe)
|
116
|
+
* Add `dump_profile` to formatter API to allow formatters to implement
|
117
|
+
support for `--profile`. (Jon Rowe)
|
118
|
+
* Allow colourising text via `ConsoleCodes` with RSpec 'states'
|
119
|
+
(e.g. `:success`, `:failure`) rather than direct colour codes. (Jon Rowe)
|
120
|
+
* Expose `fully_formatted` methods off the formatter notification objects
|
121
|
+
that make it easy for a custom formatter to produce formatted output
|
122
|
+
like rspec-core's. (Myron Marston)
|
123
|
+
|
124
|
+
Bug Fixes:
|
125
|
+
|
126
|
+
* Fix `spec_helper.rb` file generated by `rspec --init` so that the
|
127
|
+
recommended settings correctly use the documentation formatter
|
128
|
+
when running one file. (Myron Marston)
|
129
|
+
* Fix ordering problem where descriptions were generated after
|
130
|
+
tearing down mocks, which resulted in unexpected exceptions.
|
131
|
+
(Bradley Schaefer, Aaron Kromer, Andrey Savchenko)
|
132
|
+
* Allow a symbol to be used as an implicit subject (e.g. `describe
|
133
|
+
:foo`). (Myron Marston)
|
134
|
+
* Prevent creating an isolated context (i.e. using `RSpec.describe`) when
|
135
|
+
already inside a context. There is no reason to do this, and it could
|
136
|
+
potentially cause unexpected bugs. (Xavier Shay)
|
137
|
+
* Fix shared example group scoping so that when two shared example
|
138
|
+
groups share the same name at different levels of nested contexts,
|
139
|
+
the one in the nearest context is used. (Myron Marston)
|
140
|
+
* Fix `--warnings` option so that it enables warnings immediately so
|
141
|
+
that it applies to files loaded by `--require`. (Myron Marston)
|
142
|
+
* Issue a warning when you set `config.deprecation_stream` too late for
|
143
|
+
it to take effect because the reporter has already been setup. (Myron Marston)
|
144
|
+
* Add the full `RSpec::Core::Example` interface to the argument yielded
|
145
|
+
to `around` hooks. (Myron Marston)
|
146
|
+
* Line number always takes precendence when running specs with filters.
|
147
|
+
(Xavier Shay)
|
148
|
+
* Ensure :if and :unless metadata filters are treated as a special case
|
149
|
+
and are always in-effect. (Bradley Schaefer)
|
150
|
+
* Ensure the currently running installation of RSpec is used when
|
151
|
+
the rake task shells out to `rspec`, even if a newer version is also
|
152
|
+
installed. (Postmodern)
|
153
|
+
* Using a legacy formatter as default no longer causes an infinite loop.
|
154
|
+
(Xavier Shay)
|
155
|
+
|
1
156
|
### 3.0.0.beta2 / 2014-02-17
|
2
|
-
[
|
157
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.0.beta1...v3.0.0.beta2)
|
3
158
|
|
4
159
|
Breaking Changes for 3.0.0:
|
5
160
|
|
@@ -22,7 +177,7 @@ Breaking Changes for 3.0.0:
|
|
22
177
|
doing so would break existing formatters), we now pass a notification
|
23
178
|
value object that exposes the same data via attributes. This will
|
24
179
|
allow us to add new bits of data to a notification event without
|
25
|
-
breaking existing
|
180
|
+
breaking existing formatters. (Jon Rowe)
|
26
181
|
* Remove support for deprecated `:alias` option for
|
27
182
|
`RSpec.configuration.add_setting`. (Myron Marston)
|
28
183
|
* Remove support for deprecated `RSpec.configuration.requires = [...]`.
|
@@ -50,18 +205,14 @@ Breaking Changes for 3.0.0:
|
|
50
205
|
|
51
206
|
Enhancements:
|
52
207
|
|
53
|
-
* Add `is_expected` for one-liners that read well with the
|
54
|
-
`expect`-based syntax. `is_expected` is simply defined as
|
55
|
-
`expect(subject)` and can be used in an expression like:
|
56
|
-
`it { is_expected.to read_well }`. (Myron Marston)
|
57
208
|
* Add example run time to JSON formatter output. (Karthik Kastury)
|
58
209
|
* Add more suggested settings to the files generated by
|
59
210
|
`rspec --init`. (Myron Marston)
|
60
211
|
* Add `config.alias_example_group_to`, which can be used to define a
|
61
212
|
new method that defines an example group with the provided metadata.
|
62
213
|
(Michi Huber)
|
63
|
-
* Add `xdescribe` and `xcontext` as shortcuts to
|
64
|
-
|
214
|
+
* Add `xdescribe` and `xcontext` as shortcuts to skip an example group.
|
215
|
+
(Myron Marston)
|
65
216
|
* Add `fdescribe` and `fcontext` as shortcuts to focus an example group.
|
66
217
|
(Myron Marston)
|
67
218
|
* Don't autorun specs via `#at_exit` by default. `require 'rspec/autorun'`
|
@@ -77,13 +228,15 @@ Enhancements:
|
|
77
228
|
`context`) on the `RSpec` constant. If `expose_dsl_globally` is set to
|
78
229
|
`true`, also expose them on `main` and `Module`. Historically, only `describe`
|
79
230
|
was exposed. (Jon Rowe, Michi Huber)
|
231
|
+
* Add hook scope `:example` as an alias for `:each`, and `:context` as an alias
|
232
|
+
for `:all`. (John Feminella)
|
80
233
|
|
81
234
|
Bug Fixes:
|
82
235
|
|
83
236
|
* Fix failure (undefined method `path`) in end-of-run summary
|
84
237
|
when `raise_errors_for_deprecations!` is configured. (Myron Marston)
|
85
|
-
* Issue error when attempting to use
|
86
|
-
too close to
|
238
|
+
* Issue error when attempting to use `-i` or `--I` on command line,
|
239
|
+
too close to `-I` to be considered short hand for `--init`. (Jon Rowe)
|
87
240
|
* Prevent adding formatters to an output target if the same
|
88
241
|
formatter has already been added to that output. (Alex Peattie)
|
89
242
|
* Allow a matcher-generated example description to be used when
|
@@ -96,7 +249,7 @@ Bug Fixes:
|
|
96
249
|
or `default_path`. (Matijs van Zuijlen)
|
97
250
|
|
98
251
|
### 3.0.0.beta1 / 2013-11-07
|
99
|
-
[
|
252
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.rc1...v3.0.0.beta1)
|
100
253
|
|
101
254
|
Breaking Changes for 3.0.0:
|
102
255
|
|
@@ -127,8 +280,10 @@ Breaking Changes for 3.0.0:
|
|
127
280
|
* Remove `RSpec::Core::Configuration#output` and
|
128
281
|
`RSpec::Core::Configuration#out` aliases of
|
129
282
|
`RSpec::Core::Configuration#output_stream`. (Myron Marston)
|
283
|
+
* Remove legacy ordering APIs deprecated in 2.99.0.beta1. (Myron
|
284
|
+
Marston)
|
130
285
|
|
131
|
-
Enhancements
|
286
|
+
Enhancements:
|
132
287
|
|
133
288
|
* Replace unmaintained syntax gem with coderay gem. (Xavier Shay)
|
134
289
|
* Times in profile output are now bold instead of `failure_color`.
|
@@ -152,15 +307,92 @@ Enhancements
|
|
152
307
|
* Avoid affecting randomization of user code when shuffling
|
153
308
|
examples so that users can count on their own seeds
|
154
309
|
working. (Travis Herrick)
|
310
|
+
* Ordering is no longer a single global property of the test suite.
|
311
|
+
Each group can pick an ordering using `:order` metadata. (Andy
|
312
|
+
Lindeman, Sam Phippen, Myron Marston)
|
313
|
+
* Allow named custom ordering strategies to be registered, which can
|
314
|
+
then be used on individual example groups. (Andy Lindeman, Sam
|
315
|
+
Phippen, Myron Marston)
|
155
316
|
|
156
|
-
Deprecations
|
317
|
+
Deprecations:
|
157
318
|
|
158
319
|
* `treat_symbols_as_metadata_keys_with_true_values` is deprecated and no
|
159
320
|
longer has an affect now that the behavior it enabled is always
|
160
321
|
enabled. (Myron Marston)
|
161
322
|
|
323
|
+
### 2.99.0.rc1 / 2014-05-18
|
324
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta2...v2.99.0.rc1)
|
325
|
+
|
326
|
+
Enhancements:
|
327
|
+
|
328
|
+
* Add `--deprecation-out` CLI option which directs deprecation warnings
|
329
|
+
to the named file. (Myron Marston)
|
330
|
+
* Backport support for `skip` in metadata to skip execution of an example.
|
331
|
+
(Xavier Shay, #1472)
|
332
|
+
* Add `Pathname` support for setting all output streams. (Aaron Kromer)
|
333
|
+
* Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
|
334
|
+
|
335
|
+
Deprecations:
|
336
|
+
|
337
|
+
* Deprecate `RSpec::Core::Pending::PendingDeclaredInExample`, use
|
338
|
+
`SkipDeclaredInExample` instead. (Xavier Shay)
|
339
|
+
* Issue a deprecation when `described_class` is accessed from within
|
340
|
+
a nested `describe <SomeClass>` example group, since `described_class`
|
341
|
+
will return the innermost described class in RSpec 3 rather than the
|
342
|
+
outermost described class, as it behaved in RSpec 2. (Myron Marston)
|
343
|
+
* Deprecate `RSpec::Core::FilterManager::DEFAULT_EXCLUSIONS`,
|
344
|
+
`RSpec::Core::FilterManager::STANDALONE_FILTERS` and use of
|
345
|
+
`#empty_without_conditional_filters?` on those filters. (Sergey Pchelincev)
|
346
|
+
* Deprecate `RSpec::Core::Example#options` in favor of
|
347
|
+
`RSpec::Core::Example#metadata`. (Myron Marston)
|
348
|
+
* Issue warning when passing a symbol or hash to `describe` or `context`
|
349
|
+
as the first argument. In RSpec 2.x this would be treated as metadata
|
350
|
+
but in RSpec 3 it'll be treated as the described object. To continue
|
351
|
+
having it treated as metadata, pass a description before the symbol or
|
352
|
+
hash. (Myron Marston)
|
353
|
+
* Deprecate `RSpec::Core::BaseTextFormatter::VT100_COLORS` and
|
354
|
+
`RSpec::Core::BaseTextFormatter::VT100_COLOR_CODES` in favour
|
355
|
+
of `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODES` and
|
356
|
+
`RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODE_VALUES`.
|
357
|
+
(Jon Rowe)
|
358
|
+
* Deprecate `RSpec::Core::ExampleGroup.display_name` in favor of
|
359
|
+
`RSpec::Core::ExampleGroup.description`. (Myron Marston)
|
360
|
+
* Deprecate `RSpec::Core::ExampleGroup.describes` in favor of
|
361
|
+
`RSpec::Core::ExampleGroup.described_class`. (Myron Marston)
|
362
|
+
* Deprecate `RSpec::Core::ExampleGroup.alias_example_to` in favor of
|
363
|
+
`RSpec::Core::Configuration#alias_example_to`. (Myron Marston)
|
364
|
+
* Deprecate `RSpec::Core::ExampleGroup.alias_it_behaves_like_to` in favor
|
365
|
+
of `RSpec::Core::Configuration#alias_it_behaves_like_to`. (Myron Marston)
|
366
|
+
* Deprecate `RSpec::Core::ExampleGroup.focused` in favor of
|
367
|
+
`RSpec::Core::ExampleGroup.focus`. (Myron Marston)
|
368
|
+
* Add deprecation warning for `config.filter_run :focused` since
|
369
|
+
example aliases `fit` and `focus` will no longer include
|
370
|
+
`:focused` metadata but will continue to include `:focus`. (Myron Marston)
|
371
|
+
* Deprecate filtering by `:line_number` (e.g. `--line-number` from the
|
372
|
+
CLI). Use location filtering instead. (Myron Marston)
|
373
|
+
* Deprecate `--default_path` as an alternative to `--default-path`. (Jon Rowe)
|
374
|
+
* Deprecate `RSpec::Core::Configuration#warnings` in favor of
|
375
|
+
`RSpec::Core::Configuration#warnings?`. (Myron Marston)
|
376
|
+
* Deprecate `share_examples_for` in favor of `shared_examples_for` or
|
377
|
+
just `shared_examples`. (Myron Marston)
|
378
|
+
* Deprecate `RSpec::Core::CommandLine` in favor of
|
379
|
+
`RSpec::Core::Runner`. (Myron Marston)
|
380
|
+
* Deprecate `#color_enabled`, `#color_enabled=` and `#color?` in favour of
|
381
|
+
`#color`, `#color=` and `#color_enabled? output`. (Jon Rowe)
|
382
|
+
* Deprecate `#filename_pattern` in favour of `#pattern`. (Jon Rowe)
|
383
|
+
* Deprecate `#backtrace_cleaner` in favour of `#backtrace_formatter`. (Jon Rowe)
|
384
|
+
* Deprecate mutating `RSpec::Configuration#formatters`. (Jon Rowe)
|
385
|
+
* Deprecate `stdlib` as an available expectation framework in favour of
|
386
|
+
`test_unit` and `minitest`. (Aaron Kromer)
|
387
|
+
|
388
|
+
Bug Fixes:
|
389
|
+
|
390
|
+
* Issue a warning when you set `config.deprecation_stream` too late for
|
391
|
+
it to take effect because the reporter has already been setup. (Myron Marston)
|
392
|
+
* `skip` with a block should not execute the block. (Xavier Shay)
|
393
|
+
|
162
394
|
### 2.99.0.beta2 / 2014-02-17
|
163
|
-
[
|
395
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
|
164
396
|
|
165
397
|
Enhancements:
|
166
398
|
|
@@ -196,11 +428,11 @@ Bug Fixes:
|
|
196
428
|
|
197
429
|
* Fix failure (undefined method `path`) in end-of-run summary
|
198
430
|
when `raise_errors_for_deprecations!` is configured. (Myron Marston)
|
199
|
-
* Fix issue were overridding spec ordering from the command line
|
431
|
+
* Fix issue were overridding spec ordering from the command line wasn't
|
200
432
|
fully recognised interally. (Jon Rowe)
|
201
433
|
|
202
434
|
### 2.99.0.beta1 / 2013-11-07
|
203
|
-
[
|
435
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
|
204
436
|
|
205
437
|
Enhancements
|
206
438
|
|
@@ -252,8 +484,16 @@ Deprecations
|
|
252
484
|
* `--order default` is deprecated in favor of `--order defined`
|
253
485
|
(Myron Marston)
|
254
486
|
|
487
|
+
### 2.14.8 / 2014-02-27
|
488
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8)
|
489
|
+
|
490
|
+
Bug fixes:
|
491
|
+
|
492
|
+
* Fix regression with the `textmateformatter` that prevented backtrace links
|
493
|
+
from being clickable. (Stefan Daschek)
|
494
|
+
|
255
495
|
### 2.14.7 / 2013-10-29
|
256
|
-
[
|
496
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
|
257
497
|
|
258
498
|
Bug fixes:
|
259
499
|
|
@@ -267,7 +507,7 @@ Bug fixes:
|
|
267
507
|
(Myron Marston)
|
268
508
|
|
269
509
|
### 2.14.6 / 2013-10-15
|
270
|
-
[
|
510
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
|
271
511
|
|
272
512
|
Bug fixes:
|
273
513
|
|
@@ -277,7 +517,7 @@ Bug fixes:
|
|
277
517
|
Gierth)
|
278
518
|
|
279
519
|
### 2.14.5 / 2013-08-13
|
280
|
-
[
|
520
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
|
281
521
|
|
282
522
|
Bug fixes:
|
283
523
|
|
@@ -292,7 +532,7 @@ Bug fixes:
|
|
292
532
|
* JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
|
293
533
|
|
294
534
|
### 2.14.4 / 2013-07-21
|
295
|
-
[
|
535
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
|
296
536
|
|
297
537
|
Bug fixes
|
298
538
|
|
@@ -315,7 +555,7 @@ Bug fixes
|
|
315
555
|
examples to be printed. (Jon Rowe)
|
316
556
|
|
317
557
|
### 2.14.3 / 2013-07-13
|
318
|
-
[
|
558
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
|
319
559
|
|
320
560
|
Bug fixes
|
321
561
|
|
@@ -324,7 +564,7 @@ Bug fixes
|
|
324
564
|
(This was a regression in 2.14) (Jon Rowe)
|
325
565
|
|
326
566
|
### 2.14.2 / 2013-07-09
|
327
|
-
[
|
567
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
|
328
568
|
|
329
569
|
Bug fixes
|
330
570
|
|
@@ -336,7 +576,7 @@ Bug fixes
|
|
336
576
|
(Jon Rowe)
|
337
577
|
|
338
578
|
### 2.14.1 / 2013-07-08
|
339
|
-
[
|
579
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
|
340
580
|
|
341
581
|
Bug fixes
|
342
582
|
|
@@ -346,7 +586,7 @@ Bug fixes
|
|
346
586
|
comes from `Kernel` (Alex Portnov, Jon Rowe).
|
347
587
|
|
348
588
|
### 2.14.0 / 2013-07-06
|
349
|
-
[
|
589
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
|
350
590
|
|
351
591
|
Enhancements
|
352
592
|
|
@@ -360,7 +600,7 @@ Bug fix
|
|
360
600
|
(Jon Rowe, Andy Lindeman and Myron Marston)
|
361
601
|
|
362
602
|
### 2.14.0.rc1 / 2013-05-27
|
363
|
-
[
|
603
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
|
364
604
|
|
365
605
|
Enhancements
|
366
606
|
|
@@ -440,7 +680,7 @@ Deprecations
|
|
440
680
|
(Jon Rowe)
|
441
681
|
|
442
682
|
### 2.13.1 / 2013-03-12
|
443
|
-
[
|
683
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
|
444
684
|
|
445
685
|
Bug fixes
|
446
686
|
|
@@ -470,7 +710,7 @@ Deprecations
|
|
470
710
|
in an example group (Myron Marston).
|
471
711
|
|
472
712
|
### 2.13.0 / 2013-02-23
|
473
|
-
[
|
713
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
|
474
714
|
|
475
715
|
Enhancements
|
476
716
|
|
@@ -503,7 +743,7 @@ Bug fixes
|
|
503
743
|
parent group's subject. (Olek Janiszewski)
|
504
744
|
|
505
745
|
### 2.12.2 / 2012-12-13
|
506
|
-
[
|
746
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
|
507
747
|
|
508
748
|
Bug fixes
|
509
749
|
|
@@ -514,7 +754,7 @@ Bug fixes
|
|
514
754
|
for backwards compatibility (Patrick Van Stee)
|
515
755
|
|
516
756
|
### 2.12.1 / 2012-12-01
|
517
|
-
[
|
757
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
|
518
758
|
|
519
759
|
Bug fixes
|
520
760
|
|
@@ -529,7 +769,7 @@ Bug fixes
|
|
529
769
|
(Myron Marston).
|
530
770
|
|
531
771
|
### 2.12.0 / 2012-11-12
|
532
|
-
[
|
772
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
|
533
773
|
|
534
774
|
Enhancements
|
535
775
|
|
@@ -588,7 +828,7 @@ Deprecations
|
|
588
828
|
|
589
829
|
|
590
830
|
### 2.11.1 / 2012-07-18
|
591
|
-
[
|
831
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
|
592
832
|
|
593
833
|
Bug fixes
|
594
834
|
|
@@ -603,7 +843,7 @@ Bug fixes
|
|
603
843
|
(Myron Marston).
|
604
844
|
|
605
845
|
### 2.11.0 / 2012-07-07
|
606
|
-
[
|
846
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
|
607
847
|
|
608
848
|
Enhancements
|
609
849
|
|
@@ -636,7 +876,7 @@ Bug fixes
|
|
636
876
|
* Delegate to mocha methods instead of aliasing them in mocha adapter.
|
637
877
|
|
638
878
|
### 2.10.1 / 2012-05-19
|
639
|
-
[
|
879
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
|
640
880
|
|
641
881
|
Bug fixes
|
642
882
|
|
@@ -645,7 +885,7 @@ Bug fixes
|
|
645
885
|
Strings (slyphon)
|
646
886
|
|
647
887
|
### 2.10.0 / 2012-05-03
|
648
|
-
[
|
888
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
|
649
889
|
|
650
890
|
Enhancements
|
651
891
|
|
@@ -665,7 +905,7 @@ Bug fixes
|
|
665
905
|
* Do not modify example ancestry when dumping errors (Michael Grosser)
|
666
906
|
|
667
907
|
### 2.9.0 / 2012-03-17
|
668
|
-
[
|
908
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
|
669
909
|
|
670
910
|
Enhancements
|
671
911
|
|
@@ -689,7 +929,7 @@ Bug fixes
|
|
689
929
|
|
690
930
|
### 2.8.0 / 2012-01-04
|
691
931
|
|
692
|
-
[
|
932
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
|
693
933
|
|
694
934
|
Bug fixes
|
695
935
|
|
@@ -702,7 +942,7 @@ Bug fixes
|
|
702
942
|
|
703
943
|
### 2.8.0.rc2 / 2011-12-19
|
704
944
|
|
705
|
-
[
|
945
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
|
706
946
|
|
707
947
|
Enhancments
|
708
948
|
|
@@ -720,7 +960,7 @@ Enhancments
|
|
720
960
|
|
721
961
|
### 2.8.0.rc1 / 2011-11-06
|
722
962
|
|
723
|
-
[
|
963
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
|
724
964
|
|
725
965
|
Enhancements
|
726
966
|
|
@@ -763,7 +1003,7 @@ Bug fixes
|
|
763
1003
|
|
764
1004
|
### 2.7.1 / 2011-10-20
|
765
1005
|
|
766
|
-
[
|
1006
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
|
767
1007
|
|
768
1008
|
Bug fixes
|
769
1009
|
|
@@ -771,7 +1011,7 @@ Bug fixes
|
|
771
1011
|
|
772
1012
|
### 2.7.0 / 2011-10-16
|
773
1013
|
|
774
|
-
[
|
1014
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
|
775
1015
|
|
776
1016
|
NOTE: RSpec's release policy dictates that there should not be any backward
|
777
1017
|
incompatible changes in minor releases, but we're making an exception to
|
@@ -814,7 +1054,7 @@ Bug fixes
|
|
814
1054
|
|
815
1055
|
### 2.6.4 / 2011-06-06
|
816
1056
|
|
817
|
-
[
|
1057
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
|
818
1058
|
|
819
1059
|
NOTE: RSpec's release policy dictates that there should not be new
|
820
1060
|
functionality in patch releases, but this minor enhancement slipped in by
|
@@ -834,7 +1074,7 @@ Bug fixes
|
|
834
1074
|
|
835
1075
|
### 2.6.3 / 2011-05-24
|
836
1076
|
|
837
|
-
[
|
1077
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
|
838
1078
|
|
839
1079
|
Bug fixes
|
840
1080
|
|
@@ -845,7 +1085,7 @@ Bug fixes
|
|
845
1085
|
|
846
1086
|
### 2.6.2 / 2011-05-21
|
847
1087
|
|
848
|
-
[
|
1088
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
|
849
1089
|
|
850
1090
|
Bug fixes
|
851
1091
|
|
@@ -854,7 +1094,7 @@ Bug fixes
|
|
854
1094
|
|
855
1095
|
### 2.6.1 / 2011-05-19
|
856
1096
|
|
857
|
-
[
|
1097
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
|
858
1098
|
|
859
1099
|
Bug fixes
|
860
1100
|
|
@@ -863,7 +1103,7 @@ Bug fixes
|
|
863
1103
|
|
864
1104
|
### 2.6.0 / 2011-05-12
|
865
1105
|
|
866
|
-
[
|
1106
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
|
867
1107
|
|
868
1108
|
Enhancements
|
869
1109
|
|
@@ -909,7 +1149,7 @@ Bug fixes
|
|
909
1149
|
|
910
1150
|
### 2.5.1 / 2011-02-06
|
911
1151
|
|
912
|
-
[
|
1152
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
|
913
1153
|
|
914
1154
|
NOTE: this release breaks compatibility with rspec/autotest/bundler
|
915
1155
|
integration, but does so in order to greatly simplify it.
|
@@ -926,7 +1166,7 @@ If you don't want 'bundle exec', there is nothing you have to do.
|
|
926
1166
|
|
927
1167
|
### 2.5.0 / 2011-02-05
|
928
1168
|
|
929
|
-
[
|
1169
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
|
930
1170
|
|
931
1171
|
Enhancements
|
932
1172
|
|
@@ -954,7 +1194,7 @@ Deprecations
|
|
954
1194
|
|
955
1195
|
### 2.4.0 / 2011-01-02
|
956
1196
|
|
957
|
-
[
|
1197
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
|
958
1198
|
|
959
1199
|
Enhancements
|
960
1200
|
|
@@ -979,7 +1219,7 @@ Bug fixes
|
|
979
1219
|
|
980
1220
|
### 2.3.1 / 2010-12-16
|
981
1221
|
|
982
|
-
[
|
1222
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
|
983
1223
|
|
984
1224
|
Bug fixes
|
985
1225
|
|
@@ -990,7 +1230,7 @@ Bug fixes
|
|
990
1230
|
|
991
1231
|
### 2.3.0 / 2010-12-12
|
992
1232
|
|
993
|
-
[
|
1233
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
|
994
1234
|
|
995
1235
|
Enhancements
|
996
1236
|
|
@@ -1010,7 +1250,7 @@ Bug fixes
|
|
1010
1250
|
|
1011
1251
|
### 2.2.1 / 2010-11-28
|
1012
1252
|
|
1013
|
-
[
|
1253
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
|
1014
1254
|
|
1015
1255
|
Bug fixes
|
1016
1256
|
* alias_method instead of override Kernel#method_missing (John Wilger)
|
@@ -1020,7 +1260,7 @@ Bug fixes
|
|
1020
1260
|
|
1021
1261
|
### 2.2.0 / 2010-11-28
|
1022
1262
|
|
1023
|
-
[
|
1263
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
|
1024
1264
|
|
1025
1265
|
Deprecations/changes
|
1026
1266
|
|
@@ -1046,7 +1286,7 @@ Bug fixes
|
|
1046
1286
|
|
1047
1287
|
### 2.1.0 / 2010-11-07
|
1048
1288
|
|
1049
|
-
[
|
1289
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
|
1050
1290
|
|
1051
1291
|
Enhancments
|
1052
1292
|
|
@@ -1077,7 +1317,7 @@ Bug fixes
|
|
1077
1317
|
|
1078
1318
|
### 2.0.1 / 2010-10-18
|
1079
1319
|
|
1080
|
-
[
|
1320
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
|
1081
1321
|
|
1082
1322
|
Bug fixes
|
1083
1323
|
|
@@ -1090,7 +1330,7 @@ Bug fixes
|
|
1090
1330
|
|
1091
1331
|
### 2.0.0 / 2010-10-10
|
1092
1332
|
|
1093
|
-
[
|
1333
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
|
1094
1334
|
|
1095
1335
|
RSpec-1 compatibility
|
1096
1336
|
|
@@ -1103,7 +1343,7 @@ Bug fixes
|
|
1103
1343
|
|
1104
1344
|
### 2.0.0.rc / 2010-10-05
|
1105
1345
|
|
1106
|
-
[
|
1346
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
|
1107
1347
|
|
1108
1348
|
Enhancements
|
1109
1349
|
|
@@ -1127,7 +1367,7 @@ Bug fixes
|
|
1127
1367
|
|
1128
1368
|
### 2.0.0.beta.22 / 2010-09-12
|
1129
1369
|
|
1130
|
-
[
|
1370
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
|
1131
1371
|
|
1132
1372
|
Enhancements
|
1133
1373
|
|