summaryrefslogtreecommitdiff
path: root/devel/ruby-simplecov
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2015-06-07 10:14:03 +0000
committertaca <taca@pkgsrc.org>2015-06-07 10:14:03 +0000
commitb2171ae4e63b342cd3f9df21e808b840ac87ed25 (patch)
tree9df8b9190596db6d7f2d83e32c5a5c7a755371d0 /devel/ruby-simplecov
parenta603c092d8f3b85d81c44773c166d5c0c3b6a56f (diff)
downloadpkgsrc-b2171ae4e63b342cd3f9df21e808b840ac87ed25.tar.gz
Update ruby-simplecov to 0.10.0.
0.10.0 2015-04-18 (changes) Enhancements * Add writeup about using with Spring to README. See #341 (thanks @swrobel and @onebree) * Add support to pass in an Array when creating filter groups (original PR #104) * Filter /vendor/bundle by default. See #331 (thanks @andyw8) * Add some helpful singleton methods to the version string. * Allow array to be passed in a filter. See 375 (thanks @JanStevens) * Enforce consistent code formatting with RuboCop. Bugfixes * Fix order dependencies in unit tests. See #376 (thanks @hugopeixoto) * Only run the at_exit behaviors if the current PID matches the PID that called SimpleCov.start. See #377 (thanks @coderanger)
Diffstat (limited to 'devel/ruby-simplecov')
-rw-r--r--devel/ruby-simplecov/Makefile11
-rw-r--r--devel/ruby-simplecov/PLIST8
-rw-r--r--devel/ruby-simplecov/distinfo8
3 files changed, 16 insertions, 11 deletions
diff --git a/devel/ruby-simplecov/Makefile b/devel/ruby-simplecov/Makefile
index c22aac03e70..521ce89d1c5 100644
--- a/devel/ruby-simplecov/Makefile
+++ b/devel/ruby-simplecov/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2015/03/13 14:00:26 taca Exp $
+# $NetBSD: Makefile,v 1.12 2015/06/07 10:14:03 taca Exp $
-DISTNAME= simplecov-0.9.2
+DISTNAME= simplecov-0.10.0
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
@@ -8,11 +8,12 @@ HOMEPAGE= http://github.com/colszowka/simplecov
COMMENT= Code coverage for Ruby 1.9
LICENSE= mit
-DEPENDS+= ${RUBY_PKGPREFIX}-multi_json>=1.0<2:../../textproc/ruby-multi_json
-DEPENDS+= ${RUBY_PKGPREFIX}-simplecov-html>=0.9.0<0.10:../../devel/ruby-simplecov-html
+DEPENDS+= ${RUBY_PKGPREFIX}-simplecov-html>=0.10.0<0.11:../../devel/ruby-simplecov-html
DEPENDS+= ${RUBY_PKGPREFIX}-docile>=1.1.0<1.2:../../devel/ruby-docile
-RUBY_VERSION_SUPPORTED= 21 200 193
+USE_LANGUAGES= # none
+
+RUBY_JSON_REQD= 1.8
.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/ruby-simplecov/PLIST b/devel/ruby-simplecov/PLIST
index bfb4163ece6..b5f59d676af 100644
--- a/devel/ruby-simplecov/PLIST
+++ b/devel/ruby-simplecov/PLIST
@@ -1,7 +1,8 @@
-@comment $NetBSD: PLIST,v 1.5 2015/02/02 15:07:34 taca Exp $
+@comment $NetBSD: PLIST,v 1.6 2015/06/07 10:14:03 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.gitignore
${GEM_LIBDIR}/.rspec
+${GEM_LIBDIR}/.rubocop.yml
${GEM_LIBDIR}/.travis.yml
${GEM_LIBDIR}/.yardopts
${GEM_LIBDIR}/CHANGELOG.md
@@ -11,6 +12,9 @@ ${GEM_LIBDIR}/MIT-LICENSE
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/cucumber.yml
+${GEM_LIBDIR}/doc/alternate-formatters.md
+${GEM_LIBDIR}/doc/commercial-services.md
+${GEM_LIBDIR}/doc/editor-integration.md
${GEM_LIBDIR}/features/config_autoload.feature
${GEM_LIBDIR}/features/config_command_name.feature
${GEM_LIBDIR}/features/config_coverage_dir.feature
@@ -55,7 +59,6 @@ ${GEM_LIBDIR}/lib/simplecov/formatter.rb
${GEM_LIBDIR}/lib/simplecov/formatter/multi_formatter.rb
${GEM_LIBDIR}/lib/simplecov/formatter/simple_formatter.rb
${GEM_LIBDIR}/lib/simplecov/jruby_fix.rb
-${GEM_LIBDIR}/lib/simplecov/json.rb
${GEM_LIBDIR}/lib/simplecov/last_run.rb
${GEM_LIBDIR}/lib/simplecov/merge_helpers.rb
${GEM_LIBDIR}/lib/simplecov/no_defaults.rb
@@ -78,6 +81,7 @@ ${GEM_LIBDIR}/test/faked_project/lib/faked_project/framework_specific.rb
${GEM_LIBDIR}/test/faked_project/lib/faked_project/meta_magic.rb
${GEM_LIBDIR}/test/faked_project/lib/faked_project/some_class.rb
${GEM_LIBDIR}/test/faked_project/spec/faked_spec.rb
+${GEM_LIBDIR}/test/faked_project/spec/forking_spec.rb
${GEM_LIBDIR}/test/faked_project/spec/meta_magic_spec.rb
${GEM_LIBDIR}/test/faked_project/spec/some_class_spec.rb
${GEM_LIBDIR}/test/faked_project/spec/spec_helper.rb
diff --git a/devel/ruby-simplecov/distinfo b/devel/ruby-simplecov/distinfo
index f4cbdec1155..d21797f8593 100644
--- a/devel/ruby-simplecov/distinfo
+++ b/devel/ruby-simplecov/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2015/03/13 13:58:13 taca Exp $
+$NetBSD: distinfo,v 1.8 2015/06/07 10:14:03 taca Exp $
-SHA1 (simplecov-0.9.2.gem) = 4c847aea6667064f3bb2febaf4e1052b9f174589
-RMD160 (simplecov-0.9.2.gem) = 65ebc5e32a89917922d9b1e399a1aef0c667f5a5
-Size (simplecov-0.9.2.gem) = 49664 bytes
+SHA1 (simplecov-0.10.0.gem) = 35f6c82c914fb414b7a7092e1add41f18b4d8f58
+RMD160 (simplecov-0.10.0.gem) = 4a23e5530f99915d52a7f95a343cab4dbe425232
+Size (simplecov-0.10.0.gem) = 52736 bytes