-
Notifications
You must be signed in to change notification settings - Fork 0
/
netvisor.gemspec
37 lines (32 loc) · 1.5 KB
/
netvisor.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'netvisor/version'
Gem::Specification.new do |spec|
spec.name = "netvisor"
spec.version = Netvisor::VERSION
spec.authors = ["Timo Sand"]
spec.email = ["[email protected]"]
spec.summary = %q{WIP Implementation of Netvisor API in Ruby}
spec.description = <<-EOF
This gem is a ruby implementation of the Netvisor invoicing API
EOF
spec.homepage = "https://github.com/Eficode/netvisor"
spec.license = "MIT"
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.required_ruby_version = '>= 2.3.3'
spec.add_development_dependency "bundler", "~> 2.5.0"
spec.add_development_dependency "rake", "~> 13.0.0"
spec.add_development_dependency "pry", "~> 0.10.1"
spec.add_development_dependency "rspec", "~> 3.13.0"
spec.add_development_dependency "coveralls", "~> 0.8.23"
spec.add_development_dependency "json", "~> 2.7.2"
spec.add_development_dependency "rest-client", ">= 1.8.0"
spec.add_runtime_dependency 'system_timer', '~> 1.2.4' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('1.9')
spec.add_runtime_dependency 'nokogiri-happymapper', '~> 0.5.9'
spec.add_runtime_dependency 'nokogiri', '>= 1.10.4'
spec.add_runtime_dependency 'logging'
end