-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
50 lines (45 loc) · 979 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(".ruby-version").strip
gem "bcrypt"
gem "bootsnap", require: false
gem "haml"
gem "importmap-rails"
gem "pg"
gem "puma"
gem "rails"
gem "redis"
gem "rake"
gem "sprockets-rails"
gem "stimulus-rails"
gem "tailwindcss-rails"
gem "turbo-rails"
group :development, :test do
gem "awesome_print"
gem "bundler-audit"
gem "factory_bot_rails"
gem "pry-byebug"
gem "pry-rails"
gem "rspec-rails"
gem "rubocop", require: false
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "standard", "> 1"
end
group :development do
gem "better_errors"
gem "binding_of_caller"
gem "brakeman", require: false
gem "foreman"
gem "rails_best_practices"
end
group :test do
gem "capybara"
gem "email_spec", "2.2.0"
gem "launchy"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "simplecov", require: false
gem "webdrivers"
end