forked from forsbergplustwo/partner-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (53 loc) · 1.19 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.0"
# Backend
gem "rails", "~> 7.0.5"
gem "pg", "~> 1.1"
gem "puma", "~> 6.0"
gem "redis", "~> 5.0"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "bootsnap", require: false
gem "sidekiq"
gem "rack-timeout", require: "rack/timeout/base"
gem "active_storage_validations"
gem "sendgrid-actionmailer"
gem "rubyzip"
# Frontend
gem "sprockets-rails"
gem "jsbundling-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "devise"
gem "polaris_view_components"
# Charting + Metrics Display
gem "chartkick"
gem "groupdate"
gem "convenient_grouper"
gem "prophet-rb"
# Importing
gem "csvreader"
gem "activerecord-import"
gem "graphql-client"
gem "aws-sdk-s3", require: false
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
end
group :development do
gem "web-console"
gem "pry-rails"
gem "foreman"
gem "standard"
gem "standard-rails"
gem "standard-minitest"
gem "standard-thread_safety"
gem "hotwire-livereload"
gem "letter_opener"
gem "http_logger"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
gem "mocha"
end