Hello community, here is the log from the commit of package rubygem-js-routes for openSUSE:Factory checked in at 2016-08-25 09:54:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-js-routes (Old) and /work/SRC/openSUSE:Factory/.rubygem-js-routes.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-js-routes" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-js-routes/rubygem-js-routes.changes 2016-08-09 22:15:05.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-js-routes.new/rubygem-js-routes.changes 2016-08-25 09:54:58.000000000 +0200 @@ -1,0 +2,10 @@ +Thu Aug 11 04:36:53 UTC 2016 - [email protected] + +- updated to version 1.2.9 + see installed CHANGELOG.md + + ## v1.2.9 + + * Fixed deprecation varning on Sprockets 3.7 + +------------------------------------------------------------------- Old: ---- js-routes-1.2.8.gem New: ---- js-routes-1.2.9.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-js-routes.spec ++++++ --- /var/tmp/diff_new_pack.uVwGk9/_old 2016-08-25 09:54:59.000000000 +0200 +++ /var/tmp/diff_new_pack.uVwGk9/_new 2016-08-25 09:54:59.000000000 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-js-routes -Version: 1.2.8 +Version: 1.2.9 Release: 0 %define mod_name js-routes %define mod_full_name %{mod_name}-%{version} ++++++ js-routes-1.2.8.gem -> js-routes-1.2.9.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md --- old/CHANGELOG.md 2016-08-05 12:52:33.000000000 +0200 +++ new/CHANGELOG.md 2016-08-10 15:02:17.000000000 +0200 @@ -1,5 +1,9 @@ ## master +## v1.2.9 + +* Fixed deprecation varning on Sprockets 3.7 + ## v1.2.8 * Bugfix warning on Sprockets 4.0 #202 Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/js_routes/engine.rb new/lib/js_routes/engine.rb --- old/lib/js_routes/engine.rb 2016-08-05 12:52:33.000000000 +0200 +++ new/lib/js_routes/engine.rb 2016-08-10 15:02:17.000000000 +0200 @@ -30,13 +30,13 @@ class Engine < ::Rails::Engine require 'sprockets/version' v2 = Gem::Dependency.new('', ' ~> 2') - v3 = Gem::Dependency.new('', ' ~> 3') - v4 = Gem::Dependency.new('', ' >= 4') - sprockets_version = Gem::Version.new(Sprockets::VERSION).release + v3 = Gem::Dependency.new('', ' >= 3' ,' < 3.7') + v37 = Gem::Dependency.new('', ' >= 3.7') + sprockets_version = Gem::Version.new(::Sprockets::VERSION).release initializer_args = case sprockets_version when -> (v) { v2.match?('', v) } { after: "sprockets.environment" } - when -> (v) { v3.match?('', v) || v4.match?('', v) } + when -> (v) { v3.match?('', v) || v37.match?('', v) } { after: :engines_blank_point, before: :finisher_hook } else raise StandardError, "Sprockets version #{sprockets_version} is not supported" @@ -60,10 +60,10 @@ data end end - when -> (v) { v4.match?('', v) } + when -> (v) { v37.match?('', v) } Sprockets.register_preprocessor 'application/javascript', JsRoutesSprocketsExtension else raise StandardError, "Sprockets version #{sprockets_version} is not supported" end end -end \ No newline at end of file +end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/js_routes/version.rb new/lib/js_routes/version.rb --- old/lib/js_routes/version.rb 2016-08-05 12:52:33.000000000 +0200 +++ new/lib/js_routes/version.rb 2016-08-10 15:02:17.000000000 +0200 @@ -1,3 +1,3 @@ class JsRoutes - VERSION = "1.2.8" + VERSION = "1.2.9" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2016-08-05 12:52:33.000000000 +0200 +++ new/metadata 2016-08-10 15:02:17.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: js-routes version: !ruby/object:Gem::Version - version: 1.2.8 + version: 1.2.9 platform: ruby authors: - Bogdan Gusiev autorequire: bindir: bin cert_chain: [] -date: 2016-08-05 00:00:00.000000000 Z +date: 2016-08-10 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: railties
