-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathzenoss_client.gemspec
More file actions
41 lines (34 loc) · 1.51 KB
/
zenoss_client.gemspec
File metadata and controls
41 lines (34 loc) · 1.51 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
33
34
35
36
37
38
39
40
41
# -*- encoding: utf-8 -*-
lib = File.expand_path('lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'date'
Gem::Specification.new do |gem|
gem.name = "zenoss_client"
gem.version = File.open('VERSION').readline.chomp
gem.date = Date.today.to_s
gem.platform = Gem::Platform::RUBY
gem.rubyforge_project = nil
gem.authors = ['Dan Wanek', 'Ben Miller', 'Marek Skrobacki', 'Taylor Etheredge']
gem.email = ['dan.wanek@gmail.com', 'bjmllr@gmail.com', 'marek@skrobacki.uk', 'taylor.etheredge@gmail.com']
gem.homepage = "http://github.com/RubyOpenSource/zenoss_client"
gem.summary = "A wrapper around the Zenoss JSON and REST APIs"
gem.license = 'GPL-3.0'
gem.description = <<-EOF
This is a wrapper around the Zenoss JSON and REST APIs. For the most things it
should feel very familiar to zendmd, but there are some changes due to the merging
of the JSON and REST APIs. Please read the API docs for Zenoss and the YARDDoc for
this gem (rdoc.info).
EOF
gem.files = `git ls-files`.split(/\n/)
gem.require_path = "lib"
gem.rdoc_options = %w(-x test/ -x examples/)
gem.extra_rdoc_files = %w(README.textile COPYING.txt)
gem.required_ruby_version = '>= 2.0.0-p648'
gem.add_runtime_dependency 'httpclient', '~> 2.0'
gem.add_runtime_dependency 'tzinfo', '~> 2.0.2'
gem.add_runtime_dependency 'json', '~> 2.3'
gem.add_development_dependency('rake')
gem.add_development_dependency('minitest')
gem.add_development_dependency('vcr')
gem.add_development_dependency('webmock')
end