forked from Mapotempo/geocoder-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (34 loc) · 678 Bytes
/
Gemfile
File metadata and controls
41 lines (34 loc) · 678 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
source 'https://rubygems.org'
ruby '~> 2.5.0'
gem 'rack'
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'
gem 'actionpack'
gem 'grape-erb'
gem 'geocoder', git: 'https://github.com/Mapotempo/geocoder.git'
gem 'sqlite3'
gem 'redis-activesupport'
gem 'sentry-raven'
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