pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ruby-simplecov Update ruby-simplecov to 0.15.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/daab32e7c737
branches:  trunk
changeset: 367392:daab32e7c737
user:      taca <taca%pkgsrc.org@localhost>
date:      Thu Aug 31 15:24:59 2017 +0000

description:
Update ruby-simplecov to 0.15.0.

0.15.0 (2017-08-14) ([changes](https://github.com/colszowka/simplecov/compare/v0.14.1...v0.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)

diffstat:

 devel/ruby-simplecov/Makefile |   8 +++-----
 devel/ruby-simplecov/PLIST    |   7 ++++++-
 devel/ruby-simplecov/distinfo |  10 +++++-----
 3 files changed, 14 insertions(+), 11 deletions(-)

diffs (88 lines):

diff -r b5f7e3349493 -r daab32e7c737 devel/ruby-simplecov/Makefile
--- a/devel/ruby-simplecov/Makefile     Thu Aug 31 15:23:46 2017 +0000
+++ b/devel/ruby-simplecov/Makefile     Thu Aug 31 15:24:59 2017 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.18 2017/07/30 22:32:17 wiz Exp $
+# $NetBSD: Makefile,v 1.19 2017/08/31 15:24:59 taca Exp $
 
-DISTNAME=      simplecov-0.14.1
+DISTNAME=      simplecov-0.15.0
 CATEGORIES=    devel
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/colszowka/simplecov
-COMMENT=       Code coverage for Ruby 1.9
+COMMENT=       Code coverage for Ruby 1.9+
 LICENSE=       mit
 
 DEPENDS+=      ${RUBY_PKGPREFIX}-simplecov-html>=0.10.0<0.11:../../devel/ruby-simplecov-html
@@ -13,7 +13,5 @@
 
 USE_LANGUAGES= # none
 
-RUBY_JSON_REQD=        1.8
-
 .include "../../lang/ruby/gem.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r b5f7e3349493 -r daab32e7c737 devel/ruby-simplecov/PLIST
--- a/devel/ruby-simplecov/PLIST        Thu Aug 31 15:23:46 2017 +0000
+++ b/devel/ruby-simplecov/PLIST        Thu Aug 31 15:24:59 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2017/03/20 12:32:45 taca Exp $
+@comment $NetBSD: PLIST,v 1.10 2017/08/31 15:24:59 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/.gitignore
 ${GEM_LIBDIR}/.rspec
@@ -26,6 +26,7 @@
 ${GEM_LIBDIR}/features/config_project_name.feature
 ${GEM_LIBDIR}/features/config_styles.feature
 ${GEM_LIBDIR}/features/config_tracked_files.feature
+${GEM_LIBDIR}/features/config_tracked_files_relevant_lines.feature
 ${GEM_LIBDIR}/features/cucumber_basic.feature
 ${GEM_LIBDIR}/features/maximum_coverage_drop.feature
 ${GEM_LIBDIR}/features/merging_test_unit_and_rspec.feature
@@ -42,6 +43,7 @@
 ${GEM_LIBDIR}/features/step_definitions/simplecov_steps.rb
 ${GEM_LIBDIR}/features/step_definitions/transformers.rb
 ${GEM_LIBDIR}/features/step_definitions/web_steps.rb
+${GEM_LIBDIR}/features/support/aruba_freedom_patch.rb
 ${GEM_LIBDIR}/features/support/env.rb
 ${GEM_LIBDIR}/features/test_unit_basic.feature
 ${GEM_LIBDIR}/features/test_unit_groups_and_filters_basic.feature
@@ -61,6 +63,7 @@
 ${GEM_LIBDIR}/lib/simplecov/formatter/simple_formatter.rb
 ${GEM_LIBDIR}/lib/simplecov/jruby_fix.rb
 ${GEM_LIBDIR}/lib/simplecov/last_run.rb
+${GEM_LIBDIR}/lib/simplecov/lines_classifier.rb
 ${GEM_LIBDIR}/lib/simplecov/load_global_config.rb
 ${GEM_LIBDIR}/lib/simplecov/no_defaults.rb
 ${GEM_LIBDIR}/lib/simplecov/profiles.rb
@@ -116,11 +119,13 @@
 ${GEM_LIBDIR}/spec/fixtures/utf-8.rb
 ${GEM_LIBDIR}/spec/helper.rb
 ${GEM_LIBDIR}/spec/last_run_spec.rb
+${GEM_LIBDIR}/spec/lines_classifier_spec.rb
 ${GEM_LIBDIR}/spec/multi_formatter_spec.rb
 ${GEM_LIBDIR}/spec/raw_coverage_spec.rb
 ${GEM_LIBDIR}/spec/result_merger_spec.rb
 ${GEM_LIBDIR}/spec/result_spec.rb
 ${GEM_LIBDIR}/spec/return_codes_spec.rb
+${GEM_LIBDIR}/spec/simplecov_spec.rb
 ${GEM_LIBDIR}/spec/source_file_line_spec.rb
 ${GEM_LIBDIR}/spec/source_file_spec.rb
 ${GEM_LIBDIR}/spec/support/fail_rspec_on_ruby_warning.rb
diff -r b5f7e3349493 -r daab32e7c737 devel/ruby-simplecov/distinfo
--- a/devel/ruby-simplecov/distinfo     Thu Aug 31 15:23:46 2017 +0000
+++ b/devel/ruby-simplecov/distinfo     Thu Aug 31 15:24:59 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2017/03/20 12:32:45 taca Exp $
+$NetBSD: distinfo,v 1.15 2017/08/31 15:24:59 taca Exp $
 
-SHA1 (simplecov-0.14.1.gem) = fd22e7ff3aa026491f660a3100770b02c083c890
-RMD160 (simplecov-0.14.1.gem) = e81a3546b17cd506a36e710cbafde0389258617f
-SHA512 (simplecov-0.14.1.gem) = 7b62fef6df1d3b395b03a5444d65430ae645aca7c13e6694f4377b35a82c0b4503e5d53a94512ff06e634a6d81331a8bce31787dba793517ecd3e502220afbaf
-Size (simplecov-0.14.1.gem) = 58880 bytes
+SHA1 (simplecov-0.15.0.gem) = 55f92614414d80dacd694683d743baccce7e2918
+RMD160 (simplecov-0.15.0.gem) = 5b3326ddf25d85dc9ce81e4123cb209faa2079a3
+SHA512 (simplecov-0.15.0.gem) = 7a5e6abd4a220d9609b2db3133cfec9dca4d9a4f7e769b4ef75ca439393d6df0877588c5d733314ebe618f7f38c213119a5f363e2685e6584cde073e6891beb0
+Size (simplecov-0.15.0.gem) = 63488 bytes



Home | Main Index | Thread Index | Old Index