From 7af25106a2e3421c1f237838109c880c4b8e0123 Mon Sep 17 00:00:00 2001 From: Mattia Roccoberton Date: Sat, 26 Mar 2022 18:00:12 +0100 Subject: [PATCH] Remove sassc dependency --- Gemfile | 11 +++++++---- README.md | 1 + activeadmin_quill_editor.gemspec | 1 - 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index 5742c99..1bccaeb 100644 --- a/Gemfile +++ b/Gemfile @@ -6,14 +6,17 @@ gemspec group :development, :test do gem 'activestorage', '~> 6.0' - gem 'capybara', '~> 3.33' gem 'puma', '~> 4.3' - gem 'rspec_junit_formatter', '~> 0.4' - gem 'rspec-rails', '~> 4.0' - gem 'selenium-webdriver', '~> 3.142' + gem 'sassc', '~> 2.4' gem 'sprockets-rails', '~> 3.2' gem 'sqlite3', '~> 1.4' + # Testing + gem 'capybara' + gem 'rspec_junit_formatter' + gem 'rspec-rails' + gem 'selenium-webdriver' + # Linters gem 'brakeman' gem 'fasterer' diff --git a/README.md b/README.md index 97cbade..7e232f7 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ After installing Active Admin, add to your Gemfile: `gem 'activeadmin_quill_edit If you installed Active Admin without Webpacker support (default for now): +- Add a SASS/SCSS gem to your Gemfile (ex. `gem 'sassc'`) - Add at the end of your Active Admin styles (_app/assets/stylesheets/active_admin.scss_): ```scss @import 'activeadmin/quill_editor/quill.snow'; diff --git a/activeadmin_quill_editor.gemspec b/activeadmin_quill_editor.gemspec index ff3cf42..86adfe2 100644 --- a/activeadmin_quill_editor.gemspec +++ b/activeadmin_quill_editor.gemspec @@ -18,5 +18,4 @@ Gem::Specification.new do |spec| spec.require_paths = ['lib'] spec.add_runtime_dependency 'activeadmin', '~> 2.0' - spec.add_runtime_dependency 'sassc', '~> 2.4' end