forked from DataDog/dogapi-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdogapi.gemspec
More file actions
32 lines (27 loc) · 1.14 KB
/
dogapi.gemspec
File metadata and controls
32 lines (27 loc) · 1.14 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
# -*- 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.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.has_rdoc = true
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', '~> 10'
spec.add_development_dependency 'rdoc'
end