Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ruby2.5-rubygem-simplecov-0.15.1-lp152.3.2 RPM for aarch64

From OpenSuSE Ports Leap 15.2 for aarch64

Name: ruby2.5-rubygem-simplecov Distribution: openSUSE Leap 15.2
Version: 0.15.1 Vendor: openSUSE
Release: lp152.3.2 Build date: Thu Nov 7 23:14:56 2019
Group: Development/Languages/Ruby Build host: obs-arm-7
Size: 231604 Source RPM: rubygem-simplecov-0.15.1-lp152.3.2.src.rpm
Packager: https://bugs.opensuse.org
Url: http://github.com/colszowka/simplecov
Summary: Code coverage for Ruby 1.9+ with a powerful configuration library
Code coverage for Ruby 1.9+ with a powerful configuration library and
automatic merging of coverage across test suites.

Provides

Requires

License

MIT

Changelog

* Tue Sep 12 2017 dkang@suse.com
  - updated to version 0.15.1
    [#]# Bugfixes
    * Filter directories outside SimpleCov.root that have it as a prefix. See [#617](https://github.com/colszowka/simplecov/pull/617) (thanks @jenseng)
    * Fix standard rails profile rails filter (didn't work). See [#618](https://github.com/colszowka/simplecov/pull/618) (thanks @jenseng again!)
* Mon Aug 14 2017 mschnitzer@suse.com
  - updated to version 0.15.0
    [#]# Enhancements
    * Ability to use regex filters for removing files from the output. See [#589](https://github.com/colszowka/simplecov/pull/589) (thanks @jsteel)
    [#]# Bugfixes
    * Fix merging race condition when running tests in parallel and merging them. See [#570](https://github.com/colszowka/simplecov/pull/570) (thanks @jenseng)
    * Fix relevant lines for unloaded files - comments, skipped code etc. are correctly classigied as irrelevant. See [#605](https://github.com/colszowka/simplecov/pull/605) (thanks @odlp)
    * Allow using simplecov with frozen-string-literals enabled. See [#590](https://github.com/colszowka/simplecov/pull/590) (thanks @pat)
    * Make sure Array Filter can use all other filter types. See [#589](https://github.com/colszowka/simplecov/pull/589) (thanks @jsteel)
    * Make sure file names use `Simplecov.root` as base avoiding using full absolute project paths. See [#589](https://github.com/colszowka/simplecov/pull/589) (thanks @jsteel)
* Sun Mar 19 2017 coolo@suse.com
  - updated to version 0.14.1
    see installed CHANGELOG.md
    0.14.1 2017-03-18 ([changes](https://github.com/colszowka/simplecov/compare/v0.14.0...v0.14.1))
    ========
    [#]# Bugfixes
    * Files that were skipped as a whole/had no relevant coverage could lead to Float errors. See [#564](https://github.com/colszowka/simplecov/pull/564) (thanks to @stevehanson for the report in [#563](https://github.com/colszowka/simplecov/issues/563))
* Thu Mar 16 2017 coolo@suse.com
  - updated to version 0.14.0
    see installed CHANGELOG.md
* Thu Jan 26 2017 coolo@suse.com
  - updated to version 0.13.0
    see installed CHANGELOG.md
* Mon Jul 04 2016 coolo@suse.com
  - updated to version 0.12.0
    see installed CHANGELOG.md
* Thu Feb 04 2016 coolo@suse.com
  - updated to version 0.11.2
    see installed CHANGELOG.md
* Thu Dec 03 2015 coolo@suse.com
  - updated to version 0.11.1
    see installed CHANGELOG.md
* Tue Dec 01 2015 coolo@suse.com
  - updated to version 0.11.0
    see installed CHANGELOG.md
* Thu Apr 23 2015 coolo@suse.com
  - updated to version 0.10.0
    see installed CHANGELOG.md
* Thu Feb 19 2015 coolo@suse.com
  - updated to version 0.9.2
* Wed Oct 15 2014 coolo@suse.com
  - updated to version 0.9.1
    [#]# Bugfixes
    * In 0.9.0, we introduced a regression that made SimpleCov no-op mode fail on Ruby 1.8, while
      dropping 1.8 support altogether is announced only for v1.0. This has been fixed.
      See [#333](https://github.com/colszowka/simplecov/issues/333) (thanks (@sferik)
    0.9.0, 2014-07-17 ([changes](https://github.com/colszowka/simplecov/compare/v0.8.2...v0.9.0))
    ====================
    * *A warm welcome and big thank you to the new contributors [@xaviershay](https://github.com/xaviershay), [@sferik](https://github.com/sferik) and especially [@bf4](https://github.com/bf4) for tackling a whole lot of issues and pull requests for this release!**
    [#]# Enhancements
    * New interface to specify multiple formatters.
      See [#317](https://github.com/colszowka/simplecov/pull/317) (thanks @sferik)
    * Document in the README how to exclude code from coverage reports,
      and that the feature shouldn't be abused for skipping untested
      private code.
      See [#304](https://github.com/colszowka/simplecov/issues/304)
    * Clarify Ruby version support.
      See [#279](https://github.com/colszowka/simplecov/pull/279) (thanks @deivid-rodriguez)
    [#]# Bugfixes
    * Ensure calculations return Floats, not Fixnum or Rational. Fixes segfaults with mathn.
      See [#245](https://github.com/colszowka/simplecov/pull/245) (thanks to @bf4)
    * Using `Kernel.exit` instead of exit to avoid uncaught throw :IRB_EXIT when
      exiting irb sessions.
      See [#287](https://github.com/colszowka/simplecov/pull/287) (thanks @wless1)
      See [#285](https://github.com/colszowka/simplecov/issues/285)
    * Does not look for .simplecov in ~/ when $HOME is not set.
      See [#311](https://github.com/colszowka/simplecov/pull/311) (thanks @lasseebert)
    * Exit with code only if it's Numeric > 0.
      See [#302](https://github.com/colszowka/simplecov/pull/303)(thanks @hajder)
    * Make default filter case insensitive.
      See [#280](https://github.com/colszowka/simplecov/pull/280) (thanks @ryanatball)
    * Improve regexp that matches functional tests.
      See [#276](https://github.com/colszowka/simplecov/pull/276) (thanks @sferik)
    * Fix TravisCI [#272](https://github.com/colszowka/simplecov/pull/272) [#278](https://github.com/colszowka/simplecov/pull/278), [#302](https://github.com/colszowka/simplecov/pull/302)
    * Fix global config load.
      See [#311](https://github.com/colszowka/simplecov/pull/311) (thanks @lasseebert)
* Mon Oct 13 2014 adrian@suse.de
  - adapt to new rubygem packaging style

Files

/usr/lib64/ruby/gems/2.5.0/build_info
/usr/lib64/ruby/gems/2.5.0/cache/simplecov-0.15.1.gem
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/.gitignore
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/.rspec
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/.rubocop.yml
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/.travis.yml
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/.yardopts
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/CHANGELOG.md
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/CONTRIBUTING.md
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/Gemfile
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/MIT-LICENSE
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/README.md
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/Rakefile
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/cucumber.yml
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/doc
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/doc/alternate-formatters.md
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/doc/commercial-services.md
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/doc/editor-integration.md
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_autoload.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_command_name.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_coverage_dir.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_deactivate_merging.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_formatters.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_merge_timeout.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_nocov_token.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_profiles.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_project_name.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_styles.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_tracked_files.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/config_tracked_files_relevant_lines.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/cucumber_basic.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/maximum_coverage_drop.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/merging_test_unit_and_rspec.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/minimum_coverage.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/refuse_coverage_drop.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/rspec_basic.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/rspec_fails_on_initialization.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/rspec_groups_and_filters_basic.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/rspec_groups_and_filters_complex.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/rspec_groups_using_filter_class.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/rspec_without_simplecov.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/skipping_code_blocks_manually.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/step_definitions
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/step_definitions/html_steps.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/step_definitions/simplecov_steps.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/step_definitions/transformers.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/step_definitions/web_steps.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/support
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/support/aruba_freedom_patch.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/support/env.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/test_unit_basic.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/test_unit_groups_and_filters_basic.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/test_unit_groups_and_filters_complex.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/test_unit_groups_using_filter_class.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/test_unit_without_simplecov.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/features/unicode_compatiblity.feature
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/command_guesser.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/configuration.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/defaults.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/exit_codes.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/file_list.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/filter.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/formatter
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/formatter.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/formatter/multi_formatter.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/formatter/simple_formatter.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/jruby_fix.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/last_run.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/lines_classifier.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/load_global_config.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/no_defaults.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/profiles.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/railtie.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/railties
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/railties/tasks.rake
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/raw_coverage.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/result.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/result_merger.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/source_file.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/lib/simplecov/version.rb
/usr/lib64/ruby/gems/2.5.0/gems/simplecov-0.15.1/simplecov.gemspec
/usr/lib64/ruby/gems/2.5.0/specifications/simplecov-0.15.1.gemspec
/usr/share/doc/packages/ruby2.5-rubygem-simplecov
/usr/share/doc/packages/ruby2.5-rubygem-simplecov/CHANGELOG.md
/usr/share/doc/packages/ruby2.5-rubygem-simplecov/MIT-LICENSE
/usr/share/doc/packages/ruby2.5-rubygem-simplecov/README.md


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:09:08 2024