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.1' spec.add_development_dependency 'rspec', '3.7.0' spec.add_development_dependency 'rubocop', '~> 0.54.0' # do not require openstudio-extension since openstudio-common-measures inherits from it. # spec.add_dependency 'openstudio-extension', '~> 0.1.3' spec.add_dependency 'openstudio-common-measures', '~> 0.1.0' spec.add_dependency 'openstudio-standards', '~> 0.2.10' end