Hello community, here is the log from the commit of package rubygem-sinatra for openSUSE:Factory checked in at 2017-04-11 09:31:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-sinatra (Old) and /work/SRC/openSUSE:Factory/.rubygem-sinatra.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-sinatra" Tue Apr 11 09:31:33 2017 rev:3 rq:456607 version:1.4.8 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-sinatra/rubygem-sinatra.changes 2016-03-01 09:40:41.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-sinatra.new/rubygem-sinatra.changes 2017-04-11 09:31:35.676084058 +0200 @@ -1,0 +2,6 @@ +Mon Jan 30 05:47:50 UTC 2017 - [email protected] + +- updated to version 1.4.8 + see installed CHANGELOG.md + +------------------------------------------------------------------- Old: ---- sinatra-1.4.7.gem New: ---- sinatra-1.4.8.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-sinatra.spec ++++++ --- /var/tmp/diff_new_pack.oPQy1Q/_old 2017-04-11 09:31:37.343848516 +0200 +++ /var/tmp/diff_new_pack.oPQy1Q/_new 2017-04-11 09:31:37.343848516 +0200 @@ -1,7 +1,7 @@ # # spec file for package rubygem-sinatra # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 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-sinatra -Version: 1.4.7 +Version: 1.4.8 Release: 0 %define mod_name sinatra %define mod_full_name %{mod_name}-%{version} ++++++ sinatra-1.4.7.gem -> sinatra-1.4.8.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Gemfile new/Gemfile --- old/Gemfile 2016-01-24 13:26:12.000000000 +0100 +++ new/Gemfile 2017-01-30 04:27:55.000000000 +0100 @@ -10,59 +10,62 @@ source 'https://rubygems.org' unless ENV['QUICK'] gemspec -gem 'rake' +gem 'rake', '~> 10.0' gem 'rack-test', '>= 0.6.2' gem "minitest", "~> 5.0" -# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`. -# Used by the CI. -repos = {'tilt' => "rtomayko/tilt", 'rack' => "rack/rack"} - -%w[tilt rack].each do |lib| - dep = case ENV[lib] - when 'stable', nil then nil - when /(\d+\.)+\d+/ then "~> " + ENV[lib].sub("#{lib}-", '') - else {:github => repos[lib], :branch => dep} - end - gem lib, dep -end - if RUBY_ENGINE == 'jruby' gem 'nokogiri', '!= 1.5.0' gem 'jruby-openssl' gem 'trinidad' end -if RUBY_ENGINE == "ruby" and RUBY_VERSION > '1.9.2' - gem 'less', '~> 2.0' - gem 'therubyracer' - gem 'redcarpet' - gem 'wlang', '>= 2.0.1' - gem 'bluecloth' - gem 'rdiscount' - gem 'RedCloth' - gem 'puma' - gem 'net-http-server' - gem 'yajl-ruby' - gem 'nokogiri' - gem 'thin' - gem 'slim', '~> 2.0' - gem 'coffee-script', '>= 2.0' - gem 'rdoc' - gem 'kramdown' - gem 'maruku' - gem 'creole' - gem 'wikicloth' - gem 'markaby' - gem 'radius' - gem 'asciidoctor' - gem 'liquid' - gem 'stylus' - gem 'rabl' - gem 'builder' - gem 'erubis' - gem 'haml', '>= 3.0' - gem 'sass' +if RUBY_VERSION < '1.9.3' + gem 'activesupport', '~> 3.2' + gem 'i18n', '~> 0.6.0' +else + gem 'activesupport', '~> 4.2' +end + +if RUBY_ENGINE == "ruby" + if RUBY_VERSION > '1.9.2' + gem 'less', '~> 2.0' + gem 'therubyracer' + gem 'redcarpet' + gem 'wlang', '>= 2.0.1' + gem 'bluecloth' + gem 'rdiscount' + gem 'RedCloth' + gem 'puma' + gem 'net-http-server' + gem 'yajl-ruby' + gem 'thin' + gem 'slim', '~> 2.0' + gem 'coffee-script', '>= 2.0' + gem 'rdoc' + gem 'kramdown' + gem 'maruku' + gem 'creole' + gem 'wikicloth' + gem 'markaby' + gem 'radius' + gem 'asciidoctor' + gem 'liquid', '~> 3.0' + gem 'stylus' + gem 'rabl' + gem 'builder' + gem 'erubis' + gem 'haml', '>= 3.0' + gem 'sass' + + if RUBY_VERSION < '2.1.0' + gem 'nokogiri', '~> 1.6.8' + else + gem 'nokogiri', '~> 1.7.0' + end + else + gem 'nokogiri', '~> 1.5.11' + end end if RUBY_ENGINE == "rbx" @@ -72,5 +75,5 @@ end platforms :ruby_18, :jruby do - gem 'json' unless RUBY_VERSION > '1.9' # is there a jruby but 1.8 only selector? + gem 'json', '~> 1.8' unless RUBY_VERSION > '1.9' # is there a jruby but 1.8 only selector? end Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sinatra/base.rb new/lib/sinatra/base.rb --- old/lib/sinatra/base.rb 2016-01-24 13:26:13.000000000 +0100 +++ new/lib/sinatra/base.rb 2017-01-30 04:27:55.000000000 +0100 @@ -1065,8 +1065,8 @@ # Run the block with 'throw :halt' support and apply result to the response. def invoke res = catch(:halt) { yield } - res = [res] if Fixnum === res or String === res - if Array === res and Fixnum === res.first + res = [res] if Integer === res or String === res + if Array === res and Integer === res.first res = res.dup status(res.shift) body(res.pop) @@ -1223,7 +1223,7 @@ case value when Proc getter = value - when Symbol, Fixnum, FalseClass, TrueClass, NilClass + when Symbol, Integer, FalseClass, TrueClass, NilClass getter = value.inspect when Hash setter = proc do |val| diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sinatra/version.rb new/lib/sinatra/version.rb --- old/lib/sinatra/version.rb 2016-01-24 13:26:13.000000000 +0100 +++ new/lib/sinatra/version.rb 2017-01-30 04:27:55.000000000 +0100 @@ -1,3 +1,3 @@ module Sinatra - VERSION = '1.4.7' + VERSION = '1.4.8' end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2016-01-24 13:26:12.000000000 +0100 +++ new/metadata 2017-01-30 04:27:55.000000000 +0100 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: sinatra version: !ruby/object:Gem::Version - version: 1.4.7 + version: 1.4.8 platform: ruby authors: - Blake Mizerany @@ -11,7 +11,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2016-01-24 00:00:00.000000000 Z +date: 2017-01-30 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rack @@ -236,7 +236,7 @@ version: '0' requirements: [] rubyforge_project: -rubygems_version: 2.5.1 +rubygems_version: 2.6.8 signing_key: specification_version: 4 summary: Classy web-development dressed in a DSL
