Hello community, here is the log from the commit of package rubygem-diffy for openSUSE:Factory checked in at 2018-07-18 22:49:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-diffy (Old) and /work/SRC/openSUSE:Factory/.rubygem-diffy.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-diffy" Wed Jul 18 22:49:12 2018 rev:4 rq:620997 version:3.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-diffy/rubygem-diffy.changes 2017-03-13 15:35:16.115140078 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-diffy.new/rubygem-diffy.changes 2018-07-18 22:49:15.799891292 +0200 @@ -1,0 +2,9 @@ +Sat May 19 22:02:55 UTC 2018 - [email protected] + +- updated to version 3.2.1 + see installed CHANGELOG + + == 3.2.1 == + Fix default options on alpine linux. Thanks @evgen! + +------------------------------------------------------------------- Old: ---- diffy-3.2.0.gem New: ---- diffy-3.2.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-diffy.spec ++++++ --- /var/tmp/diff_new_pack.eKX1uE/_old 2018-07-18 22:49:16.383889356 +0200 +++ /var/tmp/diff_new_pack.eKX1uE/_new 2018-07-18 22:49:16.387889342 +0200 @@ -1,7 +1,7 @@ # # spec file for package rubygem-diffy # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,7 +24,7 @@ # Name: rubygem-diffy -Version: 3.2.0 +Version: 3.2.1 Release: 0 %define mod_name diffy %define mod_full_name %{mod_name}-%{version} @@ -33,7 +33,7 @@ BuildRequires: %{ruby} BuildRequires: ruby-macros >= 5 Url: http://github.com/samg/diffy -Source: http://rubygems.org/gems/%{mod_full_name}.gem +Source: https://rubygems.org/gems/%{mod_full_name}.gem Source1: gem2rpm.yml Summary: A convenient way to diff string in ruby License: MIT ++++++ diffy-3.2.0.gem -> diffy-3.2.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.travis.yml new/.travis.yml --- old/.travis.yml 2017-03-12 00:35:24.000000000 +0100 +++ new/.travis.yml 2018-05-19 23:29:41.000000000 +0200 @@ -1,5 +1,6 @@ language: ruby sudo: false +cache: bundler rvm: - 1.8.7 - 1.9.3-p551 @@ -8,12 +9,7 @@ - 2.2.6 - 2.3.3 - 2.4.0 - - jruby-9.1.5.0 - - rbx - - rbx-2 + - jruby-9.1.12.0 matrix: allow_failures: - rvm: 1.8.7 - - rvm: jruby-9.1.5.0 - - rvm: rbx - - rvm: rbx-2 \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG new/CHANGELOG --- old/CHANGELOG 2017-03-12 00:35:24.000000000 +0100 +++ new/CHANGELOG 2018-05-19 23:29:41.000000000 +0200 @@ -1,3 +1,5 @@ +== 3.2.1 == +Fix default options on alpine linux. Thanks @evgen! == 3.1.0 == Side by side diffs. Thanks Runar Skaare Tveiten! diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CONTRIBUTORS new/CONTRIBUTORS --- old/CONTRIBUTORS 2017-03-12 00:35:24.000000000 +0100 +++ new/CONTRIBUTORS 2018-05-19 23:29:41.000000000 +0200 @@ -11,3 +11,4 @@ * JasonBarnabe * Skye Shaw * Abinoam P. Marques Jr. +* evgen diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Gemfile new/Gemfile --- old/Gemfile 2017-03-12 00:35:24.000000000 +0100 +++ new/Gemfile 2018-05-19 23:29:41.000000000 +0200 @@ -4,4 +4,4 @@ gem 'rubysl', '~> 2.0' end -gemspec \ No newline at end of file +gemspec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2017-03-12 00:35:24.000000000 +0100 +++ new/README.md 2018-05-19 23:29:41.000000000 +0200 @@ -24,11 +24,11 @@ Installation ------------ -###on Unix +### on Unix gem install diffy -###on Windows: +### on Windows: 1. Ensure that you have a working `diff` on your machine and in your search path. @@ -213,7 +213,7 @@ ### Full Diff Output By default Diffy removes the superfluous diff output. This is because its -default is to show the complete diff'ed file (`diff -U 10000` is the default). +default is to show the complete diff'ed file (`diff -U10000` is the default). Diffy does support full output, just use the `:include_diff_info => true` option when initializing: @@ -270,7 +270,7 @@ ### Overriding the command line options passed to diff. You can use the `:diff` option to override the command line options that are -passed to unix diff. They default to `-U 10000`. This option will noop if +passed to unix diff. They default to `-U10000`. This option will noop if combined with the `:context` option. >> puts Diffy::Diff.new(" foo\nbar\n", "foo\nbar\n", :diff => "-w") @@ -285,9 +285,9 @@ Options passed to `Diffy::Diff.new` will be merged into the default options. >> Diffy::Diff.default_options - => {:diff=>"-U 10000", :source=>"strings", :include_diff_info=>false, :include_plus_and_minus_in_html=>false} + => {:diff=>"-U10000", :source=>"strings", :include_diff_info=>false, :include_plus_and_minus_in_html=>false} >> Diffy::Diff.default_options.merge!(:source => 'files') - => {:diff=>"-U 10000", :source=>"files", :include_diff_info=>false, :include_plus_and_minus_in_html=>false} + => {:diff=>"-U10000", :source=>"files", :include_diff_info=>false, :include_plus_and_minus_in_html=>false} Custom Formats Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/diffy.gemspec new/diffy.gemspec --- old/diffy.gemspec 2017-03-12 00:35:24.000000000 +0100 +++ new/diffy.gemspec 2018-05-19 23:29:41.000000000 +0200 @@ -20,4 +20,4 @@ spec.add_development_dependency "rake" spec.add_development_dependency "rspec" -end \ No newline at end of file +end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/diffy/diff.rb new/lib/diffy/diff.rb --- old/lib/diffy/diff.rb 2017-03-12 00:35:24.000000000 +0100 +++ new/lib/diffy/diff.rb 2018-05-19 23:29:41.000000000 +0200 @@ -1,7 +1,7 @@ module Diffy class Diff ORIGINAL_DEFAULT_OPTIONS = { - :diff => '-U 10000', + :diff => '-U10000', :source => 'strings', :include_diff_info => false, :include_plus_and_minus_in_html => false, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/diffy/format.rb new/lib/diffy/format.rb --- old/lib/diffy/format.rb 2017-03-12 00:35:24.000000000 +0100 +++ new/lib/diffy/format.rb 2018-05-19 23:29:41.000000000 +0200 @@ -3,7 +3,7 @@ # ANSI color output suitable for terminal output def color map do |line| - case line + case line when /^(---|\+\+\+|\\\\)/ "\033[90m#{line.chomp}\033[0m" when /^\+/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/diffy/version.rb new/lib/diffy/version.rb --- old/lib/diffy/version.rb 2017-03-12 00:35:24.000000000 +0100 +++ new/lib/diffy/version.rb 2018-05-19 23:29:41.000000000 +0200 @@ -1,3 +1,3 @@ module Diffy - VERSION = '3.2.0' + VERSION = '3.2.1' end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2017-03-12 00:35:24.000000000 +0100 +++ new/metadata 2018-05-19 23:29:41.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: diffy version: !ruby/object:Gem::Version - version: 3.2.0 + version: 3.2.1 platform: ruby authors: - Sam Goldstein autorequire: bindir: bin cert_chain: [] -date: 2017-03-11 00:00:00.000000000 Z +date: 2018-05-19 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rake @@ -84,7 +84,7 @@ version: '0' requirements: [] rubyforge_project: -rubygems_version: 2.5.1 +rubygems_version: 2.6.11 signing_key: specification_version: 4 summary: A convenient way to diff string in ruby diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/spec/diffy_spec.rb new/spec/diffy_spec.rb --- old/spec/diffy_spec.rb 2017-03-12 00:35:24.000000000 +0100 +++ new/spec/diffy_spec.rb 2018-05-19 23:29:41.000000000 +0200 @@ -590,7 +590,7 @@ describe Diffy::SplitDiff do before do - ::Diffy::Diff.default_options.merge!(:diff => '-U 10000') + ::Diffy::Diff.default_options.merge!(:diff => '-U10000') end it "should fail with invalid format" do
