forked from RubyOpenSource/zenoss_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzenoss_client.gemspec
36 lines (30 loc) · 1.23 KB
/
zenoss_client.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
# -*- 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.author = "Dan Wanek"
gem.email = "dan.wanek@gmail.com"
gem.homepage = "http://github.com/zenchild/zenoss_client"
gem.summary = "A wrapper around the Zenoss JSON and REST APIs"
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 do 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 = '>= 1.8.7'
gem.add_runtime_dependency 'httpclient', '~> 2.2.0'
gem.add_runtime_dependency 'tzinfo', '~> 0.3.20'
gem.add_runtime_dependency 'json', '~> 1.5'
gem.add_development_dependency('minitest')
end