-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkosapi_cli.gemspec
34 lines (27 loc) · 1.48 KB
/
kosapi_cli.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "kosapi_cli/version"
Gem::Specification.new do |spec|
spec.name = "kosapi_cli"
spec.version = KOSapiCLI::VERSION
spec.authors = ["Tomas Simacek"]
spec.email = ["[email protected]"]
spec.summary = %q{CLI utility for querying KOSapi that can be used together with external tools in line wi th *unix philosophy.}
spec.description = %q{CLI utility for querying KOSapi that can be used together with external tools in line wi th *unix philosophy.}
spec.homepage = "https://github.com/simactom/kosapi_cli.rb"
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
spec.files = Dir['lib/**/*', '*.gemspec', 'LICENSE', 'README*']
spec.files += Dir['man/man?/*.?'] # UNIX manpages
spec.files += Dir['man/**/*.{html,css}'] # HTML manpages
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.0.0'
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency 'md2man', '~> 5.0'
spec.add_dependency "thor", "~> 0.20"
spec.add_dependency "kosapi_client", "~> 0.8"
spec.add_dependency 'nokogiri'
end