Hello community,

here is the log from the commit of package rubygem-railties-4_2 for 
openSUSE:Factory checked in at 2016-07-20 09:25:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-railties-4_2 (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-railties-4_2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-railties-4_2"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-railties-4_2/rubygem-railties-4_2.changes    
    2016-03-18 21:41:19.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-railties-4_2.new/rubygem-railties-4_2.changes
   2016-07-20 09:25:11.000000000 +0200
@@ -1,0 +2,16 @@
+Wed Jul 13 04:36:06 UTC 2016 - [email protected]
+
+- updated to version 4.2.7
+ see installed CHANGELOG.md
+
+  ## Rails 4.2.7 (July 12, 2016) ##
+  
+  *   Do not run `bundle install` when generating a new plugin.
+  
+      Since bundler 1.12.0, the gemspec is validated so the `bundle install`
+      command will fail just after the gem is created causing confusion to the
+      users. This change was a bug fix to correctly validate gemspecs.
+  
+      *Rafael Mendonça França*
+
+-------------------------------------------------------------------

Old:
----
  railties-4.2.6.gem

New:
----
  railties-4.2.7.gem

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

Other differences:
------------------
++++++ rubygem-railties-4_2.spec ++++++
--- /var/tmp/diff_new_pack.s3JTpf/_old  2016-07-20 09:25:12.000000000 +0200
+++ /var/tmp/diff_new_pack.s3JTpf/_new  2016-07-20 09:25:12.000000000 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-railties-4_2
-Version:        4.2.6
+Version:        4.2.7
 Release:        0
 %define mod_name railties
 %define mod_full_name %{mod_name}-%{version}

++++++ railties-4.2.6.gem -> railties-4.2.7.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2016-03-07 23:31:33.000000000 +0100
+++ new/CHANGELOG.md    2016-07-13 04:53:44.000000000 +0200
@@ -1,3 +1,14 @@
+## Rails 4.2.7 (July 12, 2016) ##
+
+*   Do not run `bundle install` when generating a new plugin.
+
+    Since bundler 1.12.0, the gemspec is validated so the `bundle install`
+    command will fail just after the gem is created causing confusion to the
+    users. This change was a bug fix to correctly validate gemspecs.
+
+    *Rafael Mendonça França*
+
+
 ## Rails 4.2.6 (March 07, 2016) ##
 
 *   No changes.
@@ -8,7 +19,7 @@
 *   No changes.
 
 
-## Rails 4.2.5.1 (January 25, 2015) ##
+## Rails 4.2.5.1 (January 25, 2016) ##
 
 *   No changes.
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/gem_version.rb new/lib/rails/gem_version.rb
--- old/lib/rails/gem_version.rb        2016-03-07 23:31:33.000000000 +0100
+++ new/lib/rails/gem_version.rb        2016-07-13 04:53:44.000000000 +0200
@@ -7,7 +7,7 @@
   module VERSION
     MAJOR = 4
     MINOR = 2
-    TINY  = 6
+    TINY  = 7
     PRE   = nil
 
     STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/generators/app_base.rb 
new/lib/rails/generators/app_base.rb
--- old/lib/rails/generators/app_base.rb        2016-03-07 23:31:33.000000000 
+0100
+++ new/lib/rails/generators/app_base.rb        2016-07-13 04:53:44.000000000 
+0200
@@ -111,6 +111,7 @@
          jbuilder_gemfile_entry,
          sdoc_gemfile_entry,
          psych_gemfile_entry,
+         mime_type_gemfile_entry,
          @extra_entries].flatten.find_all(&@gem_filter)
       end
 
@@ -310,6 +311,12 @@
         GemfileEntry.new('psych', '~> 2.0', comment, platforms: :rbx)
       end
 
+      def mime_type_gemfile_entry
+        return [] unless RUBY_VERSION < '2'
+
+        GemfileEntry.new('mime-types', '< 3', nil, require: false)
+      end
+
       def bundle_command(command)
         say_status :run, "bundle #{command}"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/rails/generators/rails/plugin/plugin_generator.rb 
new/lib/rails/generators/rails/plugin/plugin_generator.rb
--- old/lib/rails/generators/rails/plugin/plugin_generator.rb   2016-03-07 
23:31:33.000000000 +0100
+++ new/lib/rails/generators/rails/plugin/plugin_generator.rb   2016-07-13 
04:53:44.000000000 +0200
@@ -241,7 +241,7 @@
         build(:leftovers)
       end
 
-      public_task :apply_rails_template, :run_bundle
+      public_task :apply_rails_template
 
       def name
         @name ||= begin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2016-03-07 23:31:33.000000000 +0100
+++ new/metadata        2016-07-13 04:53:44.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: railties
 version: !ruby/object:Gem::Version
-  version: 4.2.6
+  version: 4.2.7
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-03-07 00:00:00.000000000 Z
+date: 2016-07-13 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,28 +16,28 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.6
+        version: 4.2.7
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.6
+        version: 4.2.7
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.6
+        version: 4.2.7
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.6
+        version: 4.2.7
 - !ruby/object:Gem::Dependency
   name: rake
   requirement: !ruby/object:Gem::Requirement
@@ -78,14 +78,14 @@
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.6
+        version: 4.2.7
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - '='
       - !ruby/object:Gem::Version
-        version: 4.2.6
+        version: 4.2.7
 description: 'Rails internals: application bootup, plugins, generators, and 
rake tasks.'
 email: [email protected]
 executables:
@@ -357,7 +357,7 @@
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.5.1
+rubygems_version: 2.4.5.1
 signing_key: 
 specification_version: 4
 summary: Tools for creating, working with, and running Rails applications.


Reply via email to