Hello community, here is the log from the commit of package rubygem-sass-rails for openSUSE:Factory checked in at 2019-08-19 21:41:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-sass-rails (Old) and /work/SRC/openSUSE:Factory/.rubygem-sass-rails.new.22127 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-sass-rails" Mon Aug 19 21:41:04 2019 rev:7 rq:724308 version:6.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-sass-rails/rubygem-sass-rails.changes 2017-11-18 00:21:43.810160519 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-sass-rails.new.22127/rubygem-sass-rails.changes 2019-08-19 21:41:47.836285653 +0200 @@ -1,0 +2,7 @@ +Sat Aug 17 21:07:07 UTC 2019 - Manuel Schnitzer <[email protected]> + +- updated to version 6.0.0 + + * no changelog found + +------------------------------------------------------------------- Old: ---- sass-rails-5.0.7.gem New: ---- sass-rails-6.0.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-sass-rails.spec ++++++ --- /var/tmp/diff_new_pack.XLNjnZ/_old 2019-08-19 21:41:48.316285559 +0200 +++ /var/tmp/diff_new_pack.XLNjnZ/_new 2019-08-19 21:41:48.320285558 +0200 @@ -1,7 +1,7 @@ # # spec file for package rubygem-sass-rails # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -24,7 +24,7 @@ # Name: rubygem-sass-rails -Version: 5.0.7 +Version: 6.0.0 Release: 0 %define mod_name sass-rails %define mod_full_name %{mod_name}-%{version} ++++++ sass-rails-5.0.7.gem -> sass-rails-6.0.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/MIT-LICENSE new/MIT-LICENSE --- old/MIT-LICENSE 2017-11-14 20:41:13.000000000 +0100 +++ new/MIT-LICENSE 2019-08-16 23:15:13.000000000 +0200 @@ -1,4 +1,4 @@ -Copyright (c) 2011 Christopher Eppstein +Copyright (c) 2011-2019 Christopher Eppstein Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/README.md new/README.md --- old/README.md 2017-11-14 20:41:13.000000000 +0100 +++ new/README.md 2019-08-16 23:15:13.000000000 +0200 @@ -6,7 +6,9 @@ Since Rails 3.1, new Rails projects will be already configured to use Sass. If you are upgrading to Rails 3.1 you will need to add the following to your Gemfile: - gem 'sass-rails' +```ruby +gem 'sass-rails' +``` ## Configuration @@ -30,12 +32,13 @@ - `:line` - This is provided by the template handler. ### Example - - MyProject::Application.configure do - config.sass.preferred_syntax = :sass - config.sass.line_comments = false - config.sass.cache = false - end +```ruby +MyProject::Application.configure do + config.sass.preferred_syntax = :sass + config.sass.line_comments = false + config.sass.cache = false +end +``` ## Important Note @@ -98,4 +101,3 @@ * [](http://travis-ci.org/rails/sass-rails) * [](http://badge.fury.io/rb/sass-rails) -* [](https://gemnasium.com/rails/sass-rails) Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/sass/assets/assets_generator.rb new/lib/rails/generators/sass/assets/assets_generator.rb --- old/lib/rails/generators/sass/assets/assets_generator.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/sass/assets/assets_generator.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,13 +0,0 @@ -require "rails/generators/named_base" - -module Sass - module Generators - class AssetsGenerator < ::Rails::Generators::NamedBase - source_root File.expand_path("../templates", __FILE__) - - def copy_sass - template "stylesheet.sass", File.join('app/assets/stylesheets', class_path, "#{file_name}.sass") - end - end - end -end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/sass/assets/templates/stylesheet.sass new/lib/rails/generators/sass/assets/templates/stylesheet.sass --- old/lib/rails/generators/sass/assets/templates/stylesheet.sass 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/sass/assets/templates/stylesheet.sass 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -// Place all the styles related to the <%= name %> controller here. -// They will automatically be included in application.css. -// You can use Sass here: http://sass-lang.com/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/sass/scaffold/scaffold_generator.rb new/lib/rails/generators/sass/scaffold/scaffold_generator.rb --- old/lib/rails/generators/sass/scaffold/scaffold_generator.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/sass/scaffold/scaffold_generator.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,9 +0,0 @@ -require "rails/generators/sass_scaffold" - -module Sass - module Generators - class ScaffoldGenerator < ::Sass::Generators::ScaffoldBase - def syntax() :sass end - end - end -end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/sass_scaffold.rb new/lib/rails/generators/sass_scaffold.rb --- old/lib/rails/generators/sass_scaffold.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/sass_scaffold.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,15 +0,0 @@ -require "sass/css" -require "rails/generators/named_base" - -module Sass - module Generators - class ScaffoldBase < ::Rails::Generators::NamedBase - def copy_stylesheet - dir = ::Rails::Generators::ScaffoldGenerator.source_root - file = File.join(dir, "scaffold.css") - converted_contents = ::Sass::CSS.new(File.read(file)).render(syntax) - create_file "app/assets/stylesheets/scaffolds.#{syntax}", converted_contents - end - end - end -end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/scss/assets/assets_generator.rb new/lib/rails/generators/scss/assets/assets_generator.rb --- old/lib/rails/generators/scss/assets/assets_generator.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/scss/assets/assets_generator.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,13 +0,0 @@ -require "rails/generators/named_base" - -module Scss - module Generators - class AssetsGenerator < ::Rails::Generators::NamedBase - source_root File.expand_path("../templates", __FILE__) - - def copy_scss - template "stylesheet.scss", File.join('app/assets/stylesheets', class_path, "#{file_name}.scss") - end - end - end -end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/scss/assets/templates/stylesheet.scss new/lib/rails/generators/scss/assets/templates/stylesheet.scss --- old/lib/rails/generators/scss/assets/templates/stylesheet.scss 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/scss/assets/templates/stylesheet.scss 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -// Place all the styles related to the <%= name %> controller here. -// They will automatically be included in application.css. -// You can use Sass (SCSS) here: http://sass-lang.com/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rails/generators/scss/scaffold/scaffold_generator.rb new/lib/rails/generators/scss/scaffold/scaffold_generator.rb --- old/lib/rails/generators/scss/scaffold/scaffold_generator.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/rails/generators/scss/scaffold/scaffold_generator.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,10 +0,0 @@ -require "rails/generators/sass_scaffold" - -module Scss - module Generators - class ScaffoldGenerator < ::Sass::Generators::ScaffoldBase - def syntax() :scss end - end - end -end - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass/rails/cache_store.rb new/lib/sass/rails/cache_store.rb --- old/lib/sass/rails/cache_store.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/cache_store.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,31 +0,0 @@ -require 'sass' - -module Sass - module Rails - class CacheStore < ::Sass::CacheStores::Base - attr_reader :environment - - def initialize(environment) - @environment = environment - end - - def _store(key, version, sha, contents) - environment.cache_set("sass/#{key}", {:version => version, :sha => sha, :contents => contents}) - end - - def _retrieve(key, version, sha) - if obj = environment.cache_get("sass/#{key}") - return unless obj[:version] == version - return unless obj[:sha] == sha - obj[:contents] - else - nil - end - end - - def path_to(key) - key - end - end - end -end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass/rails/helpers.rb new/lib/sass/rails/helpers.rb --- old/lib/sass/rails/helpers.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/helpers.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,13 +0,0 @@ -require 'sass' -require 'sprockets/sass_functions' - -module Sprockets - module SassFunctions - remove_method :asset_data_url if method_defined?(:asset_data_url) - def asset_data_url(path) - Sass::Script::String.new("url(" + sprockets_context.asset_data_uri(path.value) + ")") - end - end -end - -::Sass::Script::Functions.send :include, Sprockets::SassFunctions diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass/rails/importer.rb new/lib/sass/rails/importer.rb --- old/lib/sass/rails/importer.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/importer.rb 2019-08-16 23:15:13.000000000 +0200 @@ -1,147 +1,5 @@ -require 'active_support/deprecation/reporting' -require 'sass' -require 'sprockets/sass_importer' -require 'tilt' +# frozen_string_literal: true -module Sass - module Rails - class SassImporter < Sass::Importers::Filesystem - module Globbing - GLOB = /(\A|\/)(\*|\*\*\/\*)\z/ +require "active_support/deprecation" - def find_relative(name, base, options) - if options[:sprockets] && m = name.match(GLOB) - path = name.sub(m[0], "") - base = File.expand_path(path, File.dirname(base)) - glob_imports(base, m[2], options) - else - super - end - end - - def find(name, options) - # globs must be relative - return if name =~ GLOB - super - end - - private - def glob_imports(base, glob, options) - contents = "" - context = options[:sprockets][:context] - each_globbed_file(base, glob, context) do |filename| - next if filename == options[:filename] - contents << "@import #{filename.inspect};\n" - end - return nil if contents == "" - Sass::Engine.new(contents, options.merge( - :filename => base, - :importer => self, - :syntax => :scss - )) - end - - def each_globbed_file(base, glob, context) - raise ArgumentError unless glob == "*" || glob == "**/*" - - exts = extensions.keys.map { |ext| Regexp.escape(".#{ext}") }.join("|") - sass_re = Regexp.compile("(#{exts})$") - - context.depend_on(base) - - Dir["#{base}/#{glob}"].sort.each do |path| - if File.directory?(path) - context.depend_on(path) - elsif sass_re =~ path - yield path - end - end - end - end - - module ERB - def extensions - { - 'css.erb' => :scss_erb, - 'scss.erb' => :scss_erb, - 'sass.erb' => :sass_erb - }.merge(super) - end - - def erb_extensions - { - :scss_erb => :scss, - :sass_erb => :sass - } - end - - def find_relative(*args) - process_erb_engine(super) - end - - def find(*args) - process_erb_engine(super) - end - - private - def process_erb_engine(engine) - if engine && engine.options[:sprockets] && syntax = erb_extensions[engine.options[:syntax]] - template = Tilt::ERBTemplate.new(engine.options[:filename]) - contents = template.render(engine.options[:sprockets][:context], {}) - - Sass::Engine.new(contents, engine.options.merge(:syntax => syntax)) - else - engine - end - end - end - - module Deprecated - def extensions - { - 'css.scss' => :scss, - 'css.sass' => :sass, - 'css.scss.erb' => :scss_erb, - 'css.sass.erb' => :sass_erb - }.merge(super) - end - - def find_relative(*args) - deprecate_extra_css_extension(super) - end - - def find(*args) - deprecate_extra_css_extension(super) - end - - private - def deprecate_extra_css_extension(engine) - if engine && filename = engine.options[:filename] - if filename.end_with?('.css.scss') - msg = "Extra .css in SCSS file is unnecessary. Rename #{filename} to #{filename.sub('.css.scss', '.scss')}." - elsif filename.end_with?('.css.sass') - msg = "Extra .css in SASS file is unnecessary. Rename #{filename} to #{filename.sub('.css.sass', '.sass')}." - elsif filename.end_with?('.css.scss.erb') - msg = "Extra .css in SCSS/ERB file is unnecessary. Rename #{filename} to #{filename.sub('.css.scss.erb', '.scss.erb')}." - elsif filename.end_with?('.css.sass.erb') - msg = "Extra .css in SASS/ERB file is unnecessary. Rename #{filename} to #{filename.sub('.css.sass.erb', '.sass.erb')}." - end - - ActiveSupport::Deprecation.warn(msg) if msg - end - - engine - end - end - - include Deprecated - include ERB - include Globbing - - # Allow .css files to be @import'd - def extensions - { 'css' => :scss }.merge(super) - end - end - end -end +ActiveSupport::Deprecation.warn "Sass::Rails::Importer has been removed, please use SassC::Rails::Importer instead." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass/rails/logger.rb new/lib/sass/rails/logger.rb --- old/lib/sass/rails/logger.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/logger.rb 2019-08-16 23:15:13.000000000 +0200 @@ -1,22 +1,5 @@ -require 'sass' -require 'sass/logger' +# frozen_string_literal: true -module Sass - module Rails - class Logger < Sass::Logger::Base - def _log(level, message) +require "active_support/deprecation" - case level - when :trace, :debug - ::Rails.logger.debug message - when :warn - ::Rails.logger.warn message - when :error - ::Rails.logger.error message - when :info - ::Rails.logger.info message - end - end - end - end -end +ActiveSupport::Deprecation.warn "Sass::Rails::Logger has been removed, please stop requiring sass/rails/logger." 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 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/railtie.rb 2019-08-16 23:15:13.000000000 +0200 @@ -1,94 +1 @@ -require 'sass' -require 'active_support/core_ext/class/attribute' -require 'sprockets/railtie' - -module Sass::Rails - class Railtie < ::Rails::Railtie - config.sass = ActiveSupport::OrderedOptions.new - - # Establish static configuration defaults - # Emit scss files during stylesheet generation of scaffold - config.sass.preferred_syntax = :scss - # Write sass cache files for performance - config.sass.cache = true - # Read sass cache files for performance - config.sass.read_cache = true - # Display line comments above each selector as a debugging aid - config.sass.line_comments = true - # Initialize the load paths to an empty array - config.sass.load_paths = [] - # Send Sass logs to Rails.logger - config.sass.logger = Sass::Rails::Logger.new - - # Set the default stylesheet engine - # It can be overridden by passing: - # --stylesheet_engine=sass - # to the rails generate command - config.app_generators.stylesheet_engine config.sass.preferred_syntax - - if config.respond_to?(:annotations) - config.annotations.register_extensions("scss", "sass") { |annotation| /\/\/\s*(#{annotation}):?\s*(.*)$/ } - end - - # Remove the sass middleware if it gets inadvertently enabled by applications. - config.after_initialize do |app| - app.config.middleware.delete(Sass::Plugin::Rack) if defined?(Sass::Plugin::Rack) - end - - initializer :setup_sass, group: :all do |app| - # Only emit one kind of syntax because though we have registered two kinds of generators - syntax = app.config.sass.preferred_syntax.to_sym - alt_syntax = syntax == :sass ? "scss" : "sass" - app.config.generators.hide_namespace alt_syntax - - # Override stylesheet engine to the preferred syntax - config.app_generators.stylesheet_engine syntax - - # Set the sass cache location - config.sass.cache_location = File.join(Rails.root, "tmp/cache/sass") - - # Establish configuration defaults that are evironmental in nature - if config.sass.full_exception.nil? - # Display a stack trace in the css output when in development-like environments. - config.sass.full_exception = app.config.consider_all_requests_local - end - - config.assets.configure do |env| - 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 - self.sass_config = app.config.sass - end - end - - Sass.logger = app.config.sass.logger - end - - initializer :setup_compression, group: :all do |app| - 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 -end +require 'sassc/rails/railtie' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass/rails/template.rb new/lib/sass/rails/template.rb --- old/lib/sass/rails/template.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/template.rb 1970-01-01 01:00:00.000000000 +0100 @@ -1,72 +0,0 @@ -require 'sass' -require 'sass/rails/cache_store' -require 'sass/rails/helpers' -require 'sprockets/sass_functions' -require 'tilt' - -module Sass - module Rails - class SassTemplate < Tilt::Template - def self.default_mime_type - 'text/css' - end - - def self.engine_initialized? - true - end - - def initialize_engine - end - - def prepare - end - - def syntax - :sass - end - - def evaluate(context, locals, &block) - cache_store = CacheStore.new(context.environment) - - options = { - :filename => eval_file, - :line => line, - :syntax => syntax, - :cache_store => cache_store, - :importer => importer_class.new(context.pathname.to_s), - :load_paths => context.environment.paths.map { |path| importer_class.new(path.to_s) }, - :sprockets => { - :context => context, - :environment => context.environment - } - } - - sass_config = context.sass_config.merge(options) - - engine = ::Sass::Engine.new(data, sass_config) - css = engine.render - - engine.dependencies.map do |dependency| - context.depend_on(dependency.options[:filename]) - end - - css - rescue ::Sass::SyntaxError => e - context.__LINE__ = e.sass_backtrace.first[:line] - raise e - end - - private - - def importer_class - SassImporter - end - end - - class ScssTemplate < SassTemplate - def syntax - :scss - end - 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 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails/version.rb 2019-08-16 23:15:13.000000000 +0200 @@ -1,5 +1,5 @@ module Sass module Rails - VERSION = "5.0.7" + VERSION = "6.0.0" end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass/rails.rb new/lib/sass/rails.rb --- old/lib/sass/rails.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass/rails.rb 2019-08-16 23:15:13.000000000 +0200 @@ -1,11 +1 @@ -module Sass - module Rails - autoload :Logger, 'sass/rails/logger' - end -end - -require 'sass/rails/version' -require 'sass/rails/helpers' -require 'sass/rails/importer' -require 'sass/rails/template' -require 'sass/rails/railtie' +require 'sassc/rails' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/sass-rails.rb new/lib/sass-rails.rb --- old/lib/sass-rails.rb 2017-11-14 20:41:13.000000000 +0100 +++ new/lib/sass-rails.rb 2019-08-16 23:15:13.000000000 +0200 @@ -1 +1 @@ -require 'sass/rails' +require 'sassc/rails' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2017-11-14 20:41:13.000000000 +0100 +++ new/metadata 2019-08-16 23:15:13.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: sass-rails version: !ruby/object:Gem::Version - version: 5.0.7 + version: 6.0.0 platform: ruby authors: - wycats @@ -9,116 +9,28 @@ autorequire: bindir: bin cert_chain: [] -date: 2017-11-14 00:00:00.000000000 Z +date: 2019-08-16 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency - name: railties + name: sassc-rails requirement: !ruby/object:Gem::Requirement requirements: - - - ">=" - - !ruby/object:Gem::Version - version: 4.0.0 - - - "<" - - !ruby/object:Gem::Version - version: '6' - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: 4.0.0 - - - "<" - - !ruby/object:Gem::Version - version: '6' -- !ruby/object:Gem::Dependency - name: sass - requirement: !ruby/object:Gem::Requirement - requirements: - - - "~>" - - !ruby/object:Gem::Version - version: '3.1' - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - "~>" - !ruby/object:Gem::Version - version: '3.1' -- !ruby/object:Gem::Dependency - name: sprockets-rails - requirement: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: '2.0' - - - "<" - - !ruby/object:Gem::Version - version: '4.0' - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: '2.0' - - - "<" - - !ruby/object:Gem::Version - version: '4.0' -- !ruby/object:Gem::Dependency - name: sprockets - requirement: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: '2.8' - - - "<" - - !ruby/object:Gem::Version - version: '4.0' - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ">=" - - !ruby/object:Gem::Version - version: '2.8' - - - "<" - - !ruby/object:Gem::Version - version: '4.0' -- !ruby/object:Gem::Dependency - name: tilt - requirement: !ruby/object:Gem::Requirement - requirements: + version: '2.1' - - ">=" - !ruby/object:Gem::Version - version: '1.1' - - - "<" - - !ruby/object:Gem::Version - version: '3' + version: 2.1.1 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 - requirements: - - - ">=" + - - "~>" - !ruby/object:Gem::Version - version: '0' - type: :development - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: + version: '2.1' - - ">=" - !ruby/object:Gem::Version - version: '0' + version: 2.1.1 description: Sass adapter for the Rails asset pipeline. email: - [email protected] @@ -129,21 +41,11 @@ files: - MIT-LICENSE - README.md -- lib/rails/generators/sass/assets/assets_generator.rb -- lib/rails/generators/sass/assets/templates/stylesheet.sass -- lib/rails/generators/sass/scaffold/scaffold_generator.rb -- lib/rails/generators/sass_scaffold.rb -- lib/rails/generators/scss/assets/assets_generator.rb -- lib/rails/generators/scss/assets/templates/stylesheet.scss -- lib/rails/generators/scss/scaffold/scaffold_generator.rb - lib/sass-rails.rb - lib/sass/rails.rb -- lib/sass/rails/cache_store.rb -- lib/sass/rails/helpers.rb - lib/sass/rails/importer.rb - lib/sass/rails/logger.rb - lib/sass/rails/railtie.rb -- lib/sass/rails/template.rb - lib/sass/rails/version.rb homepage: https://github.com/rails/sass-rails licenses: @@ -164,8 +66,7 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubyforge_project: -rubygems_version: 2.6.12 +rubygems_version: 3.0.1 signing_key: specification_version: 4 summary: Sass adapter for the Rails asset pipeline.
