Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-simplecov_json_formatter for openSUSE:Factory checked in at 2021-07-02 13:27:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-simplecov_json_formatter (Old) and /work/SRC/openSUSE:Factory/.rubygem-simplecov_json_formatter.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-simplecov_json_formatter" Fri Jul 2 13:27:51 2021 rev:2 rq:903540 version:0.1.3 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-simplecov_json_formatter/rubygem-simplecov_json_formatter.changes 2021-01-21 21:56:46.149844820 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-simplecov_json_formatter.new.2625/rubygem-simplecov_json_formatter.changes 2021-07-02 13:28:52.204107446 +0200 @@ -1,0 +2,6 @@ +Thu Jun 24 18:00:54 UTC 2021 - Stephan Kulow <co...@suse.com> + +updated to version 0.1.3 + no changelog found + +------------------------------------------------------------------- Old: ---- simplecov_json_formatter-0.1.2.gem New: ---- simplecov_json_formatter-0.1.3.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-simplecov_json_formatter.spec ++++++ --- /var/tmp/diff_new_pack.bZfVeF/_old 2021-07-02 13:28:52.616104249 +0200 +++ /var/tmp/diff_new_pack.bZfVeF/_new 2021-07-02 13:28:52.620104218 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-simplecov_json_formatter -Version: 0.1.2 +Version: 0.1.3 Release: 0 %define mod_name simplecov_json_formatter %define mod_full_name %{mod_name}-%{version} @@ -48,7 +48,7 @@ %install %gem_install \ - --doc-files="README.md" \ + --doc-files="CHANGELOG.md README.md" \ -f %gem_packages ++++++ simplecov_json_formatter-0.1.2.gem -> simplecov_json_formatter-0.1.3.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 1970-01-01 01:00:00.000000000 +0100 +++ new/CHANGELOG.md 2021-05-03 01:59:37.000000000 +0200 @@ -0,0 +1,7 @@ +0.1.3 (2021-05-02) +========== + +## Bugfixes +* avoid emitting warnings when ruby is run with -w [#1](https://github.com/codeclimate-community/simplecov_json_formatter/pull/1) @flavorjones + + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2020-08-31 19:50:23.000000000 +0200 +++ new/README.md 2021-05-03 01:59:37.000000000 +0200 @@ -15,7 +15,7 @@ ## Development -We encourage you to use docker for common operations like running tests, or debugging your code. Running `make sh` will run a new container instance based on the `Dockerfile` provided at root, finally a shell prompt will be displayed on your terminal. Also, syncronization with your local files will be already set. +We encourage you to use docker for common operations like running tests, or debugging your code. Running `make sh` will start a new container instance based on the `Dockerfile` provided at root, finally a shell prompt will be displayed on your terminal. Also, syncronization with your local files will be already set. ### Tests `make test` will trigger the excution of both running tests and running rubocop as linter, by simply running `rake`, this actions will be run inside a new container but using your local files. @@ -25,4 +25,4 @@ ## Copyright -See License ? +See [License](https://github.com/codeclimate-community/simplecov_json_formatter/blob/master/LICENSE) Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/simplecov_json_formatter/source_file_formatter.rb new/lib/simplecov_json_formatter/source_file_formatter.rb --- old/lib/simplecov_json_formatter/source_file_formatter.rb 2020-08-31 19:50:23.000000000 +0200 +++ new/lib/simplecov_json_formatter/source_file_formatter.rb 2021-05-03 01:59:37.000000000 +0200 @@ -4,6 +4,7 @@ class SourceFileFormatter def initialize(source_file) @source_file = source_file + @line_coverage = nil end def format @@ -17,7 +18,7 @@ private def line_coverage - @line_coverage || { + @line_coverage ||= { lines: lines } end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/simplecov_json_formatter/version.rb new/lib/simplecov_json_formatter/version.rb --- old/lib/simplecov_json_formatter/version.rb 2020-08-31 19:50:23.000000000 +0200 +++ new/lib/simplecov_json_formatter/version.rb 2021-05-03 01:59:37.000000000 +0200 @@ -1,5 +1,5 @@ # frozen_string_literal: true module SimpleCovJSONFormatter - VERSION = '0.1.2' + VERSION = '0.1.3' end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-08-31 19:50:23.000000000 +0200 +++ new/metadata 2021-05-03 01:59:37.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: simplecov_json_formatter version: !ruby/object:Gem::Version - version: 0.1.2 + version: 0.1.3 platform: ruby authors: - Federico Moya -autorequire: +autorequire: bindir: bin cert_chain: [] -date: 2020-08-31 00:00:00.000000000 Z +date: 2021-05-02 00:00:00.000000000 Z dependencies: [] description: JSON formatter for SimpleCov email: @@ -17,6 +17,7 @@ extensions: [] extra_rdoc_files: [] files: +- CHANGELOG.md - README.md - lib/simplecov_json_formatter.rb - lib/simplecov_json_formatter/result_exporter.rb @@ -27,7 +28,7 @@ licenses: - MIT metadata: {} -post_install_message: +post_install_message: rdoc_options: [] require_paths: - lib @@ -42,8 +43,8 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.0.8 -signing_key: +rubygems_version: 3.0.3 +signing_key: specification_version: 4 summary: JSON formatter for SimpleCov test_files: []