Revert "DEV: Avoid duplication of gems in gemfile." (#14784)

This reverts commit 2818ebd19f.
This commit is contained in:
Vinoth Kannan 2021-11-01 17:58:24 +05:30 committed by GitHub
parent 28b00dc6fc
commit 44b3b614bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -181,9 +181,14 @@ group :development do
gem 'yaml-lint' gem 'yaml-lint'
end end
group ENV["ALLOW_DEV_POPULATE"] == "1" ? :production : :development do if ENV["ALLOW_DEV_POPULATE"] == "1"
gem 'discourse_dev_assets' gem 'discourse_dev_assets'
gem 'faker', "~> 2.16" gem 'faker', "~> 2.16"
else
group :development do
gem 'discourse_dev_assets'
gem 'faker', "~> 2.16"
end
end end
# this is an optional gem, it provides a high performance replacement # this is an optional gem, it provides a high performance replacement