-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Gemfile
139 lines (114 loc) · 2.8 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
source "https://rubygems.org"
ruby "3.0.7" # also update docker-compose.yml, docker-compose-production.yml, & .rubocop.yml
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
group :test, :development do
gem "pry-byebug"
gem "pry-rails"
gem "rspec-rails", "~> 6.0"
end
group :test do
# tests
gem "factory_bot_rails", require: false
gem "json-schema"
gem "json-schema-rspec"
gem "rails-controller-testing", "~> 1.0.5"
gem "simplecov", require: false
end
group :development, :hot do
# coding
gem "syntax_suggest"
# filesystem
gem "listen"
# errors+logging
gem "better_errors"
gem "binding_of_caller"
# pretty things
gem "rails-erd", require: false
gem "rubocop", require: false
gem "rubocop-rails", require: false
# profiling
gem "derailed_benchmarks"
# views
gem "rails_real_favicon"
end
group :production do
# errors+logging
gem "rollbar"
# null db for asset precompile in docker
gem "activerecord-nulldb-adapter"
end
# administration
gem "administrate"
gem "chartkick"
gem "delayed_job_web"
gem "groupdate"
# api
gem "api-pagination"
gem "blueprinter"
gem "jbuilder"
gem "oj"
gem "rack-cors", require: "rack/cors"
# authentication
gem "authie"
gem "bcrypt"
gem "omniauth"
gem "omniauth-oauth2"
gem "omniauth-google-oauth2"
gem "omniauth-twitch", github: "WebTheoryLLC/omniauth-twitch"
gem "patreon", "< 0.3.0"
# authorization
gem "cancancan"
gem "doorkeeper"
# db
gem "active_median"
gem "active_record_union"
gem "activerecord-import"
gem "aws-sdk-rails"
gem "aws-sdk-s3"
gem "friendly_uuid"
gem "order_as_specified"
gem "pg"
gem "pg_search"
gem "strong_migrations"
# errors+logging
gem "newrelic_rpm", "~> 6.12"
gem "skylight", "~> 5.0.0.beta4"
# external communication
gem "httparty"
gem "rest-client"
gem "staccato"
gem "stripe-rails"
# parsing
gem "descriptive_statistics", require: "descriptive_statistics/safe"
gem "moving_average"
# profiling
gem "memory_profiler"
gem "rack-mini-profiler"
# server/environment
gem "ffi"
gem "puma"
gem "rails", "~> 6.1"
# see https://stackoverflow.com/questions/65617143/cannot-load-such-file-webrick-httputils
gem "webrick"
# see https://github.com/faye/websocket-driver-ruby/issues/58#issuecomment-394611125
gem "websocket-driver", github: "faye/websocket-driver-ruby", ref: "ee39af83d03ae3059c775583e4c4b291641257b8"
# speediness
gem "bootsnap"
gem "dalli"
# views
gem "bootstrap4-kaminari-views"
gem "font-awesome-sass", "~> 5.9"
gem "gon"
gem "image_processing"
gem "kaminari"
gem "purecss-rails", github: "glacials/purecss-rails"
gem "sassc-rails"
gem "slim"
gem "webpacker", ">= 4.0.x"
# workers/jobs
gem "daemons"
gem "delayed_job_active_record"
gem "redis"
gem "rufus-scheduler"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]