-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (35 loc) · 863 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "sinatra"
gem "sinatra-contrib"
gem "puma"
gem "httparty"
gem "sinatra-flash"
gem "telephone_number"
gem "jwt"
gem "addressable"
gem "omniauth"
gem "omniauth_openid_connect"
gem "redcarpet"
gem "rackup"
gem "canister"
gem "semantic_logger"
gem "csv" # included here because httparty uses it and ought to require it
gem "ostruct"
# In order to get rspec to work for ruby 3.1. Maybe later see if it's still necessary
gem "net-smtp", require: false
gem "alma_rest_client",
git: "https://github.com/mlibrary/alma_rest_client",
tag: "1.3.1"
gem "yabeda-puma-plugin"
gem "yabeda-prometheus"
group :development, :test do
gem "standard"
gem "pry"
gem "pry-byebug"
gem "rack-test"
gem "rspec"
gem "webmock"
gem "simplecov"
gem "climate_control"
end