Hello community,

here is the log from the commit of package rubygem-arel for openSUSE:Factory 
checked in at 2015-08-05 06:50:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-arel (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-arel.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-arel"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-arel/rubygem-arel.changes        
2015-02-16 21:09:24.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-arel.new/rubygem-arel.changes   
2015-08-05 06:50:25.000000000 +0200
@@ -1,0 +2,24 @@
+Wed Jul 15 04:28:43 UTC 2015 - [email protected]
+
+- updated to version 6.0.2
+ see installed History.txt
+
+  === 6.0.2 / 2014-07-11
+  
+  * Bug fixes
+  
+    * Fix file permission problem on the gem package
+
+-------------------------------------------------------------------
+Sat Jul 11 04:28:39 UTC 2015 - [email protected]
+
+- updated to version 6.0.1
+ see installed History.txt
+
+  === 6.0.1 / 2014-07-10
+  
+  * Bug fixes
+  
+    * Stop quoting LIMIT values.
+
+-------------------------------------------------------------------

Old:
----
  arel-6.0.0.gem

New:
----
  arel-6.0.2.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-arel.spec ++++++
--- /var/tmp/diff_new_pack.sB504q/_old  2015-08-05 06:50:26.000000000 +0200
+++ /var/tmp/diff_new_pack.sB504q/_new  2015-08-05 06:50:26.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-arel
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,15 +24,15 @@
 #
 
 Name:           rubygem-arel
-Version:        6.0.0
+Version:        6.0.2
 Release:        0
 %define mod_name arel
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:            https://github.com/rails/arel
 Source:         http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        gem2rpm.yml
@@ -56,7 +56,7 @@
 
 %install
 %gem_install \
-  --doc-files="History.txt MIT-LICENSE.txt" \
+  --doc-files="History.txt MIT-LICENSE.txt README.markdown" \
   -f
 
 %gem_packages

++++++ arel-6.0.0.gem -> arel-6.0.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.txt new/History.txt
--- old/History.txt     2014-11-25 22:56:23.000000000 +0100
+++ new/History.txt     2015-07-11 18:05:10.000000000 +0200
@@ -1,3 +1,15 @@
+=== 6.0.2 / 2014-07-11
+
+* Bug fixes
+
+  * Fix file permission problem on the gem package
+
+=== 6.0.1 / 2014-07-10
+
+* Bug fixes
+
+  * Stop quoting LIMIT values.
+
 === 6.0.0 / 2014-11-25
 
 * Enhancements
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/arel/select_manager.rb 
new/lib/arel/select_manager.rb
--- old/lib/arel/select_manager.rb      2014-11-25 22:56:23.000000000 +0100
+++ new/lib/arel/select_manager.rb      2015-07-11 18:05:10.000000000 +0200
@@ -19,7 +19,7 @@
     end
 
     def limit
-      @ast.limit && @ast.limit.expr.expr
+      @ast.limit && @ast.limit.expr
     end
     alias :taken :limit
 
@@ -216,8 +216,8 @@
 
     def take limit
       if limit
-        @ast.limit = Nodes::Limit.new(Nodes.build_quoted(limit))
-        @ctx.top   = Nodes::Top.new(Nodes.build_quoted(limit))
+        @ast.limit = Nodes::Limit.new(limit)
+        @ctx.top   = Nodes::Top.new(limit)
       else
         @ast.limit = nil
         @ctx.top   = nil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/arel/visitors/mysql.rb 
new/lib/arel/visitors/mysql.rb
--- old/lib/arel/visitors/mysql.rb      2014-11-25 22:56:23.000000000 +0100
+++ new/lib/arel/visitors/mysql.rb      2015-07-11 18:05:10.000000000 +0200
@@ -40,7 +40,7 @@
       # http://dev.mysql.com/doc/refman/5.0/en/select.html#id3482214
       def visit_Arel_Nodes_SelectStatement o, collector
         if o.offset && !o.limit
-          o.limit = 
Arel::Nodes::Limit.new(Nodes.build_quoted(18446744073709551615))
+          o.limit = Arel::Nodes::Limit.new(18446744073709551615)
         end
         super
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/arel.rb new/lib/arel.rb
--- old/lib/arel.rb     2014-11-25 22:56:23.000000000 +0100
+++ new/lib/arel.rb     2015-07-11 18:05:10.000000000 +0200
@@ -21,7 +21,7 @@
 require 'arel/nodes'
 
 module Arel
-  VERSION = '6.0.0'
+  VERSION = '6.0.2'
 
   def self.sql raw_sql
     Arel::Nodes::SqlLiteral.new raw_sql
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2014-11-25 22:56:23.000000000 +0100
+++ new/metadata        2015-07-11 18:05:10.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: arel
 version: !ruby/object:Gem::Version
-  version: 6.0.0
+  version: 6.0.2
 platform: ruby
 authors:
 - Aaron Patterson
@@ -11,7 +11,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2014-11-25 00:00:00.000000000 Z
+date: 2015-07-11 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: minitest
@@ -41,20 +41,6 @@
     - - "~>"
       - !ruby/object:Gem::Version
         version: '4.0'
-- !ruby/object:Gem::Dependency
-  name: rake
-  requirement: !ruby/object:Gem::Requirement
-    requirements:
-    - - ">="
-      - !ruby/object:Gem::Version
-        version: '0'
-  type: :development
-  prerelease: false
-  version_requirements: !ruby/object:Gem::Requirement
-    requirements:
-    - - ">="
-      - !ruby/object:Gem::Version
-        version: '0'
 description: |-
   Arel Really Exasperates Logicians
 
@@ -177,7 +163,7 @@
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.2.2
+rubygems_version: 2.4.7
 signing_key: 
 specification_version: 4
 summary: Arel Really Exasperates Logicians  Arel is a SQL AST manager for Ruby


Reply via email to