-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
66 lines (53 loc) · 1.94 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
65
66
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.0"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.1"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 6.0"
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "actionpack-action_caching", "~> 1.2"
gem "awesome_print", "~> 1.9"
gem "cancancan", "~> 3.5"
gem "chartkick", "~> 5.0"
gem "data_migrate", "~> 9.2"
gem "devise", "~> 4.9"
gem "draper", "~> 4.0"
gem "groupdate", "~> 6.4"
gem "newrelic_rpm", "~> 9.5"
gem "pry", "~> 0.14.2"
gem "slim", "~> 5.1"
gem "sqlite3", "~> 1.6"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "annotate", "~> 3.2"
gem "binding_of_caller", "~> 1.0"
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "factory_bot_rails", "~> 6.2"
gem "ffaker", "~> 2.23"
gem "fuubar", "~> 2.5"
gem "ordinare", "~> 0.4.0"
gem "rails-controller-testing", "~> 1.0"
gem "rspec-rails", "~> 6.0"
gem "slim-rails", "~> 3.6"
gem "standard", "~> 1.31"
gem "timecop", "~> 0.9.8"
end
group :development do
gem "better_errors", "~> 2.10"
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
end