Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to sassc-rails as Ruby Sass is deprecated #3072

Closed
wants to merge 9 commits into from
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -4,6 +4,7 @@ gem 'appraisal', '>= 2.0'
gem 'rails'
gem 'haml'
gem 'devise'
gem 'sassc-rails'

group :active_record do
gem 'paper_trail'
Expand Down
1 change: 1 addition & 0 deletions gemfiles/cancan.gemfile
Expand Up @@ -7,6 +7,7 @@ gem "rails", "~> 5.1.0"
gem "haml"
gem "devise", "~> 4.0"
gem "sass-rails", "~> 5.0"
gem "sassc-rails"

group :active_record do
gem "paper_trail"
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_4.0.gemfile
Expand Up @@ -7,6 +7,7 @@ gem "rails", "~> 4.0.0"
gem "haml"
gem "devise", ">= 3.2"
gem "sass-rails", "~> 4.0.3"
gem "sassc-rails"
gem "test-unit"
gem "capybara", ">= 0.8", group: :test
gem "kaminari", "~> 0.14"
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_4.1.gemfile
Expand Up @@ -5,6 +5,7 @@ source "https://rubygems.org"
gem "appraisal", ">= 2.0"
gem "rails", "~> 4.1.0"
gem "haml"
gem "sassc-rails"
gem "devise", ">= 3.2"
gem "capybara", ">= 0.8", group: :test

Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_4.2.gemfile
Expand Up @@ -7,6 +7,7 @@ gem "rails", "~> 4.2.0"
gem "haml"
gem "devise", ">= 3.4"
gem "sass-rails", "~> 5.0"
gem "sassc-rails"
gem "capybara", ">= 0.8", group: :test

group :active_record do
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_5.1.gemfile
Expand Up @@ -7,6 +7,7 @@ gem "rails", "~> 5.1.0"
gem "haml"
gem "devise", "~> 4.0"
gem "sass-rails", "~> 5.0"
gem "sassc-rails"

group :active_record do
gem "paper_trail", ">= 5.0"
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_5.2.gemfile
Expand Up @@ -7,6 +7,7 @@ gem "rails", "~> 5.2.0"
gem "haml"
gem "devise", "~> 4.4"
gem "sass-rails", "~> 5.0"
gem "sassc-rails"

group :active_record do
gem "paper_trail", ">= 5.0"
Expand Down
1 change: 1 addition & 0 deletions rails_admin.gemspec
Expand Up @@ -17,6 +17,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'rails', ['>= 4.0', '< 6']
spec.add_dependency 'remotipart', '~> 1.3'
spec.add_dependency 'sass-rails', ['>= 4.0', '< 6']
spec.add_dependency 'sassc-rails', ['>= 1.3', '< 2']
spec.add_development_dependency 'bundler', '~> 1.0'
spec.authors = ['Erik Michaels-Ober', 'Bogdan Gaza', 'Petteri Kaapa', 'Benoit Benezech', 'Mitsuhiro Shibuya']
spec.description = 'RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.'
Expand Down