Hello community,
here is the log from the commit of package rubygem-sass-rails for
openSUSE:Factory checked in at 2016-07-30 00:26:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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
2016-07-21 07:57:09.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-sass-rails.new/rubygem-sass-rails.changes
2016-07-30 00:26:32.000000000 +0200
@@ -1,0 +2,6 @@
+Sat Jul 23 04:32:53 UTC 2016 - [email protected]
+
+- updated to version 5.0.6
+ no changelog found
+
+-------------------------------------------------------------------
Old:
----
sass-rails-5.0.5.gem
New:
----
sass-rails-5.0.6.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-sass-rails.spec ++++++
--- /var/tmp/diff_new_pack.kCxFar/_old 2016-07-30 00:26:33.000000000 +0200
+++ /var/tmp/diff_new_pack.kCxFar/_new 2016-07-30 00:26:33.000000000 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-sass-rails
-Version: 5.0.5
+Version: 5.0.6
Release: 0
%define mod_name sass-rails
%define mod_full_name %{mod_name}-%{version}
++++++ sass-rails-5.0.5.gem -> sass-rails-5.0.6.gem ++++++
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 2016-06-30 23:08:47.000000000 +0200
+++ new/lib/sass/rails/railtie.rb 2016-07-23 00:43:04.000000000 +0200
@@ -54,8 +54,22 @@
end
config.assets.configure do |env|
- env.register_engine '.sass', Sass::Rails::SassTemplate
- env.register_engine '.scss', Sass::Rails::ScssTemplate
+ if env.respond_to?(:register_engine)
+ args = ['.sass', Sass::Rails::SassTemplate]
+ args << { silence_deprecation: true } if
env.method(:register_engine).arity.abs > 2
+ env.register_engine(*args)
+
+ args = ['.scss', Sass::Rails::ScssTemplate]
+ args << { silence_deprecation: true } if
env.method(:register_engine).arity.abs > 2
+ env.register_engine(*args)
+ end
+
+ if env.respond_to?(:register_transformer)
+ env.register_transformer 'text/sass', 'text/css',
+ Sprockets::SassProcessor.new(importer: SassImporter, sass_config:
app.config.sass)
+ env.register_transformer 'text/scss', 'text/css',
+ Sprockets::ScssProcessor.new(importer: SassImporter, sass_config:
app.config.sass)
+ end
env.context_class.class_eval do
class_attribute :sass_config
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 2016-06-30 23:08:47.000000000 +0200
+++ new/lib/sass/rails/version.rb 2016-07-23 00:43:04.000000000 +0200
@@ -1,5 +1,5 @@
module Sass
module Rails
- VERSION = "5.0.5"
+ VERSION = "5.0.6"
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2016-06-30 23:08:47.000000000 +0200
+++ new/metadata 2016-07-23 00:43:04.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: sass-rails
version: !ruby/object:Gem::Version
- version: 5.0.5
+ version: 5.0.6
platform: ruby
authors:
- wycats
@@ -9,7 +9,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2016-06-30 00:00:00.000000000 Z
+date: 2016-07-22 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: railties
@@ -165,7 +165,7 @@
version: '0'
requirements: []
rubyforge_project:
-rubygems_version: 2.6.6
+rubygems_version: 2.5.1
signing_key:
specification_version: 4
summary: Sass adapter for the Rails asset pipeline.