-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstackify-api-ruby.gemspec
More file actions
32 lines (27 loc) · 1.15 KB
/
stackify-api-ruby.gemspec
File metadata and controls
32 lines (27 loc) · 1.15 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stackify/version'
Gem::Specification.new do |spec|
spec.name = 'stackify-api-ruby'
spec.version = Stackify::VERSION
spec.authors = ['Stackify']
spec.email = ['[email protected]']
spec.summary = 'Stackify API for Ruby'
spec.description = 'Stackify Logs and Metrics API for Ruby'
spec.homepage = 'http://www.stackify.com/'
spec.license = 'Apache-2.0'
spec.required_ruby_version = '>= 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.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
if RUBY_PLATFORM =~ /mingw32|win32|x64/
spec.add_development_dependency 'tzinfo-data'
end
spec.add_runtime_dependency 'faraday', '~> 0.8'
spec.add_runtime_dependency 'net_http_unix', '~> 0.2'
end