-
Notifications
You must be signed in to change notification settings - Fork 12
/
gems.rb
39 lines (32 loc) · 925 Bytes
/
gems.rb
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby Pathname.new(".ruby-version").expand_path(__dir__).read
gem "rails", "~> 5.2.3"
gem "apexcharts"
gem "aws-sdk-s3", "~> 1.46"
gem "bootsnap", ">= 1.1.0", require: false
gem "bulk_insert", git: "https://github.com/jamis/bulk_insert.git"
gem "honeybadger", "~> 4.11"
gem "lograge", "~> 0.11.2"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 4.1"
gem "sidekiq", "~> 5.2"
gem "webpacker", "~> 4.0"
# Gems in both rubygems.org and gems.contribsys.com
gem "redis"
gem "connection_pool"
gem "rack-protection"
gem "concurrent-ruby"
gem "rack"
group :development, :test do
gem "pry-byebug", require: false
gem "pry-rails", "~> 0.3.9"
gem "rspec-rails", "~> 3.8"
end
group :development do
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5", "< 3.2"
end
source "https://gems.contribsys.com/" do
gem "sidekiq-pro"
end