-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (35 loc) · 738 Bytes
/
Gemfile
File metadata and controls
42 lines (35 loc) · 738 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
34
35
36
37
38
39
40
41
42
source 'https://rubygems.org'
ruby '~> 2.7.0'
gem 'rack', '2.2.8'
gem 'rake'
gem 'puma'
gem 'rack-cors'
gem 'rack-server-pages'
gem 'grape'
gem 'grape_logging'
gem 'grape-entity'
gem 'grape-swagger'
gem 'grape-swagger-entity'
gem 'rack-contrib'
gem 'rest-client'
gem 'border_patrol'
gem 'activesupport', '6.1.7.6'
gem 'actionpack', '6.1.7.6'
gem 'grape-erb'
gem 'geocoder', '>= 1.8' # For Geocoder Here v7 compatibility
gem 'sqlite3', '< 1.5'
gem 'redis-activesupport'
gem 'sentry-raven'
gem 'nokogiri', '1.14'
group :test do
gem 'rack-test'
gem 'minitest'
gem 'minitest-focus'
gem 'minitest-reporters'
gem 'simplecov', require: false
gem 'fakeredis'
end
group :development, :test do
gem 'byebug'
gem 'rubocop'
end