Hello community,

here is the log from the commit of package rubygem-sprockets for 
openSUSE:Factory checked in at 2015-04-15 16:27:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-sprockets (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-sprockets.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-sprockets"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-sprockets/rubygem-sprockets.changes      
2015-04-13 20:31:16.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sprockets.new/rubygem-sprockets.changes 
2015-04-15 16:27:33.000000000 +0200
@@ -1,0 +2,5 @@
+Wed Apr 15 04:30:24 UTC 2015 - [email protected]
+
+- updated to version 3.0.1
+
+-------------------------------------------------------------------

Old:
----
  sprockets-3.0.0.gem

New:
----
  sprockets-3.0.1.gem

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

Other differences:
------------------
++++++ rubygem-sprockets.spec ++++++
--- /var/tmp/diff_new_pack.7Z36iU/_old  2015-04-15 16:27:33.000000000 +0200
+++ /var/tmp/diff_new_pack.7Z36iU/_new  2015-04-15 16:27:33.000000000 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-sprockets
-Version:        3.0.0
+Version:        3.0.1
 Release:        0
 %define mod_name sprockets
 %define mod_full_name %{mod_name}-%{version}

++++++ sprockets-3.0.0.gem -> sprockets-3.0.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2015-04-12 18:02:09.000000000 +0200
+++ new/README.md       2015-04-14 23:56:26.000000000 +0200
@@ -449,7 +449,11 @@
 
 ### Version History
 
-**3.0.0**
+**3.0.1** (April 14, 2015)
+
+* Fixed `Context#depend_on` with paths outside the load path
+
+**3.0.0** (April 12, 2015)
 
 * New processor API. Tilt interface is deprecated.
 * Improved file store caching backend.
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sprockets/context.rb new/lib/sprockets/context.rb
--- old/lib/sprockets/context.rb        2015-04-12 18:02:09.000000000 +0200
+++ new/lib/sprockets/context.rb        2015-04-14 23:56:26.000000000 +0200
@@ -108,7 +108,9 @@
     # the dependency file with invalidate the cache of the
     # source file.
     def depend_on(path)
-      if environment.absolute_path?(path) && environment.directory?(path)
+      path = path.to_s if path.is_a?(Pathname)
+
+      if environment.absolute_path?(path) && environment.stat(path)
         @dependencies << environment.build_file_digest_uri(path)
       else
         resolve(path, compat: false)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sprockets/version.rb new/lib/sprockets/version.rb
--- old/lib/sprockets/version.rb        2015-04-12 18:02:09.000000000 +0200
+++ new/lib/sprockets/version.rb        2015-04-14 23:56:26.000000000 +0200
@@ -1,3 +1,3 @@
 module Sprockets
-  VERSION = "3.0.0"
+  VERSION = "3.0.1"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-04-12 18:02:09.000000000 +0200
+++ new/metadata        2015-04-14 23:56:26.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: sprockets
 version: !ruby/object:Gem::Version
-  version: 3.0.0
+  version: 3.0.1
 platform: ruby
 authors:
 - Sam Stephenson
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-04-12 00:00:00.000000000 Z
+date: 2015-04-14 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rack


Reply via email to