-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
34 lines (25 loc) · 908 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
source 'http://rubygems.org'
ruby '2.2.4'
gem 'rake', '~> 12.3.0'
# uncomment if you need to update the bcl measures
gem "bcl", "~> 0.5"
gem 'nokogiri', '1.6.8.1'
# gem "bcl", :path => "../bcl-gem"
# gem 'bcl', github: 'NREL/bcl-gem', branch: 'develop'
gem 'colored', '~> 1.2'
# gem 'openstudio_measure_tester', path: "../OpenStudio-measure-tester-gem"
gem 'openstudio_measure_tester', github: "NREL/OpenStudio-measure-tester-gem"
if RUBY_PLATFORM =~ /win32/
gem 'win32console', '~> 1.3.2', platform: [:mswin, :mingw]
else
# requires native extensions
gem 'ruby-prof', '~> 0.15.1', platform: :ruby
end
gem "openstudio-standards", :git => 'https://github.com/NREL/openstudio-standards.git', :branch => 'nrcan'
#These gems are present only in nrcan's standards and nrcan's OS server aws image.
gem 'roo', '2.7.1'
gem 'aes'
gem 'rest-client','2.0.2'
gem 'pry'
gem 'parallel_tests'
gem 'parallel'