Hello community,

here is the log from the commit of package yast2-ruby-bindings for 
openSUSE:Factory checked in at 2013-12-09 19:18:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ruby-bindings (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-ruby-bindings"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes  
2013-11-28 07:40:12.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new/yast2-ruby-bindings.changes 
    2013-12-09 19:18:31.000000000 +0100
@@ -1,0 +2,7 @@
+Mon Dec  9 09:57:33 UTC 2013 - jreidin...@suse.com
+
+- fixed Ops.get and Ops.set warnings to not point inside their own
+  implementation
+- 3.1.4
+
+-------------------------------------------------------------------

Old:
----
  yast2-ruby-bindings-3.1.3.tar.bz2

New:
----
  yast2-ruby-bindings-3.1.4.tar.bz2

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

Other differences:
------------------
++++++ yast2-ruby-bindings.spec ++++++
--- /var/tmp/diff_new_pack.ia6Xsl/_old  2013-12-09 19:18:32.000000000 +0100
+++ /var/tmp/diff_new_pack.ia6Xsl/_new  2013-12-09 19:18:32.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-ruby-bindings
-Version:        3.1.3
+Version:        3.1.4
 Release:        0
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source0:        yast2-ruby-bindings-%{version}.tar.bz2

++++++ yast2-ruby-bindings-3.1.3.tar.bz2 -> yast2-ruby-bindings-3.1.4.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-3.1.3/VERSION 
new/yast2-ruby-bindings-3.1.4/VERSION
--- old/yast2-ruby-bindings-3.1.3/VERSION       2013-11-27 13:57:37.000000000 
+0100
+++ new/yast2-ruby-bindings-3.1.4/VERSION       2013-12-09 12:50:40.000000000 
+0100
@@ -1 +1 @@
-3.1.3
+3.1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ruby-bindings-3.1.3/package/yast2-ruby-bindings.changes 
new/yast2-ruby-bindings-3.1.4/package/yast2-ruby-bindings.changes
--- old/yast2-ruby-bindings-3.1.3/package/yast2-ruby-bindings.changes   
2013-11-27 13:57:37.000000000 +0100
+++ new/yast2-ruby-bindings-3.1.4/package/yast2-ruby-bindings.changes   
2013-12-09 12:50:40.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Mon Dec  9 09:57:33 UTC 2013 - jreidin...@suse.com
+
+- fixed Ops.get and Ops.set warnings to not point inside their own
+  implementation
+- 3.1.4
+
+-------------------------------------------------------------------
 Wed Nov 27 10:10:53 UTC 2013 - jreidin...@suse.com
 
 - add detection of invalid type in publish call
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ruby-bindings-3.1.3/package/yast2-ruby-bindings.spec 
new/yast2-ruby-bindings-3.1.4/package/yast2-ruby-bindings.spec
--- old/yast2-ruby-bindings-3.1.3/package/yast2-ruby-bindings.spec      
2013-11-27 13:57:37.000000000 +0100
+++ new/yast2-ruby-bindings-3.1.4/package/yast2-ruby-bindings.spec      
2013-12-09 12:50:40.000000000 +0100
@@ -3,7 +3,7 @@
 #
 
 Name:           yast2-ruby-bindings
-Version:        3.1.3
+Version:        3.1.4
 Release:        0
 License:        GPL-2.0
 Group:          System/YaST
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ruby-bindings-3.1.3/src/ruby/yast/ops.rb 
new/yast2-ruby-bindings-3.1.4/src/ruby/yast/ops.rb
--- old/yast2-ruby-bindings-3.1.3/src/ruby/yast/ops.rb  2013-11-27 
13:57:37.000000000 +0100
+++ new/yast2-ruby-bindings-3.1.4/src/ruby/yast/ops.rb  2013-12-09 
12:50:40.000000000 +0100
@@ -66,11 +66,11 @@
             if (0..res.size-1).include? i
               res = res[i]
             else
-              Yast.y2milestone 1, "Index #{i} is out of array size"
+              Yast.y2milestone 2, "Index #{i} is out of array size"
               return block_given? ? yield : default
             end
           else
-            Yast.y2warning 1, "Passed #{i.inspect} as index key for array."
+            Yast.y2warning 2, "Passed #{i.inspect} as index key for array."
             return block_given? ? yield : default
           end
         when ::Hash
@@ -80,10 +80,10 @@
             return block_given? ? yield : default
           end
         when ::NilClass
-          Yast.y2milestone 1, "Builtin index called on nil."
+          Yast.y2milestone 2, "Builtin index called on nil."
           return block_given? ? yield : default
         else
-          Yast.y2warning 1, "Builtin index called on wrong type #{res.class}"
+          Yast.y2warning 2, "Builtin index called on wrong type #{res.class}"
           return block_given? ? yield : default
         end
       end
@@ -106,11 +106,11 @@
             if (0..res.size-1).include? i
               res = res[i]
             else
-              Yast.y2warning 1, "Index #{i} is out of array size"
+              Yast.y2warning 2, "Index #{i} is out of array size"
               return
             end
           else
-            Yast.y2warning 1, "Passed #{i.inspect} as index key for array."
+            Yast.y2warning 2, "Passed #{i.inspect} as index key for array."
             return
           end
         when ::Hash
@@ -120,7 +120,7 @@
             return
           end
         else
-          Yast.y2warning 1, "Builtin assign called on wrong type #{res.class}"
+          Yast.y2warning 2, "Builtin assign called on wrong type #{res.class}"
           return
         end
       end

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to