-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (29 loc) · 756 Bytes
/
Gemfile
File metadata and controls
33 lines (29 loc) · 756 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
33
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "sinatra"
gem "faraday-follow_redirects"
gem "puma"
gem "yabeda-puma-plugin"
gem "yabeda-prometheus"
gem "activesupport" # in here because of timezone support
gem "sinatra-flash"
gem "rackup"
gem "ostruct"
gem "alma_rest_client",
git: "https://github.com/mlibrary/alma_rest_client",
tag: "alma_rest_client/v2.2.0"
# In order to get rspec to work for ruby 3.3. Maybe later see if it's still necessary
gem "net-smtp", require: false
group :development do
gem "sinatra-contrib"
gem "listen"
end
group :development, :test do
gem "standard"
gem "debug"
gem "rack-test"
gem "rspec"
gem "webmock"
gem "simplecov"
gem "climate_control"
end