-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
55 lines (47 loc) · 1.15 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in adminterface.gemspec.
gemspec
group :development do
# Test application against different versions
gem "appraisal"
# Streamline gem release
gem "gem-release"
# List out all dependencies licenses
gem "license_finder"
end
group :development, :test do
# Databases to test against
gem "pg"
gem "mysql2"
gem "sqlite3"
gem "webpacker", "~> 5.4.3"
# Use Factory to create fake data
gem "faker"
gem "factory_bot_rails"
# Use Devise for authentication
gem "devise"
# Use OmniAuth for OAuth
gem "omniauth"
gem "omniauth-oauth2"
# Formtastic inputs addons
gem "country_select"
gem "sassc-rails"
gem "standardrb"
gem "byebug"
gem "puma"
# Use Letter Opener to debug email on development
gem "letter_opener"
end
group :test do
# For system and integration tests
gem "capybara"
gem "webdrivers"
gem "webmock"
gem "vcr"
gem "mocha"
# For test coverage reports
gem "simplecov", require: false
gem "simplecov_json_formatter", require: false
gem "simplecov-console", require: false
end