1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot_rails.git synced 2022-11-09 11:49:18 -05:00

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.
This commit is contained in:
Daniel Colson 2020-04-04 10:28:48 -04:00 committed by GitHub
parent 4c63a128a7
commit 18acdd47d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -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

View file

@ -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: "../"