Sha256: 1c70091bb13356cd36ff9596b0c19e66f231b5e2ef6b9f2a2efe44b2cdbf9a43

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "gurney/version"

Gem::Specification.new do |spec|
  spec.name          = "gurney_client"
  spec.version       = Gurney::VERSION
  spec.authors       = ["Martin Schaflitzl"]
  spec.email         = ["martin.schaflitzl@makandra.de"]

  spec.summary       = 'Gurney is a small tool to extract yarn and RubyGems dependencies from project files and report them to a web api.'
  spec.homepage      = "https://github.com/makandra/gurney"
  spec.license       = "MIT"
  spec.metadata      = { 'rubygems_mfa_required' => 'true' }

  spec.files         = `git ls-files`.split("\n").reject { |f| f.match(%r{^(test|spec|features|bin)/}) }
  spec.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency 'colorize', '~> 0.8'
  spec.add_runtime_dependency 'httparty', '~> 0.17.1'
  spec.add_runtime_dependency 'bundler', '< 3'
  spec.add_runtime_dependency 'git', '~> 1.5'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gurney_client-0.4.0 gurney.gemspec
gurney_client-0.3.0 gurney.gemspec
gurney_client-0.2.3 gurney.gemspec
gurney_client-0.2.2 gurney.gemspec