forked from gjko/OpenStudio-BEopt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (27 loc) · 935 Bytes
/
Gemfile
File metadata and controls
38 lines (27 loc) · 935 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
source 'http://rubygems.org'
gem 'rake', '~> 11.2.2'
gem 'nokogiri', '~> 1.6', '<= 1.6.8.1'
# uncomment if you need to update the bcl measures
gem "bcl", "0.5.6"
# gem 'bcl', git: 'https://github.com/NREL/bcl-gem', branch: 'develop'
# Specify the JSON dependency so that rubocop and other gem do not try to install it
gem 'json', '~> 1.8'
gem 'colored', '~> 1.2'
if RUBY_PLATFORM =~ /win32/
gem 'win32console', '~> 1.3.2', platform: [:mswin, :mingw]
end
group :test do
gem 'minitest', '~> 5.9'
gem 'rubocop', '~> 0.49.0'
gem 'rubocop-checkstyle_formatter', '~> 0.1.1'
gem 'ci_reporter_minitest', '~> 1.0.0'
gem 'coveralls'
gem 'minitest-reporters'
gem 'minitest-ci', :git => 'https://github.com/circleci/minitest-ci.git' # For CircleCI Automatic test metadata collection
end
gem 'docker-api', require: 'docker'
gem 'ffi', '~> 1.9.18'
gem 'rest-client', '~> 2.0.1'
gem 'parallel'
gem 'rubyzip'
gem 'ruby-prof'