-
Notifications
You must be signed in to change notification settings - Fork 88
/
dogapi.gemspec
38 lines (32 loc) · 1.43 KB
/
dogapi.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'dogapi/version'
Gem::Specification.new do |spec|
spec.name = 'dogapi'
spec.version = Dogapi::VERSION
spec.authors = ['Datadog, Inc.']
spec.email = ['packages@datadoghq.com']
spec.description = 'Ruby bindings for Datadog\'s API'
spec.summary = spec.description
spec.homepage = 'http://datadoghq.com/'
spec.license = 'BSD'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/DataDog/dogapi-rb/issues',
'changelog_uri' => 'https://github.com/DataDog/dogapi-rb/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://docs.datadoghq.com/api/',
'source_code_uri' => 'https://github.com/DataDog/dogapi-rb'
}
spec.files = `git ls-files`.split($\)
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extra_rdoc_files = ['README.rdoc']
spec.rdoc_options << '--title' << 'DogAPI -- Datadog Client' <<
'--main' << 'README.rdoc' <<
'--line-numbers' << '--inline-source'
spec.add_dependency 'multi_json'
spec.add_development_dependency 'bundler', '>= 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rdoc'
end