Skip to content

Commit

Permalink
update gemspec: license, authors
Browse files Browse the repository at this point in the history
  • Loading branch information
skrobul committed May 23, 2015
1 parent 26d51c3 commit 0b8aaab
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions zenoss_client.gemspec
Expand Up @@ -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 = "dan.wanek@gmail.com"
gem.homepage = "http://github.com/zenchild/zenoss_client"
gem.authors = ['Dan Wanek', 'Ben Miller', 'Marek Skrobacki']
gem.email = ['dan.wanek@gmail.com', 'bjmllr@gmail.com', 'marek@skrobacki.uk']
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
Expand All @@ -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'
Expand Down

0 comments on commit 0b8aaab

Please sign in to comment.