-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from skrobul/gemspec
update gemspec: license, authors
- Loading branch information
Showing
1 changed file
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,17 @@ 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.date = Date.today.to_s | ||
gem.platform = Gem::Platform::RUBY | ||
gem.rubyforge_project = nil | ||
|
||
gem.author = "Dan Wanek" | ||
gem.email = "[email protected]" | ||
gem.homepage = "http://github.com/zenchild/zenoss_client" | ||
gem.authors = ['Dan Wanek', 'Ben Miller', 'Marek Skrobacki'] | ||
gem.email = ['[email protected]', '[email protected]', '[email protected]'] | ||
gem.homepage = "http://github.com/RubyOpenSource/zenoss_client" | ||
|
||
gem.summary = "A wrapper around the Zenoss JSON and REST APIs" | ||
gem.description = <<-EOF | ||
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 do to the merging | ||
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| | |
|
||
gem.files = `git ls-files`.split(/\n/) | ||
gem.require_path = "lib" | ||
gem.rdoc_options = %w(-x test/ -x examples/) | ||
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.required_ruby_version = '>= 1.8.7' | ||
gem.add_runtime_dependency 'httpclient', '~> 2.0' | ||
gem.add_runtime_dependency 'tzinfo', '~> 0.3.20' | ||
gem.add_runtime_dependency 'json', '~> 1.5' | ||
|