-
Notifications
You must be signed in to change notification settings - Fork 2
/
gurney.gemspec
26 lines (22 loc) · 1.12 KB
/
gurney.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 = ["[email protected]"]
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