Sha256: 3a5ce168168fa3eaa9019f65f531b4cc1ae6ac9360b1d8f27b76ff6bb2638f80

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'codeinventory/version'

Gem::Specification.new do |spec|
  spec.name          = "codeinventory"
  spec.version       = CodeInventory::VERSION
  spec.authors       = ["Jeff Fredrickson"]
  spec.email         = ["jeffrey.fredrickson@gsa.gov"]

  spec.summary       = %q{Harvests project metadata from an agency's repositories to build a code inventory.}
  spec.description   = %q{Harvests project metadata from an agency's repositories to build a code inventory. This helps agencies comply with the Federal Source Code Policy.}
  spec.homepage      = "https://github.com/GSA/codeinventory"
  spec.license       = "CC0-1.0"

  spec.files         = `git ls-files -z`.split("\x0").reject do |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.16"
  spec.add_development_dependency "rake", "~> 12.3"
  spec.add_development_dependency "minitest", "~> 5.11"
  spec.add_development_dependency "webmock", "~> 3.4"
  spec.add_development_dependency "pry", "~> 0.11"

  spec.add_runtime_dependency "octokit", "~> 4.9"
  spec.add_runtime_dependency "thor", "~> 0.20"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
codeinventory-0.3.1 codeinventory.gemspec