generated from dxw/rails-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
64 lines (58 loc) · 1.37 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
62
63
64
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.6"
gem "bootsnap", ">= 1.1.0", require: false
gem "high_voltage"
gem "jbuilder", "~> 2.11"
gem "lograge", "~> 0.12"
gem "pg"
gem "pry-rails"
gem "pry-byebug"
gem "puma", "~> 6.4"
gem "rollbar"
gem "rails", "~> 7.2"
gem "sass-rails", "~> 6.0"
gem "turbolinks", "~> 5" # we'll remove this once we've migrated to ESbuilt assets
gem "turbo-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "terser"
gem "httparty"
gem "view_component"
gem "seed-fu"
group :development do
gem "better_errors"
gem "listen", ">= 3.0.5", "< 3.10"
gem "rails_layout"
gem "spring"
gem "spring-commands-rspec"
gem "web-console", ">= 3.3.0"
gem "htmlbeautifier"
gem "solargraph"
end
group :development, :test do
gem "binding_of_caller"
gem "brakeman"
gem "bullet"
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv"
gem "factory_bot_rails"
gem "faker"
gem "rspec-rails"
gem "rails-controller-testing"
gem "standard"
end
group :test do
gem "capybara", ">= 2.15"
gem "capybara-screenshot"
gem "cuprite"
gem "database_cleaner"
gem "launchy"
gem "selenium-webdriver"
gem "simplecov"
gem "climate_control"
gem "webmock"
end
gem "cssbundling-rails", "~> 1.4"
gem "stimulus-rails"
gem "jsbundling-rails", "~> 1.3"