Hello community,

here is the log from the commit of package rubygem-spring for openSUSE:Factory 
checked in at 2015-03-01 14:47:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-spring (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-spring.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-spring"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-spring/rubygem-spring.changes    
2015-02-16 22:12:36.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-spring.new/rubygem-spring.changes       
2015-03-01 14:47:49.000000000 +0100
@@ -1,0 +2,7 @@
+Fri Feb 27 05:32:18 UTC 2015 - co...@suse.com
+
+- updated to version 1.3.3
+ * Fix yet another problem with loading spring which seems to affect
+   some/all rbenv users. Issue #390.
+
+-------------------------------------------------------------------
@@ -4,0 +12 @@
+ * Fix another problem with gems bundled from git repositories.

Old:
----
  spring-1.3.2.gem

New:
----
  spring-1.3.3.gem

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

Other differences:
------------------
++++++ rubygem-spring.spec ++++++
--- /var/tmp/diff_new_pack.4IOhz3/_old  2015-03-01 14:47:49.000000000 +0100
+++ /var/tmp/diff_new_pack.4IOhz3/_new  2015-03-01 14:47:49.000000000 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-spring
-Version:        1.3.2
+Version:        1.3.3
 Release:        0
 %define mod_name spring
 %define mod_full_name %{mod_name}-%{version}

++++++ spring-1.3.2.gem -> spring-1.3.3.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2015-02-14 12:12:45.000000000 +0100
+++ new/CHANGELOG.md    2015-02-26 19:21:48.000000000 +0100
@@ -1,3 +1,8 @@
+## 1.3.3
+
+* Fix yet another problem with loading spring which seems to affect
+  some/all rbenv users. Issue #390.
+
 ## 1.3.2
 
 * Fix another problem with gems bundled from git repositories. This
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2015-02-14 12:12:45.000000000 +0100
+++ new/README.md       2015-02-26 19:21:48.000000000 +0100
@@ -72,7 +72,7 @@
 Let's run a test:
 
 ```
-$ time bin/rake test test/functional/posts_controller_test.rb
+$ time bin/rake test test/controllers/posts_controller_test.rb
 Run options:
 
 # Running tests:
@@ -102,7 +102,7 @@
 The next run is faster:
 
 ```
-$ time bin/rake test test/functional/posts_controller_test.rb
+$ time bin/rake test test/controllers/posts_controller_test.rb
 Run options:
 
 # Running tests:
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/spring/client/binstub.rb 
new/lib/spring/client/binstub.rb
--- old/lib/spring/client/binstub.rb    2015-02-14 12:12:45.000000000 +0100
+++ new/lib/spring/client/binstub.rb    2015-02-26 19:21:48.000000000 +0100
@@ -37,7 +37,7 @@
   require "bundler"
 
   if match = Bundler.default_lockfile.read.match(/^GEM$.*?^    (?:  )*spring 
\((.*?)\)$.*?^$/m)
-    Gem.paths = { "GEM_PATH" => Bundler.bundle_path.to_s }
+    Gem.paths = { "GEM_PATH" => [Bundler.bundle_path.to_s, *Gem.path].uniq }
     gem "spring", match[1]
     require "spring/binstub"
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/spring/client/run.rb new/lib/spring/client/run.rb
--- old/lib/spring/client/run.rb        2015-02-14 12:12:45.000000000 +0100
+++ new/lib/spring/client/run.rb        2015-02-26 19:21:48.000000000 +0100
@@ -81,10 +81,10 @@
 
       def gem_env
         bundle = Bundler.bundle_path.to_s
-        paths  = ENV["GEM_PATH"].to_s.split(File::PATH_SEPARATOR)
+        paths  = Gem.path + ENV["GEM_PATH"].to_s.split(File::PATH_SEPARATOR)
 
         {
-          "GEM_PATH" => [bundle, *paths].join(File::PATH_SEPARATOR),
+          "GEM_PATH" => [bundle, *paths].uniq.join(File::PATH_SEPARATOR),
           "GEM_HOME" => bundle
         }
       end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/spring/version.rb new/lib/spring/version.rb
--- old/lib/spring/version.rb   2015-02-14 12:12:45.000000000 +0100
+++ new/lib/spring/version.rb   2015-02-26 19:21:48.000000000 +0100
@@ -1,3 +1,3 @@
 module Spring
-  VERSION = "1.3.2"
+  VERSION = "1.3.3"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-02-14 12:12:45.000000000 +0100
+++ new/metadata        2015-02-26 19:21:48.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: spring
 version: !ruby/object:Gem::Version
-  version: 1.3.2
+  version: 1.3.3
 platform: ruby
 authors:
 - Jon Leighton
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-02-14 00:00:00.000000000 Z
+date: 2015-02-26 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport

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

Reply via email to