Hello community,

here is the log from the commit of package rubygem-rails-4_2 for 
openSUSE:Factory checked in at 2017-03-21 22:50:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rails-4_2 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rails-4_2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rails-4_2"

Tue Mar 21 22:50:15 2017 rev:12 rq:479672 version:4.2.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rails-4_2/rubygem-rails-4_2.changes      
2016-08-25 09:53:59.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-rails-4_2.new/rubygem-rails-4_2.changes 
2017-03-21 22:50:17.792442753 +0100
@@ -1,0 +2,10 @@
+Wed Feb 22 05:39:25 UTC 2017 - co...@suse.com
+
+- updated to version 4.2.8
+ see installed CHANGELOG.md
+
+  ## Rails 4.2.8 (February 21, 2017) ##
+  
+  *   No changes.
+
+-------------------------------------------------------------------

Old:
----
  rails-4.2.7.1.gem

New:
----
  rails-4.2.8.gem

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

Other differences:
------------------
++++++ rubygem-rails-4_2.spec ++++++
--- /var/tmp/diff_new_pack.q9Guma/_old  2017-03-21 22:50:18.524339284 +0100
+++ /var/tmp/diff_new_pack.q9Guma/_new  2017-03-21 22:50:18.532338153 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rails-4_2
 #
-# 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-rails-4_2
-Version:        4.2.7.1
+Version:        4.2.8
 Release:        0
 %define mod_name rails
 %define mod_full_name %{mod_name}-%{version}

++++++ rails-4.2.7.1.gem -> rails-4.2.8.gem ++++++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/CHANGELOG.md new/guides/CHANGELOG.md
--- old/guides/CHANGELOG.md     2016-08-11 00:25:31.000000000 +0200
+++ new/guides/CHANGELOG.md     2017-02-21 17:07:03.000000000 +0100
@@ -1,3 +1,8 @@
+## Rails 4.2.8 (February 21, 2017) ##
+
+*   No changes.
+
+
 ## Rails 4.2.7 (July 12, 2016) ##
 
 *   No changes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/source/active_support_core_extensions.md 
new/guides/source/active_support_core_extensions.md
--- old/guides/source/active_support_core_extensions.md 2016-08-11 
00:25:31.000000000 +0200
+++ new/guides/source/active_support_core_extensions.md 2017-02-21 
17:07:03.000000000 +0100
@@ -1760,7 +1760,7 @@
 The method `constantize` resolves the constant reference expression in its 
receiver:
 
 ```ruby
-"Fixnum".constantize # => Fixnum
+"Integer".constantize # => Integer
 
 module M
   X = 1
@@ -2612,8 +2612,7 @@
 ```ruby
 XML_TYPE_NAMES = {
   "Symbol"     => "symbol",
-  "Fixnum"     => "integer",
-  "Bignum"     => "integer",
+  "Integer"    => "integer",
   "BigDecimal" => "decimal",
   "Float"      => "float",
   "TrueClass"  => "boolean",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/source/api_documentation_guidelines.md 
new/guides/source/api_documentation_guidelines.md
--- old/guides/source/api_documentation_guidelines.md   2016-08-11 
00:25:31.000000000 +0200
+++ new/guides/source/api_documentation_guidelines.md   2017-02-21 
17:07:03.000000000 +0100
@@ -111,7 +111,7 @@
 The results of expressions follow them and are introduced by "# => ", 
vertically aligned:
 
 ```ruby
-# For checking if a fixnum is even or odd.
+# For checking if an integer is even or odd.
 #
 #   1.even? # => false
 #   1.odd?  # => true
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/source/asset_pipeline.md 
new/guides/source/asset_pipeline.md
--- old/guides/source/asset_pipeline.md 2016-08-11 00:25:31.000000000 +0200
+++ new/guides/source/asset_pipeline.md 2017-02-21 17:07:03.000000000 +0100
@@ -434,11 +434,11 @@
 These manifest files contain _directives_ - instructions that tell Sprockets
 which files to require in order to build a single CSS or JavaScript file. With
 these directives, Sprockets loads the files specified, processes them if
-necessary, concatenates them into one single file and then compresses them (if
-`Rails.application.config.assets.compress` is true). By serving one file rather
-than many, the load time of pages can be greatly reduced because the browser
-makes fewer requests. Compression also reduces file size, enabling the
-browser to download them faster.
+necessary, concatenates them into one single file and then compresses them
+(based on value of `Rails.application.config.assets.js_compressor`). By serving
+one file rather than many, the load time of pages can be greatly reduced 
because
+the browser makes fewer requests. Compression also reduces file size, enabling
+the browser to download them faster.
 
 
 For example, a new Rails 4 application includes a default
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/source/configuring.md 
new/guides/source/configuring.md
--- old/guides/source/configuring.md    2016-08-11 00:25:31.000000000 +0200
+++ new/guides/source/configuring.md    2017-02-21 17:07:03.000000000 +0100
@@ -139,8 +139,6 @@
 
 * `config.assets.raise_runtime_errors` Set this flag to `true` to enable 
additional runtime error checking. Recommended in 
`config/environments/development.rb` to minimize unexpected behavior when 
deploying to `production`.
 
-* `config.assets.compress` a flag that enables the compression of compiled 
assets. It is explicitly set to true in `config/environments/production.rb`.
-
 * `config.assets.css_compressor` defines the CSS compressor to use. It is set 
by default by `sass-rails`. The unique alternative value at the moment is 
`:yui`, which uses the `yui-compressor` gem.
 
 * `config.assets.js_compressor` defines the JavaScript compressor to use. 
Possible values are `:closure`, `:uglifier` and `:yui` which require the use of 
the `closure-compiler`, `uglifier` or `yui-compressor` gems respectively.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/source/rails_on_rack.md 
new/guides/source/rails_on_rack.md
--- old/guides/source/rails_on_rack.md  2016-08-11 00:25:31.000000000 +0200
+++ new/guides/source/rails_on_rack.md  2017-02-21 17:07:03.000000000 +0100
@@ -82,7 +82,6 @@
 # Rails.root/config.ru
 require ::File.expand_path('../config/environment', __FILE__)
 
-use Rails::Rack::Debugger
 use Rack::ContentLength
 run Rails.application
 ```
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/guides/source/upgrading_ruby_on_rails.md 
new/guides/source/upgrading_ruby_on_rails.md
--- old/guides/source/upgrading_ruby_on_rails.md        2016-08-11 
00:25:31.000000000 +0200
+++ new/guides/source/upgrading_ruby_on_rails.md        2017-02-21 
17:07:03.000000000 +0100
@@ -793,7 +793,7 @@
 
 * Rails 4.0 has removed the identity map from Active Record, due to [some 
inconsistencies with 
associations](https://github.com/rails/rails/commit/302c912bf6bcd0fa200d964ec2dc4a44abe328a6).
 If you have manually enabled it in your application, you will have to remove 
the following config that has no effect anymore: 
`config.active_record.identity_map`.
 
-* The `delete` method in collection associations can now receive `Fixnum` or 
`String` arguments as record ids, besides records, pretty much like the 
`destroy` method does. Previously it raised 
`ActiveRecord::AssociationTypeMismatch` for such arguments. From Rails 4.0 on 
`delete` automatically tries to find the records matching the given ids before 
deleting them.
+* The `delete` method in collection associations can now receive `Integer` or 
`String` arguments as record ids, besides records, pretty much like the 
`destroy` method does. Previously it raised 
`ActiveRecord::AssociationTypeMismatch` for such arguments. From Rails 4.0 on 
`delete` automatically tries to find the records matching the given ids before 
deleting them.
 
 * In Rails 4.0 when a column or a table is renamed the related indexes are 
also renamed. If you have migrations which rename the indexes, they are no 
longer needed.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2016-08-11 00:25:31.000000000 +0200
+++ new/metadata        2017-02-21 17:07:03.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: rails
 version: !ruby/object:Gem::Version
-  version: 4.2.7.1
+  version: 4.2.8
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-08-10 00:00:00.000000000 Z
+date: 2017-02-21 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,112 +16,112 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: actionview
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: activerecord
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: actionmailer
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: activejob
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: railties
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.7.1
+        version: 4.2.8
 - !ruby/object:Gem::Dependency
   name: bundler
   requirement: !ruby/object:Gem::Requirement
@@ -400,9 +400,8 @@
       version: 1.8.11
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.6
+rubygems_version: 2.6.10
 signing_key: 
 specification_version: 4
 summary: Full-stack web application framework.
 test_files: []
-has_rdoc: 


Reply via email to