@@ -6,16 +6,17 @@ require 'date'
6
6
Gem ::Specification . new do |gem |
7
7
gem . name = "zenoss_client"
8
8
gem . version = File . open ( 'VERSION' ) . readline . chomp
9
- gem . date = Date . today . to_s
9
+ gem . date = Date . today . to_s
10
10
gem . platform = Gem ::Platform ::RUBY
11
11
gem . rubyforge_project = nil
12
12
13
- gem . author = " Dan Wanek"
14
-
15
- gem . homepage = "http://github.com/zenchild /zenoss_client"
13
+ gem . authors = [ ' Dan Wanek' , 'Ben Miller' , 'Marek Skrobacki' ]
14
+
15
+ gem . homepage = "http://github.com/RubyOpenSource /zenoss_client"
16
16
17
17
gem . summary = "A wrapper around the Zenoss JSON and REST APIs"
18
- gem . description = <<-EOF
18
+ gem . license = 'GPL-3.0'
19
+ gem . description = <<-EOF
19
20
This is a wrapper around the Zenoss JSON and REST APIs. For the most things it
20
21
should feel very familiar to zendmd, but there are some changes do to the merging
21
22
of the JSON and REST APIs. Please read the API docs for Zenoss and the YARDDoc for
@@ -24,10 +25,10 @@ Gem::Specification.new do |gem|
24
25
25
26
gem . files = `git ls-files` . split ( /\n / )
26
27
gem . require_path = "lib"
27
- gem . rdoc_options = %w( -x test/ -x examples/ )
28
+ gem . rdoc_options = %w( -x test/ -x examples/ )
28
29
gem . extra_rdoc_files = %w( README.textile COPYING.txt )
29
30
30
- gem . required_ruby_version = '>= 1.8.7'
31
+ gem . required_ruby_version = '>= 1.8.7'
31
32
gem . add_runtime_dependency 'httpclient' , '~> 2.0'
32
33
gem . add_runtime_dependency 'tzinfo' , '~> 0.3.20'
33
34
gem . add_runtime_dependency 'json' , '~> 1.5'
0 commit comments