Sha256: 86fe8ea4b6c439f7b28daee93727d6865bf46ad4bdc2839d10f600df1962bfdc
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'openstudio/model_articulation/version' Gem::Specification.new do |spec| spec.name = 'openstudio-model-articulation' spec.version = OpenStudio::ModelArticulation::VERSION spec.authors = ['David Goldwasser'] spec.email = ['david.goldwasser@nrel.gov'] spec.summary = 'Library and measures for OpenStudio Model Articulation' spec.description = 'Library and measures for OpenStudio Model Articulation' spec.homepage = 'https://openstudio.net' # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.14' spec.add_development_dependency 'rake', '~> 12.3' spec.add_development_dependency 'rspec', '3.7.0' spec.add_development_dependency 'rubocop', '~> 0.54.0' # OpenStudio Common Measures will inherit the OpenStudio Extension (0.1.2 -> 0.1.6) spec.add_dependency 'openstudio-common-measures', '~> 0.1.2' spec.add_dependency 'openstudio-standards', '~> 0.2.10' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openstudio-model-articulation-0.1.1 | openstudio-model-articulation.gemspec |