Sha256: 1e0a3dc36b4f2249a1a9e0e9ca587514d603bb99028a6f2df2251b9b1163c71d

Contents?: true

Size: 1.78 KB

Versions: 2

Compression:

Stored size: 1.78 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$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('..', __FILE__)) 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-scenario", "0.2.0.pre1"
  spec.add_dependency "urbanopt-geojson", "0.2.0.pre1"
  
  spec.add_development_dependency "bundler", "~> 1.17"
  spec.add_development_dependency "rake", "~> 12.3"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "github_api", "~> 0.18"

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
urbanopt-cli-0.2.0.pre2 uo_cli.gemspec
urbanopt-cli-0.2.0.pre1 uo_cli.gemspec