Sha256: d2c2e3f340b6df0742a7f295b362ab797bba7d0bb6a6732fc69ec88a6cb65948
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/github/version' Gem::Specification.new do |spec| spec.name = "codeinventory-github" spec.version = CodeInventory::GitHub::VERSION spec.authors = ["Jeff Fredrickson"] spec.email = ["jeffrey.fredrickson@gsa.gov"] spec.summary = %q{Harvests project metadata from YAML or JSON files in GitHub repositories.} spec.description = %q{A plugin for the CodeInventory gem that harvests project metadata from YAML or JSON files in GitHub repositories.} spec.homepage = "https://github.com/GSA/codeinventory-github" 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.13" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "webmock", "~> 2.1" spec.add_development_dependency "pry", "~> 0.10" spec.add_runtime_dependency "codeinventory", "~> 0.1.0" spec.add_runtime_dependency "octokit", "~> 4.6" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
codeinventory-github-0.2.1 | codeinventory-github.gemspec |