rspec-core 2.99.0.beta2 → 2.99.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/Changelog.md +122 -43
  3. data/features/command_line/line_number_option.feature +6 -11
  4. data/features/configuration/read_options_from_file.feature +2 -2
  5. data/features/expectation_framework_integration/configure_expectation_framework.feature +120 -25
  6. data/lib/autotest/discover.rb +10 -1
  7. data/lib/autotest/rspec2.rb +1 -1
  8. data/lib/rspec/core/command_line.rb +16 -5
  9. data/lib/rspec/core/configuration.rb +151 -119
  10. data/lib/rspec/core/deprecated_mutable_array_proxy.rb +32 -0
  11. data/lib/rspec/core/example.rb +3 -1
  12. data/lib/rspec/core/example_group.rb +174 -125
  13. data/lib/rspec/core/filter_manager.rb +48 -10
  14. data/lib/rspec/core/formatters.rb +137 -0
  15. data/lib/rspec/core/formatters/base_text_formatter.rb +25 -29
  16. data/lib/rspec/core/formatters/console_codes.rb +42 -0
  17. data/lib/rspec/core/formatters/deprecation_formatter.rb +14 -5
  18. data/lib/rspec/core/formatters/helpers.rb +1 -1
  19. data/lib/rspec/core/memoized_helpers.rb +2 -1
  20. data/lib/rspec/core/metadata.rb +63 -1
  21. data/lib/rspec/core/minitest_assertions_adapter.rb +28 -0
  22. data/lib/rspec/core/option_parser.rb +20 -1
  23. data/lib/rspec/core/pending.rb +26 -4
  24. data/lib/rspec/core/reporter.rb +1 -1
  25. data/lib/rspec/core/runner.rb +2 -2
  26. data/lib/rspec/core/shared_example_group.rb +11 -4
  27. data/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  28. data/lib/rspec/core/version.rb +1 -1
  29. data/lib/rspec/core/world.rb +2 -2
  30. data/spec/autotest/discover_spec.rb +38 -8
  31. data/spec/rspec/core/command_line_spec.rb +47 -29
  32. data/spec/rspec/core/configuration_options_spec.rb +1 -1
  33. data/spec/rspec/core/configuration_spec.rb +223 -37
  34. data/spec/rspec/core/example_group_spec.rb +116 -6
  35. data/spec/rspec/core/formatters/base_text_formatter_spec.rb +24 -4
  36. data/spec/rspec/core/formatters/console_codes_spec.rb +50 -0
  37. data/spec/rspec/core/formatters/deprecation_formatter_spec.rb +20 -3
  38. data/spec/rspec/core/formatters/documentation_formatter_spec.rb +1 -0
  39. data/spec/rspec/core/formatters/html_formatted.html +3 -4
  40. data/spec/rspec/core/formatters/html_formatter_spec.rb +10 -4
  41. data/spec/rspec/core/formatters/text_mate_formatted.html +3 -4
  42. data/spec/rspec/core/formatters/text_mate_formatter_spec.rb +9 -3
  43. data/spec/rspec/core/hooks_filtering_spec.rb +5 -5
  44. data/spec/rspec/core/memoized_helpers_spec.rb +38 -0
  45. data/spec/rspec/core/metadata_spec.rb +24 -1
  46. data/spec/rspec/core/option_parser_spec.rb +39 -2
  47. data/spec/rspec/core/pending_example_spec.rb +14 -0
  48. data/spec/rspec/core/pending_spec.rb +27 -0
  49. data/spec/rspec/core/runner_spec.rb +3 -3
  50. data/spec/rspec/core/shared_context_spec.rb +1 -1
  51. data/spec/rspec/core/shared_example_group_spec.rb +18 -0
  52. data/spec/support/helper_methods.rb +4 -0
  53. metadata +105 -106
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e844e3a16636f30f32aa7782e8b28a295dff0d8d
4
+ data.tar.gz: 977c3732fb2e92e0b2e4c386ba9819e5cad8da76
5
+ SHA512:
6
+ metadata.gz: 62510171d1efdfeffe0242cfd863a5bc841b2a6021f98008f1e9858f49511b2a248b656d47aeaacf2d3c361289668f1569e0ab52364c30a662248463402c000b
7
+ data.tar.gz: 4a09e1cee3c3b365a6507ad7f33054cddf25c7d55a7bb8db3c09d0a763d65cb138a78ecdf1154e5992e0ab1c5d7bfa6c1deea422c5246836c8a1c6bf481b0aa9
@@ -1,5 +1,76 @@
1
+ ### 2.99.0.rc1 / 2014-05-18
2
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta2...v2.99.0.rc1)
3
+
4
+ Enhancements:
5
+
6
+ * Add `--deprecation-out` CLI option which directs deprecation warnings
7
+ to the named file. (Myron Marston)
8
+ * Backport support for `skip` in metadata to skip execution of an example.
9
+ (Xavier Shay, #1472)
10
+ * Add `Pathname` support for setting all output streams. (Aaron Kromer)
11
+ * Add `test_unit` and `minitest` expectation frameworks. (Aaron Kromer)
12
+
13
+ Deprecations:
14
+
15
+ * Deprecate `RSpec::Core::Pending::PendingDeclaredInExample`, use
16
+ `SkipDeclaredInExample` instead. (Xavier Shay)
17
+ * Issue a deprecation when `described_class` is accessed from within
18
+ a nested `describe <SomeClass>` example group, since `described_class`
19
+ will return the innermost described class in RSpec 3 rather than the
20
+ outermost described class, as it behaved in RSpec 2. (Myron Marston)
21
+ * Deprecate `RSpec::Core::FilterManager::DEFAULT_EXCLUSIONS`,
22
+ `RSpec::Core::FilterManager::STANDALONE_FILTERS` and use of
23
+ `#empty_without_conditional_filters?` on those filters. (Sergey Pchelincev)
24
+ * Deprecate `RSpec::Core::Example#options` in favor of
25
+ `RSpec::Core::Example#metadata`. (Myron Marston)
26
+ * Issue warning when passing a symbol or hash to `describe` or `context`
27
+ as the first argument. In RSpec 2.x this would be treated as metadata
28
+ but in RSpec 3 it'll be treated as the described object. To continue
29
+ having it treated as metadata, pass a description before the symbol or
30
+ hash. (Myron Marston)
31
+ * Deprecate `RSpec::Core::BaseTextFormatter::VT100_COLORS` and
32
+ `RSpec::Core::BaseTextFormatter::VT100_COLOR_CODES` in favour
33
+ of `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODES` and
34
+ `RSpec::Core::BaseTextFormatter::ConsoleCodes::VT100_CODE_VALUES`.
35
+ (Jon Rowe)
36
+ * Deprecate `RSpec::Core::ExampleGroup.display_name` in favor of
37
+ `RSpec::Core::ExampleGroup.description`. (Myron Marston)
38
+ * Deprecate `RSpec::Core::ExampleGroup.describes` in favor of
39
+ `RSpec::Core::ExampleGroup.described_class`. (Myron Marston)
40
+ * Deprecate `RSpec::Core::ExampleGroup.alias_example_to` in favor of
41
+ `RSpec::Core::Configuration#alias_example_to`. (Myron Marston)
42
+ * Deprecate `RSpec::Core::ExampleGroup.alias_it_behaves_like_to` in favor
43
+ of `RSpec::Core::Configuration#alias_it_behaves_like_to`. (Myron Marston)
44
+ * Deprecate `RSpec::Core::ExampleGroup.focused` in favor of
45
+ `RSpec::Core::ExampleGroup.focus`. (Myron Marston)
46
+ * Add deprecation warning for `config.filter_run :focused` since
47
+ example aliases `fit` and `focus` will no longer include
48
+ `:focused` metadata but will continue to include `:focus`. (Myron Marston)
49
+ * Deprecate filtering by `:line_number` (e.g. `--line-number` from the
50
+ CLI). Use location filtering instead. (Myron Marston)
51
+ * Deprecate `--default_path` as an alternative to `--default-path`. (Jon Rowe)
52
+ * Deprecate `RSpec::Core::Configuration#warnings` in favor of
53
+ `RSpec::Core::Configuration#warnings?`. (Myron Marston)
54
+ * Deprecate `share_examples_for` in favor of `shared_examples_for` or
55
+ just `shared_examples`. (Myron Marston)
56
+ * Deprecate `RSpec::Core::CommandLine` in favor of
57
+ `RSpec::Core::Runner`. (Myron Marston)
58
+ * Deprecate `#color_enabled`, `#color_enabled=` and `#color?` in favour of
59
+ `#color`, `#color=` and `#color_enabled? output`. (Jon Rowe)
60
+ * Deprecate `#filename_pattern` in favour of `#pattern`. (Jon Rowe)
61
+ * Deprecate `#backtrace_cleaner` in favour of `#backtrace_formatter`. (Jon Rowe)
62
+ * Deprecate mutating `RSpec::Configuration#formatters`. (Jon Rowe)
63
+ * Deprecate `stdlib` as an available expectation framework in favour of
64
+ `test_unit` and `minitest`. (Aaron Kromer)
65
+
66
+ Bug Fixes:
67
+
68
+ * Issue a warning when you set `config.deprecation_stream` too late for
69
+ it to take effect because the reporter has already been setup. (Myron Marston)
70
+ * `skip` with a block should not execute the block. (Xavier Shay)
71
+
1
72
  ### 2.99.0.beta2 / 2014-02-17
2
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
73
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.99.0.beta1...v2.99.0.beta2)
3
74
 
4
75
  Enhancements:
5
76
 
@@ -39,7 +110,7 @@ Bug Fixes:
39
110
  fully recognised interally. (Jon Rowe)
40
111
 
41
112
  ### 2.99.0.beta1 / 2013-11-07
42
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
113
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.99.0.beta1)
43
114
 
44
115
  Enhancements
45
116
 
@@ -91,8 +162,16 @@ Deprecations
91
162
  * `--order default` is deprecated in favor of `--order defined`
92
163
  (Myron Marston)
93
164
 
165
+ ### 2.14.8 / 2014-02-27
166
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8)
167
+
168
+ Bug fixes:
169
+
170
+ * Fix regression with the `textmateformatter` that prevented backtrace links
171
+ from being clickable. (Stefan Daschek)
172
+
94
173
  ### 2.14.7 / 2013-10-29
95
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
174
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
96
175
 
97
176
  Bug fixes:
98
177
 
@@ -106,7 +185,7 @@ Bug fixes:
106
185
  (Myron Marston)
107
186
 
108
187
  ### 2.14.6 / 2013-10-15
109
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
188
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
110
189
 
111
190
  Bug fixes:
112
191
 
@@ -116,7 +195,7 @@ Bug fixes:
116
195
  Gierth)
117
196
 
118
197
  ### 2.14.5 / 2013-08-13
119
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
198
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.4...v2.14.5)
120
199
 
121
200
  Bug fixes:
122
201
 
@@ -131,7 +210,7 @@ Bug fixes:
131
210
  * JsonFormatter no longer dies if `dump_profile` isn't defined (Alex / @MasterLambaster, Jon Rowe)
132
211
 
133
212
  ### 2.14.4 / 2013-07-21
134
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
213
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.3...v2.14.4)
135
214
 
136
215
  Bug fixes
137
216
 
@@ -154,7 +233,7 @@ Bug fixes
154
233
  examples to be printed. (Jon Rowe)
155
234
 
156
235
  ### 2.14.3 / 2013-07-13
157
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
236
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3)
158
237
 
159
238
  Bug fixes
160
239
 
@@ -163,7 +242,7 @@ Bug fixes
163
242
  (This was a regression in 2.14) (Jon Rowe)
164
243
 
165
244
  ### 2.14.2 / 2013-07-09
166
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
245
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2)
167
246
 
168
247
  Bug fixes
169
248
 
@@ -175,7 +254,7 @@ Bug fixes
175
254
  (Jon Rowe)
176
255
 
177
256
  ### 2.14.1 / 2013-07-08
178
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
257
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0...v2.14.1)
179
258
 
180
259
  Bug fixes
181
260
 
@@ -185,7 +264,7 @@ Bug fixes
185
264
  comes from `Kernel` (Alex Portnov, Jon Rowe).
186
265
 
187
266
  ### 2.14.0 / 2013-07-06
188
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
267
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.0.rc1...v2.14.0)
189
268
 
190
269
  Enhancements
191
270
 
@@ -199,7 +278,7 @@ Bug fix
199
278
  (Jon Rowe, Andy Lindeman and Myron Marston)
200
279
 
201
280
  ### 2.14.0.rc1 / 2013-05-27
202
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
281
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.1...v2.14.0.rc1)
203
282
 
204
283
  Enhancements
205
284
 
@@ -279,7 +358,7 @@ Deprecations
279
358
  (Jon Rowe)
280
359
 
281
360
  ### 2.13.1 / 2013-03-12
282
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
361
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1)
283
362
 
284
363
  Bug fixes
285
364
 
@@ -309,7 +388,7 @@ Deprecations
309
388
  in an example group (Myron Marston).
310
389
 
311
390
  ### 2.13.0 / 2013-02-23
312
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
391
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.2...v2.13.0)
313
392
 
314
393
  Enhancements
315
394
 
@@ -342,7 +421,7 @@ Bug fixes
342
421
  parent group's subject. (Olek Janiszewski)
343
422
 
344
423
  ### 2.12.2 / 2012-12-13
345
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
424
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.1...v2.12.2)
346
425
 
347
426
  Bug fixes
348
427
 
@@ -353,7 +432,7 @@ Bug fixes
353
432
  for backwards compatibility (Patrick Van Stee)
354
433
 
355
434
  ### 2.12.1 / 2012-12-01
356
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
435
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.12.0...v2.12.1)
357
436
 
358
437
  Bug fixes
359
438
 
@@ -368,7 +447,7 @@ Bug fixes
368
447
  (Myron Marston).
369
448
 
370
449
  ### 2.12.0 / 2012-11-12
371
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
450
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.1...v2.12.0)
372
451
 
373
452
  Enhancements
374
453
 
@@ -427,7 +506,7 @@ Deprecations
427
506
 
428
507
 
429
508
  ### 2.11.1 / 2012-07-18
430
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
509
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.11.0...v2.11.1)
431
510
 
432
511
  Bug fixes
433
512
 
@@ -442,7 +521,7 @@ Bug fixes
442
521
  (Myron Marston).
443
522
 
444
523
  ### 2.11.0 / 2012-07-07
445
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
524
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.1...v2.11.0)
446
525
 
447
526
  Enhancements
448
527
 
@@ -475,7 +554,7 @@ Bug fixes
475
554
  * Delegate to mocha methods instead of aliasing them in mocha adapter.
476
555
 
477
556
  ### 2.10.1 / 2012-05-19
478
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
557
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)
479
558
 
480
559
  Bug fixes
481
560
 
@@ -484,7 +563,7 @@ Bug fixes
484
563
  Strings (slyphon)
485
564
 
486
565
  ### 2.10.0 / 2012-05-03
487
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
566
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)
488
567
 
489
568
  Enhancements
490
569
 
@@ -504,7 +583,7 @@ Bug fixes
504
583
  * Do not modify example ancestry when dumping errors (Michael Grosser)
505
584
 
506
585
  ### 2.9.0 / 2012-03-17
507
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
586
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0...v2.9.0)
508
587
 
509
588
  Enhancements
510
589
 
@@ -528,7 +607,7 @@ Bug fixes
528
607
 
529
608
  ### 2.8.0 / 2012-01-04
530
609
 
531
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
610
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc2...v2.8.0)
532
611
 
533
612
  Bug fixes
534
613
 
@@ -541,7 +620,7 @@ Bug fixes
541
620
 
542
621
  ### 2.8.0.rc2 / 2011-12-19
543
622
 
544
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
623
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.8.0.rc1...v2.8.0.rc2)
545
624
 
546
625
  Enhancments
547
626
 
@@ -559,7 +638,7 @@ Enhancments
559
638
 
560
639
  ### 2.8.0.rc1 / 2011-11-06
561
640
 
562
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
641
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.1...v2.8.0.rc1)
563
642
 
564
643
  Enhancements
565
644
 
@@ -602,7 +681,7 @@ Bug fixes
602
681
 
603
682
  ### 2.7.1 / 2011-10-20
604
683
 
605
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
684
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.7.0...v2.7.1)
606
685
 
607
686
  Bug fixes
608
687
 
@@ -610,7 +689,7 @@ Bug fixes
610
689
 
611
690
  ### 2.7.0 / 2011-10-16
612
691
 
613
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
692
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.4...v2.7.0)
614
693
 
615
694
  NOTE: RSpec's release policy dictates that there should not be any backward
616
695
  incompatible changes in minor releases, but we're making an exception to
@@ -653,7 +732,7 @@ Bug fixes
653
732
 
654
733
  ### 2.6.4 / 2011-06-06
655
734
 
656
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
735
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.3...v2.6.4)
657
736
 
658
737
  NOTE: RSpec's release policy dictates that there should not be new
659
738
  functionality in patch releases, but this minor enhancement slipped in by
@@ -673,7 +752,7 @@ Bug fixes
673
752
 
674
753
  ### 2.6.3 / 2011-05-24
675
754
 
676
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
755
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.2...v2.6.3)
677
756
 
678
757
  Bug fixes
679
758
 
@@ -684,7 +763,7 @@ Bug fixes
684
763
 
685
764
  ### 2.6.2 / 2011-05-21
686
765
 
687
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
766
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.1...v2.6.2)
688
767
 
689
768
  Bug fixes
690
769
 
@@ -693,7 +772,7 @@ Bug fixes
693
772
 
694
773
  ### 2.6.1 / 2011-05-19
695
774
 
696
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
775
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.6.0...v2.6.1)
697
776
 
698
777
  Bug fixes
699
778
 
@@ -702,7 +781,7 @@ Bug fixes
702
781
 
703
782
  ### 2.6.0 / 2011-05-12
704
783
 
705
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
784
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.1...v2.6.0)
706
785
 
707
786
  Enhancements
708
787
 
@@ -748,7 +827,7 @@ Bug fixes
748
827
 
749
828
  ### 2.5.1 / 2011-02-06
750
829
 
751
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
830
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.5.0...v2.5.1)
752
831
 
753
832
  NOTE: this release breaks compatibility with rspec/autotest/bundler
754
833
  integration, but does so in order to greatly simplify it.
@@ -765,7 +844,7 @@ If you don't want 'bundle exec', there is nothing you have to do.
765
844
 
766
845
  ### 2.5.0 / 2011-02-05
767
846
 
768
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
847
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.4.0...v2.5.0)
769
848
 
770
849
  Enhancements
771
850
 
@@ -793,7 +872,7 @@ Deprecations
793
872
 
794
873
  ### 2.4.0 / 2011-01-02
795
874
 
796
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
875
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.1...v2.4.0)
797
876
 
798
877
  Enhancements
799
878
 
@@ -818,7 +897,7 @@ Bug fixes
818
897
 
819
898
  ### 2.3.1 / 2010-12-16
820
899
 
821
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
900
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.3.0...v2.3.1)
822
901
 
823
902
  Bug fixes
824
903
 
@@ -829,7 +908,7 @@ Bug fixes
829
908
 
830
909
  ### 2.3.0 / 2010-12-12
831
910
 
832
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
911
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.1...v2.3.0)
833
912
 
834
913
  Enhancements
835
914
 
@@ -849,7 +928,7 @@ Bug fixes
849
928
 
850
929
  ### 2.2.1 / 2010-11-28
851
930
 
852
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
931
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.2.0...v2.2.1)
853
932
 
854
933
  Bug fixes
855
934
  * alias_method instead of override Kernel#method_missing (John Wilger)
@@ -859,7 +938,7 @@ Bug fixes
859
938
 
860
939
  ### 2.2.0 / 2010-11-28
861
940
 
862
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
941
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.1.0...v2.2.0)
863
942
 
864
943
  Deprecations/changes
865
944
 
@@ -885,7 +964,7 @@ Bug fixes
885
964
 
886
965
  ### 2.1.0 / 2010-11-07
887
966
 
888
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
967
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.1...v2.1.0)
889
968
 
890
969
  Enhancments
891
970
 
@@ -916,7 +995,7 @@ Bug fixes
916
995
 
917
996
  ### 2.0.1 / 2010-10-18
918
997
 
919
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
998
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0...v2.0.1)
920
999
 
921
1000
  Bug fixes
922
1001
 
@@ -929,7 +1008,7 @@ Bug fixes
929
1008
 
930
1009
  ### 2.0.0 / 2010-10-10
931
1010
 
932
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
1011
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.rc...v2.0.0)
933
1012
 
934
1013
  RSpec-1 compatibility
935
1014
 
@@ -942,7 +1021,7 @@ Bug fixes
942
1021
 
943
1022
  ### 2.0.0.rc / 2010-10-05
944
1023
 
945
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
1024
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.22...v2.0.0.rc)
946
1025
 
947
1026
  Enhancements
948
1027
 
@@ -966,7 +1045,7 @@ Bug fixes
966
1045
 
967
1046
  ### 2.0.0.beta.22 / 2010-09-12
968
1047
 
969
- [full changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
1048
+ [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.0.0.beta.20...v2.0.0.beta.22)
970
1049
 
971
1050
  Enhancements
972
1051