From 18acdd47d6e44c6fada6ff7e3bed8e5eb4adbb07 Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Sat, 4 Apr 2020 10:28:48 -0400 Subject: [PATCH] Avoid installing uglifier (#373) With the changes in 4c63a12, we are building our rails apps in api mode so we should not need uglifier anymore. This commit also fixes one alphabetization error. --- Appraisals | 3 +-- gemfiles/rails5.0.gemfile | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Appraisals b/Appraisals index f5c0bd9..d8375ce 100644 --- a/Appraisals +++ b/Appraisals @@ -1,13 +1,12 @@ # These are the versions of Rails we want to test against. appraise "rails5.0" do - gem "sqlite3", "~> 1.3.6" gem "byebug" gem "listen", "~> 3.0.5" gem "puma", "~> 3.0" gem "rails", "~> 5.0.7", ">= 5.0.7.2" gem "spring" gem "spring-watcher-listen", "~> 2.0.0" - gem "uglifier", ">= 1.3.0" + gem "sqlite3", "~> 1.3.6" end appraise "rails5.1" do diff --git a/gemfiles/rails5.0.gemfile b/gemfiles/rails5.0.gemfile index a6c86e4..080cb16 100644 --- a/gemfiles/rails5.0.gemfile +++ b/gemfiles/rails5.0.gemfile @@ -8,13 +8,12 @@ gem "cucumber", "1.3.19" gem "rake" gem "rspec-rails" gem "rubocop", "0.54", require: false -gem "sqlite3", "~> 1.3.6" gem "byebug" gem "listen", "~> 3.0.5" gem "puma", "~> 3.0" gem "rails", "~> 5.0.7", ">= 5.0.7.2" gem "spring" gem "spring-watcher-listen", "~> 2.0.0" -gem "uglifier", ">= 1.3.0" +gem "sqlite3", "~> 1.3.6" gemspec name: "factory_bot_rails", path: "../"