-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappoptics-api-ruby.gemspec
More file actions
31 lines (26 loc) · 994 Bytes
/
appoptics-api-ruby.gemspec
File metadata and controls
31 lines (26 loc) · 994 Bytes
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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'appoptics/metrics/version'
Gem::Specification.new do |s|
s.name = 'appoptics-api-ruby'
s.version = '2.1.4'
s.date = '2017-10-16'
s.summary = "Ruby bindings for the AppOptics API"
s.description = "An easy to use ruby wrapper for the AppOptics API"
s.authors = ["Greg McKeever", "Matt Sanders"]
s.email = 'greg@solarwinds.cloud'
s.files = ["lib/appoptics/metrics.rb"]
s.homepage =
'https://github.com/AppOptics/appoptics-api-ruby'
s.license = 'BSD-3-Clause'
s.require_paths = %w[lib]
## runtime dependencies
s.add_dependency 'faraday', '~> 0.7'
s.add_dependency 'aggregate', '~> 0.2.2'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.cert_chain = ["certs/librato-public.pem"]
if ENV['GEM_SIGNING_KEY']
s.signing_key = ENV['GEM_SIGNING_KEY']
end
end