forked from Mapotempo/optimizer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (36 loc) · 859 Bytes
/
Gemfile
File metadata and controls
45 lines (36 loc) · 859 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
43
44
45
source 'https://rubygems.org'
gem 'require_all'
gem 'rack'
gem 'rakeup'
gem 'puma'
gem 'thin'
gem 'rack-cors'
gem 'grape', '<0.19.0' # Waiting Ruby 2.2
gem 'grape_logging'
gem 'grape-entity'
gem 'grape-swagger', '<0.26.0' # Waiting Ruby 2.2
gem 'grape-swagger-entity', '<0.1.6' # Waiting Ruby 2.2
gem 'i18n'
gem 'rack-contrib'
gem 'rest-client'
gem 'activemodel', '<5' # Waiting Ruby 2.2
gem 'active_hash', github: 'Mapotempo/active_hash'
gem 'nokogiri'
gem 'resque'
gem 'resque-status'
gem 'redis', '<4' # Waiting Ruby 2.2 (dependency from resque)
gem 'ai4r'
gem 'sim_annealing'
gem 'rgeo'
gem 'rgeo-geojson'
gem 'polylines'
gem 'google-protobuf', '>=3'
group :test do
gem 'rack-test', '<0.8' # Waiting Ruby 2.2
gem 'minitest'
gem 'minitest-reporters'
gem 'simplecov', require: false
end
group :production do
gem 'redis-activesupport'
end