-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile.example
executable file
·51 lines (44 loc) · 1.39 KB
/
Gemfile.example
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{ repo }.git" }
ruby "2.7.6"
gem "cssbundling-rails", "~> 1.1"
gem "dotenv-rails", "~> 2.8.1"
gem "jsbundling-rails", "~> 1.0"
gem "pg", "~> 1.2"
gem "puma", "~> 5.4"
gem "rails", "~> 6.1"
gem "redis", "~> 4.7.1"
gem "sass-rails", "~> 6.0"
gem "to_bool", "~> 2.0"
group :development do
gem "better_errors", "~> 2.9"
gem "foreman", "~> 0.87"
end
group :development, :test do
gem "brakeman", "5.2.3"
gem "factory_bot_rails", "~> 6.2"
gem "ffaker", "~> 2.21"
gem "pry", "~> 0.14"
gem "pry-byebug", "~> 3.10"
gem "pry-rails", "~> 0.3"
gem "pry-remote", "~> 0.1"
gem "pry-rescue", "~> 1.5"
gem "pry-stack_explorer", "~> 0.6"
gem "rubocop", "~> 1.35"
gem "rubocop-rails", "~> 2.15"
gem "rubocop-rspec", "~> 2.12"
gem "spellr", "~> 0.11"
end
group :test do
gem 'apparition', git: "https://github.com/feracommerce/apparition.git", branch: "master" # Needed to fork to pull the latest version > 0.6 that solves a warning (https://github.com/twalpole/apparition/issues/80)
gem "capybara", "~> 3.37"
gem "capybara-mechanize", "~> 1.12"
gem "database_cleaner-active_record", "~> 1.8.0"
gem "rspec-rails", "~> 5.1"
gem "rspec-retry", "~> 0.6"
gem "selenium-webdriver", "~> 3.142.7"
gem "spring", "~> 2.0"
gem "spring-commands-rspec", "~> 1.0"
gem "webdrivers", "4.4.1"
gem "webmock", "~> 3.17"
end