forked from librato/librato-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrato-metrics.gemspec
42 lines (31 loc) · 1.31 KB
/
librato-metrics.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
39
40
41
42
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'librato/metrics/version'
Gem::Specification.new do |s|
s.specification_version = 2 if s.respond_to? :specification_version=
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.rubygems_version = '1.3.5'
s.required_ruby_version = '>= 1.9'
s.name = 'librato-metrics'
s.version = Librato::Metrics::VERSION
s.license = 'BSD 3-clause'
s.summary = "Ruby wrapper for Librato's Metrics API"
s.description = "An easy to use ruby wrapper for Librato's Metrics API"
s.authors = ["Matt Sanders"]
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/librato/librato-metrics'
s.require_paths = %w[lib]
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[LICENSE]
## runtime dependencies
s.add_dependency 'faraday'
s.add_dependency 'aggregate', '~> 0.2.2'
# omitting for now because jruby-19mode can't handle
#s.add_development_dependency 'rdiscount' # for yard
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