Hello community, here is the log from the commit of package rubygem-arel for openSUSE:Factory checked in at 2015-08-05 19:14:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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-08-05 06:50:25.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-arel.new/rubygem-arel.changes 2015-08-05 19:14:44.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Aug 5 04:28:40 UTC 2015 - [email protected] + +- updated to version 6.0.3 + see installed History.txt + +------------------------------------------------------------------- Old: ---- arel-6.0.2.gem New: ---- arel-6.0.3.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-arel.spec ++++++ --- /var/tmp/diff_new_pack.d1Lx18/_old 2015-08-05 19:14:45.000000000 +0200 +++ /var/tmp/diff_new_pack.d1Lx18/_new 2015-08-05 19:14:45.000000000 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-arel -Version: 6.0.2 +Version: 6.0.3 Release: 0 %define mod_name arel %define mod_full_name %{mod_name}-%{version} ++++++ arel-6.0.2.gem -> arel-6.0.3.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/History.txt new/History.txt --- old/History.txt 2015-07-11 18:05:10.000000000 +0200 +++ new/History.txt 2015-08-04 23:28:25.000000000 +0200 @@ -1,10 +1,16 @@ -=== 6.0.2 / 2014-07-11 +=== 6.0.3 / 2015-08-04 + +* Bug fixes + + * Fix quoting LIMIT values on Oracle visitor. + +=== 6.0.2 / 2015-07-11 * Bug fixes * Fix file permission problem on the gem package -=== 6.0.1 / 2014-07-10 +=== 6.0.1 / 2015-07-10 * Bug fixes Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/arel/visitors/oracle.rb new/lib/arel/visitors/oracle.rb --- old/lib/arel/visitors/oracle.rb 2015-07-11 18:05:10.000000000 +0200 +++ new/lib/arel/visitors/oracle.rb 2015-08-04 23:28:25.000000000 +0200 @@ -17,7 +17,7 @@ if o.limit && o.offset o = o.dup - limit = o.limit.expr.expr + limit = o.limit.expr offset = o.offset o.offset = nil collector << " diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/arel/visitors/to_sql.rb new/lib/arel/visitors/to_sql.rb --- old/lib/arel/visitors/to_sql.rb 2015-07-11 18:05:10.000000000 +0200 +++ new/lib/arel/visitors/to_sql.rb 2015-08-04 23:28:25.000000000 +0200 @@ -575,8 +575,11 @@ visit o.left, collector end - def visit_Arel_Nodes_FullOuterJoin o - "FULL OUTER JOIN #{visit o.left} #{visit o.right}" + def visit_Arel_Nodes_FullOuterJoin o, collector + collector << "FULL OUTER JOIN " + collector = visit o.left, collector + collector << SPACE + visit o.right, collector end def visit_Arel_Nodes_OuterJoin o, collector @@ -586,8 +589,11 @@ visit o.right, collector end - def visit_Arel_Nodes_RightOuterJoin o - "RIGHT OUTER JOIN #{visit o.left} #{visit o.right}" + def visit_Arel_Nodes_RightOuterJoin o, collector + collector << "RIGHT OUTER JOIN " + collector = visit o.left, collector + collector << SPACE + visit o.right, collector end def visit_Arel_Nodes_InnerJoin o, collector diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/arel.rb new/lib/arel.rb --- old/lib/arel.rb 2015-07-11 18:05:10.000000000 +0200 +++ new/lib/arel.rb 2015-08-04 23:28:25.000000000 +0200 @@ -21,7 +21,7 @@ require 'arel/nodes' module Arel - VERSION = '6.0.2' + VERSION = '6.0.3' 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 2015-07-11 18:05:10.000000000 +0200 +++ new/metadata 2015-08-04 23:28:25.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: arel version: !ruby/object:Gem::Version - version: 6.0.2 + version: 6.0.3 platform: ruby authors: - Aaron Patterson @@ -11,7 +11,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2015-07-11 00:00:00.000000000 Z +date: 2015-08-04 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: minitest @@ -168,3 +168,4 @@ specification_version: 4 summary: Arel Really Exasperates Logicians Arel is a SQL AST manager for Ruby test_files: [] +has_rdoc:
