This repository has been archived by the owner on Dec 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
wss_agent.gemspec
38 lines (34 loc) · 1.6 KB
/
wss_agent.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
27
28
29
30
31
32
33
34
35
36
37
38
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'wss_agent/version'
Gem::Specification.new do |spec|
spec.name = 'wss_agent'
spec.version = WssAgent::VERSION
spec.authors = ['Maxim Pechnikov']
spec.email = ['[email protected]']
spec.summary = 'White Source agent.'
spec.description = 'White Source agent to sync gems'
spec.homepage = 'https://github.com/whitesource/ruby-plugin'
spec.license = 'Apache-2.0'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.executables = %w[wss_agent]
spec.add_development_dependency 'bundler', '~> 1.7'
spec.add_development_dependency 'pry', '~> 0.11.3'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.5'
spec.add_development_dependency 'timecop', '~> 0.9.1'
spec.add_development_dependency 'vcr', '~> 4.0'
spec.add_development_dependency 'webmock', '~> 3.1'
spec.add_development_dependency 'yard', '~> 0.9', '~> 0.9.12'
spec.add_dependency 'awesome_print', '~> 1.6', '>= 1.6.1'
spec.add_dependency 'excon', '~> 0.45'
spec.add_dependency 'faraday', '~> 0.12'
spec.add_dependency 'faraday_middleware', '~> 0.12'
spec.add_dependency 'multi_json', '~> 1.12', '>= 1.12.1'
spec.add_dependency 'psych', '~> 3.0'
spec.add_dependency 'thor', '~> 0.19', '>= 0.19.1'
spec.add_dependency 'yell', '~> 2.0', '>= 2.0.5'
end