forked from Mapotempo/balanced_vrp_clustering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (28 loc) · 810 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
source 'https://rubygems.org'
ruby '~> 2.5'
gemspec
gem 'require_all'
gem 'rake'
gem 'activesupport'
gem 'ai4r'
group :development, :test do
gem 'benchmark-ips' # to in-place benchmark of different implementations
gem 'byebug'
# For linting and offline code analysis
gem 'rubocop'
gem 'rubocop-minitest', require: false
gem 'rubocop-performance', require: false
gem 'solargraph'
# For creating dependency graphs
# gem 'rubrowser'
end
group :test do
gem 'minitest'
gem 'minitest-around' # to create a block around unit tests for initialisation and cleanup
gem 'minitest-bisect' # to identify randomly failing order-depoendent tests
gem 'minitest-focus'
gem 'minitest-reporters'
gem 'minitest-retry'
gem 'minitest-stub_any_instance'
gem 'simplecov', require: false
end