commit rubygem-actionview-5_1 for openSUSE:Factory

2019-04-01 Thread root
Hello community,

here is the log from the commit of package rubygem-actionview-5_1 for 
openSUSE:Factory checked in at 2019-04-01 12:35:56

Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-5_1 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new.25356 (New)


Package is "rubygem-actionview-5_1"

Mon Apr  1 12:35:56 2019 rev:7 rq:689680 version:5.1.7

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_1/rubygem-actionview-5_1.changes
2019-03-27 16:18:09.715570294 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new.25356/rubygem-actionview-5_1.changes
 2019-04-01 12:36:01.965846593 +0200
@@ -1,0 +2,19 @@
+Fri Mar 29 05:51:01 UTC 2019 - Stephan Kulow 
+
+- updated to version 5.1.7
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.7 (March 27, 2019) ##
+  
+  *   Fix issue with `button_to`'s `to_form_params`
+  
+  `button_to` was throwing exception when invoked with `params` hash that
+  contains symbol and string keys. The reason for the exception was that
+  `to_form_params` was comparing the given symbol and string keys.
+  
+  The issue is fixed by turning all keys to strings inside
+  `to_form_params` before comparing them.
+  
+  *Georgi Georgiev*
+
+---

Old:

  actionview-5.1.6.2.gem

New:

  actionview-5.1.7.gem



Other differences:
--
++ rubygem-actionview-5_1.spec ++
--- /var/tmp/diff_new_pack.GA4uld/_old  2019-04-01 12:36:02.641846924 +0200
+++ /var/tmp/diff_new_pack.GA4uld/_new  2019-04-01 12:36:02.645846926 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionview-5_1
-Version:5.1.6.2
+Version:5.1.7
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.1.6.2.gem -> actionview-5.1.7.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2019-03-13 17:45:33.0 +0100
+++ new/CHANGELOG.md2019-03-28 03:46:08.0 +0100
@@ -1,3 +1,16 @@
+## Rails 5.1.7 (March 27, 2019) ##
+
+*   Fix issue with `button_to`'s `to_form_params`
+
+`button_to` was throwing exception when invoked with `params` hash that
+contains symbol and string keys. The reason for the exception was that
+`to_form_params` was comparing the given symbol and string keys.
+
+The issue is fixed by turning all keys to strings inside
+`to_form_params` before comparing them.
+
+*Georgi Georgiev*
+
 ## Rails 5.1.6.2 (March 11, 2019) ##
 
 *   No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/digestor.rb 
new/lib/action_view/digestor.rb
--- old/lib/action_view/digestor.rb 2019-03-13 17:45:33.0 +0100
+++ new/lib/action_view/digestor.rb 2019-03-28 03:46:08.0 +0100
@@ -43,9 +43,8 @@
   # Create a dependency tree for template named +name+.
   def tree(name, finder, partial = false, seen = {})
 logical_name = name.gsub(%r|/_|, "/")
-finder.formats = [finder.rendered_format] if finder.rendered_format
 
-if template = finder.disable_cache { finder.find_all(logical_name, [], 
partial, []).first }
+if template = find_template(finder, logical_name, [], partial, [])
   finder.rendered_format ||= template.formats.first
 
   if node = seen[template.identifier] # handle cycles in the tree
@@ -67,6 +66,17 @@
   seen[name] ||= Missing.new(name, logical_name, nil)
 end
   end
+
+  private
+def find_template(finder, *args)
+  finder.disable_cache do
+if format = finder.rendered_format
+  finder.find_all(*args, formats: [format]).first || 
finder.find_all(*args).first
+else
+  finder.find_all(*args).first
+end
+  end
+end
 end
 
 class Node
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2019-03-13 17:45:33.0 +0100
+++ new/lib/action_view/gem_version.rb  2019-03-28 03:46:08.0 +0100
@@ -7,8 +7,8 @@
   module VERSION
 MAJOR = 5
 MINOR = 1
-TINY  = 6
-PRE   = "2"
+TINY  = 7
+PRE   = nil
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/rendering_helper.rb 

commit rubygem-actionview-5_1 for openSUSE:Factory

2019-03-27 Thread root
Hello community,

here is the log from the commit of package rubygem-actionview-5_1 for 
openSUSE:Factory checked in at 2019-03-27 16:18:07

Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-5_1 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new.25356 (New)


Package is "rubygem-actionview-5_1"

Wed Mar 27 16:18:07 2019 rev:6 rq:685133 version:5.1.6.2

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_1/rubygem-actionview-5_1.changes
2019-01-21 10:27:17.201623268 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new.25356/rubygem-actionview-5_1.changes
 2019-03-27 16:18:09.715570294 +0100
@@ -1,0 +2,10 @@
+Thu Mar 14 10:44:45 UTC 2019 - Stephan Kulow 
+
+- updated to version 5.1.6.2
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.6.2 (March 11, 2019) ##
+  
+  *   No changes.
+
+---

Old:

  actionview-5.1.6.1.gem

New:

  actionview-5.1.6.2.gem



Other differences:
--
++ rubygem-actionview-5_1.spec ++
--- /var/tmp/diff_new_pack.PSAwDZ/_old  2019-03-27 16:18:10.291570174 +0100
+++ /var/tmp/diff_new_pack.PSAwDZ/_new  2019-03-27 16:18:10.295570173 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-actionview-5_1
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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-actionview-5_1
-Version:5.1.6.1
+Version:5.1.6.2
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.1.6.1.gem -> actionview-5.1.6.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2018-11-27 21:10:07.0 +0100
+++ new/CHANGELOG.md2019-03-13 17:45:33.0 +0100
@@ -1,3 +1,8 @@
+## Rails 5.1.6.2 (March 11, 2019) ##
+
+*   No changes.
+
+
 ## Rails 5.1.6.1 (November 27, 2018) ##
 
 *   No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2018-11-27 21:10:07.0 +0100
+++ new/lib/action_view/gem_version.rb  2019-03-13 17:45:33.0 +0100
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 1
 TINY  = 6
-PRE   = "1"
+PRE   = "2"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2018-11-27 21:10:07.0 +0100
+++ new/metadata2019-03-13 17:45:33.0 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 5.1.6.1
+  version: 5.1.6.2
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-11-27 00:00:00.0 Z
+date: 2019-03-13 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6.1
+version: 5.1.6.2
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6.1
+version: 5.1.6.2
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6.1
+version: 5.1.6.2
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6.1
+version: 5.1.6.2
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6.1
+version: 5.1.6.2
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6.1
+version: 5.1.6.2
 description: Simple, battle-tested conventions and helpers for building web 
pages.
 email: da...@loudthinking.com
 executables: []
@@ -231,8 +231,8 

commit rubygem-actionview-5_1 for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package rubygem-actionview-5_1 for 
openSUSE:Factory checked in at 2019-01-21 10:27:14

Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-5_1 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new.28833 (New)


Package is "rubygem-actionview-5_1"

Mon Jan 21 10:27:14 2019 rev:5 rq:656401 version:5.1.6.1

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_1/rubygem-actionview-5_1.changes
2018-07-18 22:48:01.880136356 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new.28833/rubygem-actionview-5_1.changes
 2019-01-21 10:27:17.201623268 +0100
@@ -1,0 +2,10 @@
+Sat Dec  8 16:13:55 UTC 2018 - Stephan Kulow 
+
+- updated to version 5.1.6.1
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.6.1 (November 27, 2018) ##
+  
+  *   No changes.
+
+---

Old:

  actionview-5.1.6.gem

New:

  actionview-5.1.6.1.gem



Other differences:
--
++ rubygem-actionview-5_1.spec ++
--- /var/tmp/diff_new_pack.WjzpHQ/_old  2019-01-21 10:27:17.805622606 +0100
+++ /var/tmp/diff_new_pack.WjzpHQ/_new  2019-01-21 10:27:17.809622602 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionview-5_1
-Version:5.1.6
+Version:5.1.6.1
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.1.6.gem -> actionview-5.1.6.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2018-03-29 20:27:12.0 +0200
+++ new/CHANGELOG.md2018-11-27 21:10:07.0 +0100
@@ -1,3 +1,8 @@
+## Rails 5.1.6.1 (November 27, 2018) ##
+
+*   No changes.
+
+
 ## Rails 5.1.6 (March 29, 2018) ##
 
 *   No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2018-03-29 20:27:12.0 +0200
+++ new/lib/action_view/gem_version.rb  2018-11-27 21:10:07.0 +0100
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 1
 TINY  = 6
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2018-03-29 20:27:12.0 +0200
+++ new/metadata2018-11-27 21:10:07.0 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 5.1.6
+  version: 5.1.6.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-03-29 00:00:00.0 Z
+date: 2018-11-27 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6
+version: 5.1.6.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6
+version: 5.1.6.1
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6
+version: 5.1.6.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6
+version: 5.1.6.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6
+version: 5.1.6.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.6
+version: 5.1.6.1
 description: Simple, battle-tested conventions and helpers for building web 
pages.
 email: da...@loudthinking.com
 executables: []
@@ -231,8 +231,8 @@
 licenses:
 - MIT
 metadata:
-  source_code_uri: 

commit rubygem-actionview-5_1 for openSUSE:Factory

2018-07-18 Thread root
Hello community,

here is the log from the commit of package rubygem-actionview-5_1 for 
openSUSE:Factory checked in at 2018-07-18 22:48:01

Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-5_1 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new (New)


Package is "rubygem-actionview-5_1"

Wed Jul 18 22:48:01 2018 rev:4 rq:620977 version:5.1.6

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_1/rubygem-actionview-5_1.changes
2018-02-18 11:44:08.185783903 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new/rubygem-actionview-5_1.changes
   2018-07-18 22:48:01.880136356 +0200
@@ -1,0 +2,10 @@
+Fri Mar 30 04:29:45 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 5.1.6
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.6 (March 29, 2018) ##
+  
+  *   No changes.
+
+---

Old:

  actionview-5.1.5.gem

New:

  actionview-5.1.6.gem



Other differences:
--
++ rubygem-actionview-5_1.spec ++
--- /var/tmp/diff_new_pack.oBDUlb/_old  2018-07-18 22:48:02.672133731 +0200
+++ /var/tmp/diff_new_pack.oBDUlb/_new  2018-07-18 22:48:02.688133678 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionview-5_1
-Version:5.1.5
+Version:5.1.6
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.1.5.gem -> actionview-5.1.6.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2018-02-14 20:54:46.0 +0100
+++ new/CHANGELOG.md2018-03-29 20:27:12.0 +0200
@@ -1,3 +1,8 @@
+## Rails 5.1.6 (March 29, 2018) ##
+
+*   No changes.
+
+
 ## Rails 5.1.5 (February 14, 2018) ##
 
 *   No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/digestor.rb 
new/lib/action_view/digestor.rb
--- old/lib/action_view/digestor.rb 2018-02-14 20:54:46.0 +0100
+++ new/lib/action_view/digestor.rb 2018-03-29 20:27:12.0 +0200
@@ -43,11 +43,9 @@
   # Create a dependency tree for template named +name+.
   def tree(name, finder, partial = false, seen = {})
 logical_name = name.gsub(%r|/_|, "/")
+finder.formats = [finder.rendered_format] if finder.rendered_format
 
-options = {}
-options[:formats] = [finder.rendered_format] if finder.rendered_format
-
-if template = finder.disable_cache { finder.find_all(logical_name, [], 
partial, [], options).first }
+if template = finder.disable_cache { finder.find_all(logical_name, [], 
partial, []).first }
   finder.rendered_format ||= template.formats.first
 
   if node = seen[template.identifier] # handle cycles in the tree
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2018-02-14 20:54:46.0 +0100
+++ new/lib/action_view/gem_version.rb  2018-03-29 20:27:12.0 +0200
@@ -7,7 +7,7 @@
   module VERSION
 MAJOR = 5
 MINOR = 1
-TINY  = 5
+TINY  = 6
 PRE   = nil
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2018-02-14 20:54:46.0 +0100
+++ new/metadata2018-03-29 20:27:12.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 5.1.5
+  version: 5.1.6
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-02-14 00:00:00.0 Z
+date: 2018-03-29 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.5
+version: 5.1.6
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.5
+version: 5.1.6
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.1.5
+version: 5.1.6
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - 

commit rubygem-actionview-5_1 for openSUSE:Factory

2018-02-18 Thread root
Hello community,

here is the log from the commit of package rubygem-actionview-5_1 for 
openSUSE:Factory checked in at 2018-02-18 11:44:02

Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-5_1 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new (New)


Package is "rubygem-actionview-5_1"

Sun Feb 18 11:44:02 2018 rev:3 rq:577551 version:5.1.5

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_1/rubygem-actionview-5_1.changes
2017-09-13 22:35:27.960268378 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new/rubygem-actionview-5_1.changes
   2018-02-18 11:44:08.185783903 +0100
@@ -1,0 +2,10 @@
+Thu Feb 15 05:29:03 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 5.1.5
+ see installed CHANGELOG.md
+
+  ## Rails 5.1.5 (February 14, 2018) ##
+  
+  *   No changes.
+
+---

Old:

  actionview-5.1.4.gem

New:

  actionview-5.1.5.gem



Other differences:
--
++ rubygem-actionview-5_1.spec ++
--- /var/tmp/diff_new_pack.qG0Igw/_old  2018-02-18 11:44:08.861759637 +0100
+++ /var/tmp/diff_new_pack.qG0Igw/_new  2018-02-18 11:44:08.861759637 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-actionview-5_1
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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-actionview-5_1
-Version:5.1.4
+Version:5.1.5
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.1.4.gem -> actionview-5.1.5.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2017-09-08 02:49:00.0 +0200
+++ new/CHANGELOG.md2018-02-14 20:54:46.0 +0100
@@ -1,3 +1,8 @@
+## Rails 5.1.5 (February 14, 2018) ##
+
+*   No changes.
+
+
 ## Rails 5.1.4 (September 07, 2017) ##
 
 *   No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2017-09-08 02:49:00.0 +0200
+++ new/lib/action_view/gem_version.rb  2018-02-14 20:54:46.0 +0100
@@ -7,7 +7,7 @@
   module VERSION
 MAJOR = 5
 MINOR = 1
-TINY  = 4
+TINY  = 5
 PRE   = nil
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/assets/compiled/rails-ujs.js 
new/lib/assets/compiled/rails-ujs.js
--- old/lib/assets/compiled/rails-ujs.js2017-09-08 02:49:00.0 
+0200
+++ new/lib/assets/compiled/rails-ujs.js2018-02-14 20:54:46.0 
+0100
@@ -181,13 +181,11 @@
   }
   return typeof options.complete === "function" ? 
options.complete(xhr, xhr.statusText) : void 0;
 });
-if (typeof options.beforeSend === "function") {
-  options.beforeSend(xhr, options);
+if (!(typeof options.beforeSend === "function" ? 
options.beforeSend(xhr, options) : void 0)) {
+  return false;
 }
 if (xhr.readyState === XMLHttpRequest.OPENED) {
   return xhr.send(options.data);
-} else {
-  return fire(document, 'ajaxStop');
 }
   };
 
@@ -290,7 +288,7 @@
 }
 params = [];
 inputs.forEach(function(input) {
-  if (!input.name) {
+  if (!input.name || input.disabled) {
 return;
   }
   if (matches(input, 'select')) {
@@ -552,7 +550,7 @@
   return fire(element, 'ajax:send', [xhr]);
 } else {
   fire(element, 'ajax:stopped');
-  return xhr.abort();
+  return false;
 }
   },
   success: function() {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2017-09-08 02:49:00.0 +0200
+++ new/metadata2018-02-14 20:54:46.0 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 5.1.4
+  version: 5.1.5
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-09-08 00:00:00.0 Z
+date: 2018-02-14 00:00:00.0 Z
 dependencies:
 - 

commit rubygem-actionview-5_1 for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package rubygem-actionview-5_1 for 
openSUSE:Factory checked in at 2017-09-13 22:34:20

Comparing /work/SRC/openSUSE:Factory/rubygem-actionview-5_1 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new (New)


Package is "rubygem-actionview-5_1"

Wed Sep 13 22:34:20 2017 rev:2 rq:523492 version:5.1.4

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_1/rubygem-actionview-5_1.changes
2017-09-04 12:38:19.718577194 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_1.new/rubygem-actionview-5_1.changes
   2017-09-13 22:35:27.960268378 +0200
@@ -1,0 +2,5 @@
+Mon Sep 11 08:54:49 UTC 2017 - enava...@suse.com
+
+- Update to version 5.1.4
+
+---

Old:

  actionview-5.1.3.gem

New:

  actionview-5.1.4.gem



Other differences:
--
++ rubygem-actionview-5_1.spec ++
--- /var/tmp/diff_new_pack.cLTFVi/_old  2017-09-13 22:35:28.616176027 +0200
+++ /var/tmp/diff_new_pack.cLTFVi/_new  2017-09-13 22:35:28.620175464 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionview-5_1
-Version:5.1.3
+Version:5.1.4
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.1.3.gem -> actionview-5.1.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2017-08-03 21:13:03.0 +0200
+++ new/CHANGELOG.md2017-09-08 02:49:00.0 +0200
@@ -1,3 +1,13 @@
+## Rails 5.1.4 (September 07, 2017) ##
+
+*   No changes.
+
+
+## Rails 5.1.4.rc1 (August 24, 2017) ##
+
+*   No changes.
+
+
 ## Rails 5.1.3 (August 03, 2017) ##
 
 *   No changes.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2017-08-03 21:13:03.0 +0200
+++ new/lib/action_view/gem_version.rb  2017-09-08 02:49:00.0 +0200
@@ -7,7 +7,7 @@
   module VERSION
 MAJOR = 5
 MINOR = 1
-TINY  = 3
+TINY  = 4
 PRE   = nil
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/controller_helper.rb 
new/lib/action_view/helpers/controller_helper.rb
--- old/lib/action_view/helpers/controller_helper.rb2017-08-03 
21:13:03.0 +0200
+++ new/lib/action_view/helpers/controller_helper.rb2017-09-08 
02:49:00.0 +0200
@@ -7,8 +7,11 @@
 module ControllerHelper #:nodoc:
   attr_internal :controller, :request
 
-  delegate :request_forgery_protection_token, :params, :session, :cookies, 
:response, :headers,
-   :flash, :action_name, :controller_name, :controller_path, to: 
:controller
+  CONTROLLER_DELEGATES = [:request_forgery_protection_token, :params,
+:session, :cookies, :response, :headers, :flash, :action_name,
+:controller_name, :controller_path]
+
+  delegate(*CONTROLLER_DELEGATES, to: :controller)
 
   def assign_controller(controller)
 if @_controller = controller
@@ -21,6 +24,11 @@
   def logger
 controller.logger if controller.respond_to?(:logger)
   end
+
+  def respond_to?(method_name, include_private = false)
+return controller.respond_to?(method_name) if 
CONTROLLER_DELEGATES.include?(method_name.to_sym)
+super
+  end
 end
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/form_helper.rb 
new/lib/action_view/helpers/form_helper.rb
--- old/lib/action_view/helpers/form_helper.rb  2017-08-03 21:13:03.0 
+0200
+++ new/lib/action_view/helpers/form_helper.rb  2017-09-08 02:49:00.0 
+0200
@@ -541,6 +541,36 @@
   # and adds an authenticity token needed for cross site request forgery
   # protection.
   #
+  # === Resource-oriented style
+  #
+  # In many of the examples just shown, the +:model+ passed to +form_with+
+  # is a _resource_. It corresponds to a set of RESTful routes, most likely
+  # defined via +resources+ in config/routes.rb.
+  #
+  # So when passing such a model record, Rails infers the URL and method.
+  #
+  #   <%= form_with model: @post do |form| %>
+  # ...
+  #   <% end %>
+  #
+  # is then equivalent to something like:
+  #
+  #   <%= form_with scope: :post, url: post_path(@post), method: :patch do 
|form| %>