-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
174 lines (133 loc) · 3.26 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.0"
# Base Rails stuff
gem "rails", "~> 7"
gem "bootsnap", require: false
# Data Stores
# * Postgres
# * Redis
gem "pg"
gem "redis"#, "~> 3.0"
gem "hiredis"
gem "connection_pool"
# Temp for image exports
# gem "sequel"
# gem "sqlite3"
# gem "aws-sdk-s3", "~> 1"
# Caching - Rails 5.2 shipped with a redis cache for fragments, but doesn't
# provide session storage via redis too, which redis-actionpack does.
gem "redis-actionpack"
gem "redis-rack-cache"
# CORS & other Security
gem "rack-cors"
gem "rack-attack"
# Needed for has_secure_password
gem "bcrypt"
# Server
gem "puma"#, "~> 3.11"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data"
# Views
gem "haml"
gem "haml-rails"
gem "view_component"
gem "redcarpet"
gem "inline_svg"
# Javascript and CSS
gem "propshaft"
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "turbo-rails"
gem "stimulus-rails"
# Better link styling
gem "active_link_to"
# Pagination
gem "kaminari"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# ActiveJob Worker, Cron Schedulers
# gem "sidekiq"
gem "good_job"
# Logs
gem "logster", github: "discourse/logster", branch: "redis_4_6"
# Auth
# Provider
gem "doorkeeper"
# Consumer
# gem "omniauth-rails_csrf_protection"
# gem "omniauth-apple"
# gem "omniauth-twitter"
# gem "omniauth-github"
# Permissions
gem "pundit", github: "elabs/pundit"
# Request making
gem "http"
gem "addressable"
# gem "robotstxt-parser", require: "robotstxt"
# Parsing/HTML handling
gem "nokogiri"
# gem "loofah"
# gem "ruby-readability"
# gem "stopwords-filter"
gem "marcel", "~> 1.0"
# gem "parslet"
gem "aws-sdk-s3", require: false
gem "exception_notification"
gem "slack-notifier"
# API Documentation from RAD
gem "raddocs"
gem "annotate"
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem "web-console"
gem "listen"
end
group :development, :test do
# Runner & Environment
gem "foreman"
gem "dotenv-rails"
# Better Debugging
gem "debug", platforms: %i[ mri mingw x64_mingw ]
# Document everything
gem "yard"#, ">= 0.9.20"
# Test everything
gem "rspec"
gem "rspec-rails", "~> 4.0.0"
# Build out better factories than the yaml fixtures
gem "factory_bot_rails"
# Auto-runners for tests and docs
gem "guard"
gem "guard-yard"
gem "guard-rspec"
# Handle mail intercepting in development
gem "mailcatcher"
# Document the API through rspec tests
gem "rspec_api_documentation"
gem "json_matchers"#, "~> 0.9"
end
group :test do
# Adds support for Capybara system testing and selenium driver with headless
# chrome
# gem "capybara"#, "~> 2.13"
# gem "capybara-selenium"
# gem "selenium-webdriver"
# gem "chromedriver-helper"
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
# Test rack things
gem "rack-test"#, "~> 0.7.0"
# A Mockery of Requests
gem "webmock"
# Coverage reports
gem "simplecov", require: false
# Cleanup
gem "database_cleaner"
end
group :test, :development, :ci do
# Check things
gem "rubocop", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rails", require: false
end