-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (27 loc) · 734 Bytes
/
Gemfile
File metadata and controls
32 lines (27 loc) · 734 Bytes
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
source "https://rubygems.org"
ruby ">= 3.2.0"
gem "rake", require: false
gem "irb"
gem "rack"
gem "sinatra"
gem "puma"
gem "dotenv"
gem "redis"
gem "addressable"
gem "rack-ssl-enforcer"
gem "secure_headers"
gem "tzinfo"
gem "nokogiri"
gem "prometheus-client", require: "prometheus/middleware/exporter"
gem "opengraph_parser"
gem "airbrake", require: false
gem "newrelic_rpm", require: false
# openssl 3.6.0 is causing issues in the version of the openssl gem that ships with Ruby. https://github.com/ruby/openssl/issues/949
gem "openssl", require: false
group :development do
gem "sinatra-contrib", require: "sinatra/reloader"
gem "powder"
# gem "binding_of_caller"
# gem "better_errors"
gem "github-release-party"
end