Hello community,

here is the log from the commit of package rubygem-sass-rails for 
openSUSE:Factory checked in at 2015-09-08 17:42:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-sass-rails (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-sass-rails.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-sass-rails"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-sass-rails/rubygem-sass-rails.changes    
2015-04-10 09:53:59.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-sass-rails.new/rubygem-sass-rails.changes   
    2015-09-08 17:47:23.000000000 +0200
@@ -1,0 +2,6 @@
+Fri Sep  4 04:33:02 UTC 2015 - co...@suse.com
+
+- updated to version 5.0.4
+  no changelog found
+
+-------------------------------------------------------------------

Old:
----
  sass-rails-5.0.3.gem

New:
----
  sass-rails-5.0.4.gem

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

Other differences:
------------------
++++++ rubygem-sass-rails.spec ++++++
--- /var/tmp/diff_new_pack.uDPEWw/_old  2015-09-08 17:47:24.000000000 +0200
+++ /var/tmp/diff_new_pack.uDPEWw/_new  2015-09-08 17:47:24.000000000 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-sass-rails
-Version:        5.0.3
+Version:        5.0.4
 Release:        0
 %define mod_name sass-rails
 %define mod_full_name %{mod_name}-%{version}

++++++ sass-rails-5.0.3.gem -> sass-rails-5.0.4.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2015-03-31 17:56:30.000000000 +0200
+++ new/README.md       2015-09-03 21:49:24.000000000 +0200
@@ -68,24 +68,24 @@
 #### `asset-path($relative-asset-path)`
 Returns a string to the asset.
 
-* `asset-path("rails.png")` becomes `"/assets/rails.png"`
+* `asset-path("rails.png")` returns `"/assets/rails.png"`
 
 #### `asset-url($relative-asset-path)`
 Returns a url reference to the asset.
 
-* `asset-url("rails.png")` becomes `url(/assets/rails.png)`
+* `asset-url("rails.png")` returns `url(/assets/rails.png)`
 
 As a convenience, for each of the following asset classes there are
 corresponding `-path` and `-url` helpers:
 image, font, video, audio, javascript, stylesheet.
 
-* `image-path("rails.png")` becomes `"/assets/rails.png"`
-* `image-url("rails.png")` becomes `url(/assets/rails.png)`
+* `image-path("rails.png")` returns `"/assets/rails.png"`
+* `image-url("rails.png")` returns `url(/assets/rails.png)`
 
 #### `asset-data-url($relative-asset-path)`
 Returns a url reference to the Base64-encoded asset at the specified path.
 
-* `asset-data-url("rails.png")` becomes 
`url(data:image/png;base64,iVBORw0K...)`
+* `asset-data-url("rails.png")` returns 
`url(data:image/png;base64,iVBORw0K...)`
 
 ## 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/sass/rails/railtie.rb 
new/lib/sass/rails/railtie.rb
--- old/lib/sass/rails/railtie.rb       2015-03-31 17:56:30.000000000 +0200
+++ new/lib/sass/rails/railtie.rb       2015-09-03 21:49:24.000000000 +0200
@@ -67,11 +67,13 @@
     end
 
     initializer :setup_compression, group: :all do |app|
-      unless Rails.env.development?
-        app.config.assets.css_compressor ||= :sass
-      else
+      if Rails.env.development?
         # Use expanded output instead of the sass default of :nested unless 
specified
         app.config.sass.style ||= :expanded
+      else
+        # config.assets.css_compressor may be set to nil in non-dev 
environments.
+        # otherwise, the default is sass compression.
+        app.config.assets.css_compressor = :sass unless 
app.config.assets.has_key?(:css_compressor)
       end
     end
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sass/rails/version.rb 
new/lib/sass/rails/version.rb
--- old/lib/sass/rails/version.rb       2015-03-31 17:56:30.000000000 +0200
+++ new/lib/sass/rails/version.rb       2015-09-03 21:49:24.000000000 +0200
@@ -1,5 +1,5 @@
 module Sass
   module Rails
-    VERSION = "5.0.3"
+    VERSION = "5.0.4"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-03-31 17:56:30.000000000 +0200
+++ new/metadata        2015-09-03 21:49:24.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: sass-rails
 version: !ruby/object:Gem::Version
-  version: 5.0.3
+  version: 5.0.4
 platform: ruby
 authors:
 - wycats
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-03-31 00:00:00.000000000 Z
+date: 2015-09-03 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: railties
@@ -89,16 +89,22 @@
   name: tilt
   requirement: !ruby/object:Gem::Requirement
     requirements:
-    - - "~>"
+    - - ">="
       - !ruby/object:Gem::Version
         version: '1.1'
+    - - "<"
+      - !ruby/object:Gem::Version
+        version: '3'
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
-    - - "~>"
+    - - ">="
       - !ruby/object:Gem::Version
         version: '1.1'
+    - - "<"
+      - !ruby/object:Gem::Version
+        version: '3'
 - !ruby/object:Gem::Dependency
   name: sqlite3
   requirement: !ruby/object:Gem::Requirement
@@ -159,8 +165,9 @@
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5
+rubygems_version: 2.4.7
 signing_key: 
 specification_version: 4
 summary: Sass adapter for the Rails asset pipeline.
 test_files: []
+has_rdoc: 


Reply via email to