Changelog for
ruby2.7-rubygem-rspec-core-2_14-2.14.8-lp155.4.6.x86_64.rpm :
* Tue Jun 13 2017 cooloAATTsuse.com- updated to version 2.14.8 see installed Changelog.md [#]## 2.14.8 / 2014-02-27 [Full Changelog](http://github.com/rspec/rspec-core/compare/v2.14.7...v2.14.8) Bug fixes:
* Fix regression with the `TextMateFormatter` that prevented backtrace links from being clickable. (Stefan Daschek)
* Mon May 29 2017 opensuse_buildserviceAATTojkastl.de- changed package name with suffix -2_14, renamed spec and changes file
* Tue May 23 2017 opensuse_buildserviceAATTojkastl.de- changed naming of the package, as this is a versioned gem
* Tue Jul 15 2014 mrueckertAATTsuse.com- regenerate with new template
* Thu Jun 26 2014 mrueckertAATTsuse.com- move to SLE 12 packaging schema
* Fri Nov 01 2013 cooloAATTsuse.com- updated to version 2.14.7 Bug fixes:
* Fix regression in 2.14.6 that broke the Fivemat formatter. It depended upon either `example.execution_result[:exception].pending_fixed?` (which was removed in 2.14.6 to fix an issue with frozen error objects) or `RSpec::Core::PendingExampleFixedError` (which was renamed to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8. This fix makes a constant alias for the old error name. (Myron Marston)
* Sun Oct 20 2013 cooloAATTsuse.com- updated to version 2.14.6 Bug fixes:
* Format stringified numbers correctly when mathn library is loaded. (Jay Hayes)
* Fix an issue that prevented the use of frozen error objects. (Lars Gierth)
* Mon Aug 26 2013 cooloAATTsuse.com- updated to version 2.14.5 Bug fixes:
* Fix a `NoMethodError` that was being raised when there were no shared examples or contexts declared and `RSpec.world.reset` is invoked. (thepoho, Jon Rowe, Myron Marston)
* Fix a deprecation warning that was being incorrectly displayed when `shared_examples` are declared at top level in a `module` scope. (Jon Rowe)
* Fix after(:all) hooks so consecutive (same context) scopes will run even if one raises an error. (Jon Rowe, Trejkaz)
* JsonFormatter no longer dies if `dump_profile` isn\'t defined (Alex / AATTMasterLambaster, Jon Rowe)
* Tue Jul 30 2013 cooloAATTsuse.com- updated to version 2.14.4 Bug fixes
* Fix regression in 2.14: ensure configured requires (via `-r` option) are loaded before spec files are loaded. This allows the spec files to programatically change the file pattern (Jon Rowe).
* Autoload `RSpec::Mocks` and `RSpec::Expectations` when referenced if they are not already loaded (`RSpec::Matches` has been autoloaded for a while). In the `rspec` gem, we changed it recently to stop loading `rspec/mocks` and `rspec/expectations` by default, as some users reported problems where they were intending to use mocha, not rspec-mocks, but rspec-mocks was loaded and causing a conflict. rspec-core loads mocks and expectations at the appropriate time, so it seemed like a safe change -- but caused a problem for some authors of libraries that integrate with RSpec. This fixes that problem. (Myron Marston)
* Gracefully handle a command like `rspec --profile path/to/spec.rb`: the `path/to/spec.rb` arg was being wrongly treated as the `profile` integer arg, which got cast `0` using `to_i`, causing no profiled examples to be printed. (Jon Rowe) [#]## 2.14.3 / 2013-07-13 [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.2...v2.14.3) Bug fixes
* Fix deprecation notices issued from `RSpec::Core::RakeTask` so that they work properly when all of rspec-core is not loaded. (This was a regression in 2.14) (Jon Rowe) [#]## 2.14.2 / 2013-07-09 [full changelog](http://github.com/rspec/rspec-core/compare/v2.14.1...v2.14.2) Bug fixes
* Fix regression caused by 2.14.1 release: formatters that report that they `respond_to?` a notification, but had no corresponding method would raise an error when registered. The new fix is to just implement `start` on the deprecation formatter to fix the original JRuby/ruby-debug issue. (Jon Rowe)
* Mon Mar 18 2013 cooloAATTsuse.com- updated to version 2.13.1 [full changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1) Bug fixes
* Use hook classes as proxies rather than extending hook blocks to support lambdas for before/after/around hooks. (David Chelimsky)
* Fix regression in 2.13.0 that caused confusing behavior when overriding a named subject with an unnamed subject in an inner group and then referencing the outer group subject\'s name. The fix for this required us to disallow using `super` in a named subject (which is confusing, anyway -- named subjects create 2 methods, so which method on the parent example group are you `super`ing to?) but `super` in an unnamed subject continues to work (Myron Marston).
* Do not allow a referenced `let` or `subject` in `before(:all)` to cause other `let` declarations to leak across examples (Myron Marston).
* Work around odd ruby 1.9 bug with `String#match` that was triggered by passing it a regex from a `let` declaration. For more info, see http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer).
* Add missing `require \'set\'` to `base_text_formatter.rb` (Tom Anderson). Deprecations
* Deprecate accessing `let` or `subject` declarations in `before(:all)`. These were not intended to be called in a `before(:all)` hook, as they exist to define state that is reset between each example, while `before(:all)` exists to define state that is shared across examples in an example group (Myron Marston).