forked from DonovanMods/project_daedalus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
69 lines (55 loc) · 1.9 KB
/
Copy pathGemfile
File metadata and controls
69 lines (55 loc) · 1.9 KB
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
65
66
67
68
69
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.4.9"
gem "rails", "~> 7.2.3", ">= 7.2.3.1"
gem "bootsnap", require: false
gem "coderay", "~> 1.1"
gem "date", require: false
gem "dotenv-rails", "~> 2.8"
gem "google-cloud-firestore", "~> 2.8"
gem "google-cloud-storage", "~> 1.44"
gem "importmap-rails"
gem "jbuilder"
gem "propshaft"
gem "puma", "~> 6.0"
gem "rails-healthcheck", "~>1.4"
gem "redcarpet", "~> 3.5"
gem "sqlite3", "~> 1.4"
gem "stimulus-rails"
gem "tailwindcss-rails", "~>2.0"
gem "turbo-rails"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "factory_bot_rails"
gem "faker"
gem "guard", "~> 2.18"
gem "guard-rspec", "~> 4.7"
gem "rspec-rails"
end
group :development do
gem "erb_lint", "~> 0.3.1"
# Auditing
gem "abbrev" # Required for brakeman with Ruby 3.4+
gem "brakeman", "~> 5.4"
gem "bundler-audit", "~> 0.9.1"
# Debugging
gem "pry", "~> 0.14.2"
gem "pry-rails", "~> 0.3.9"
# Ruby Linter [https://github.com/rubocop/rubocop-rails]
gem "rubocop", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end