./devel/ruby-rspec-core, Behaviour Driven Development framework for Ruby, core part

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 3.13.0, Package name: ruby31-rspec-core-3.13.0, Maintainer: pkgsrc-users

Behaviour Driven Development for Ruby

# RSpec Core

RSpec Core provides the structure for writing executable examples of how your
code should behave.

## Documentation

* [Cucumber features](http://relishapp.com/rspec/rspec-expectations)
* [RDoc](http://rubydoc.info/gems/rspec-expectations/2.4.0/frames)


Required to run:
[devel/ruby-rspec-support] [lang/ruby26-base]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 163.5 KB

Version history: (Expand)


CVS history: (Expand)


   2024-02-04 16:37:36 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-rspec-core: update to 3.13.0

3.13.0 / 2024-02-04

Enhancements:

* Support the --backtrace flag when using the JSON formatter. (Matt Larraz,
  #2980)
* Ignore commented out lines in CLI config files (e.g. .rspec). (Junichi
  Ito, #2984)
* Add pending_failure_output config option to allow skipping backtraces or
  muting pending specs output. (Phil Pirozhkov, #2957)
* Process --dry-run before configuration flags that read files so that
  introspecting it returns the correct value. (Xenor Chang, #3008)
* Allow specifying custom ordering strategies via --order. (Jon Rowe, #3025)
* Use the improved syntax_suggest output for SyntaxError when
  available. (Richard Schneeman, #3015, #3026)
* Add config option (RSpec::Core::Configuration#full_cause_backtrace) to
  print the entire backtrace of an exception cause. (David Taylor, #3046)
   2023-04-27 16:15:46 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-rspec-core: update to 3.12.2

3.12.2 (2023-04-18)

Bug fixes:

* Remove link to outdated documentation in generated output. (Jon Rowe,
  #3035)
   2022-11-30 14:45:09 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-rspec-core: update to 3.12.0

3.12.0 (2022-10-26)

Full Changelog

* No changes, released to support other gems.
   2022-02-12 14:30:14 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-rspec-core: update to 3.11.0

3.11.0 (2022-02-09)

Enhancements:

* Improve pluralisation of words ending with s (like process). (Joshua
  Pinter, #2779)
* Add ordering by file modification time (most recent first). (Matheus
  Richard, #2778)
* Add to_s to reserved names for #let and #subject. (Nick Flückiger, #2886)
* Introduce RSpec.current_scope to expose the current scope in which RSpec
  is executing. e.g. :before_example_hook, :example etc. (@odinhb, #2895)
* Add named bold colours as options for custom colours. (#2913, #2914)
* Warn when (but not prevent) a SystemExit occurs. (Jared Beck, #2926)
   2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016)
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Could not be committed due to merge conflict:
devel/py-traitlets/distinfo

The following distfiles were unfetchable (note: some may be only fetched
conditionally):

./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
   2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017)
Log message:
devel: Remove SHA1 hashes for distfiles
   2021-01-11 14:05:46 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-rspec-core: update to 3.10.1

### 3.10.1 / 2020-12-27
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.10.0...v3.10.1)

Bug fixes:

* RSpec warning output was missing deprecations from Ruby, these are now included.
  (Jon Rowe, #2811)

### 3.10.0 / 2020-10-30
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.3...v3.10.0)

Enhancements:

* Memoize `RSpec::Core::Formatters::ExceptionPresenter#exception_lines` to \ 
improve performance
  with slow exception messages. (Maxime Lapointe, #2743)
* Add configuration for an error exit code (to disambiguate errored builds from \ 
failed builds
  by exit status). (Dana Sherson, #2749)

# 3.9.3 / 2020-09-30
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.2...v3.9.3)

Bug Fixes:

* Declare `ruby2_keywords` on `method_missing` for other gems. (Jon Rowe, #2731)
* Ensure custom error codes are returned from bisect runs. (Jon Rowe, #2732)
* Ensure `RSpec::Core::Configuration` predicate config methods return booleans.
  (Marc-André Lafortune, #2736)
* Prevent `rspec --bisect` from generating zombie processes while executing
  bisect runs. (Benoit Tigeot, Jon Rowe, #2739)
* Predicates for pending examples, (in `RSpec::Core::Example`, `#pending?`, \ 
`#skipped?` and
  `#pending_fixed?`) now return boolean values rather than truthy values.
  (Marc-André Lafortune, #2756, #2758)
* Exceptions which have a message which cannot be cast to a string will no longer
  cause a crash. (Jon Rowe, #2761)
   2020-05-05 15:05:36 by Takahiro Kambe | Files touched by this commit (2) | Package updated
Log message:
devel/ruby-rspec-core: update to 3.9.2

Update ruby-rspec-core to 3.9.2.

### 3.9.2 / 2020-05-02
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.1...v3.9.2)

Bug Fixes:

* Emit a warning when `around` hook is used with `:context` scope
  (Phil Pirozhkov, #2687)
* Prevent invalid implementations of `Exception#cause` from being treated as a
  valid cause (and causing strange errors) in \ 
`RSpec::Core::Formatters::ExceptionPresenter`.
  (Jon Rowe, #2703)
* Correctly detect patterns when `rspec_opts` is an array in `RSpec::Core::RakeTask`.
  (Marc-André Lafortune, #2704)
* Make `RSpec.clear_examples` reset example counts for example groups. This fixes
  an issue with re-running specs not matching ids. (Agis Anastasopoulos, #2723)