Sha256: f0f3000292fbf93133c7ef7079af968d8d13081dd0ec3223ceeb4aeaa9f0201c

Contents?: true

Size: 1.84 KB

Versions: 1

Compression:

Stored size: 1.84 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'uo_cli/version'

Gem::Specification.new do |spec|
  spec.name            = 'urbanopt-cli'
  spec.version         = URBANopt::CLI::VERSION
  spec.authors         = ['Nathan Moore']
  spec.email           = ['nathan.moore@nrel.gov']

  spec.summary         = 'URBANopt CLI'
  spec.description     = 'Interfacing with URBANopt'
  spec.homepage        = 'https://docs.urbanopt.net/'

  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = 'https://rubygems.org/'
    spec.metadata['homepage_uri'] = spec.homepage
  else
    raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
  end

  # 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 = 'bin'
  # spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.executables = ['uo']
  spec.require_paths = ['lib']
  spec.required_ruby_version = '~> 2.2.4'

  #   use specific versions of these dependencies while using Ruby 2.2
  spec.add_development_dependency 'rack', '2.1.2'

  #   use specific versions of urbanopt and openstudio dependencies while under heavy development
  spec.add_dependency 'urbanopt-geojson', '0.2.0'
  spec.add_dependency 'urbanopt-reopt', '0.2.1'
  spec.add_dependency 'urbanopt-scenario', '0.2.0'

  spec.add_development_dependency 'bundler', '~> 1.17'
  spec.add_development_dependency 'github_api', '~> 0.18'
  spec.add_development_dependency 'rake', '~> 12.3'
  spec.add_development_dependency 'rspec', '~> 3.7'
  spec.add_development_dependency 'rubocop', '~> 0.54.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
urbanopt-cli-0.2.3 uo_cli.gemspec