-
Notifications
You must be signed in to change notification settings - Fork 8
/
model.binary.gemspec
30 lines (27 loc) · 1.21 KB
/
model.binary.gemspec
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
begin
# If the model has already been compiled, we can check it for its version number
require_relative 'lib/model'
version = ModelStructure.instance.reported_calculator_version[/\d+\.\d+\.\d+/]
rescue LoadError => e
# Otherwise we need to take it from the changes file
version = IO.readlines(File.join(File.dirname(__FILE__),"CHANGES")).join[/#\s*(\d+\.\d+\.\d+)\b/,1]
end
if `git status --porcelain | wc -l`.to_i > 0
version = version + "pre"
end
Gem::Specification.new do |s|
s.name = "decc_2050_model"
s.required_ruby_version = ">1.9.1"
s.version = version
s.add_dependency('ffi','>= 1.0.11')
s.add_development_dependency('excel_to_code')
s.author = "Thomas Counsell, Department of Energy and Climate Change, Her Majesty's Government, UK"
s.email = "[email protected]"
s.homepage = "http://github.com/decc/decc_2050_model"
s.platform = Gem::Platform::CURRENT
s.summary = "A C version of DECC's 2050 Pathway Excel Spreadsheet (binary included version)"
s.description = File.read(File.join(File.dirname(__FILE__), 'README.markdown'))
s.license = "MIT"
s.files = ["LICENSE", "README.markdown", "{lib}/**/*",'ext/**/*.{c,h,rb}','test/**/*'].map{|p| Dir[p]}.flatten
s.has_rdoc = false
end