-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (53 loc) · 1.47 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
56
57
58
59
60
61
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "2.6.3"
gem "autoprefixer-rails"
gem "rack-canonical-host"
gem "passwordless"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 3.11"
gem "rails", "~> 5.2.3"
gem "sass-rails", "~> 5.0"
gem "tailwindcss", "~> 1.0.0"
gem "uglifier", ">= 1.3.0"
gem "turbolinks", "~> 5"
gem "rectify"
gem "simple_form"
gem "jbuilder", "~> 2.5"
gem "sidekiq"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker'
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.1.0", require: false
group :development, :test do
gem "rspec-rails", "~> 3.7"
gem "bullet"
gem "bundler-audit"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "pry-rails"
end
group :test do
gem 'chromedriver-helper'
gem "capybara"
gem "faker"
gem "formulaic"
gem "rspec_junit_formatter"
gem "selenium-webdriver"
gem "timecop"
gem "webmock"
gem "wisper-rspec", require: false
end
group :development do
# Access an interactive console on exception pages or by calling "console" anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5", "< 3.2"
gem "letter_opener"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring"
gem "spring-commands-rspec"
gem "spring-watcher-listen", "~> 2.0.0"
end
group :production do
gem "rack-timeout"
end