Skip to content

Commit

Permalink
Merge pull request #21 from skrobul/gemspec
Browse files Browse the repository at this point in the history
update gemspec: license, authors
  • Loading branch information
bjmllr committed May 23, 2015
2 parents 09f63ab + 0b8aaab commit ed0cf93
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions zenoss_client.gemspec
Original file line number Diff line number Diff line change
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 = "[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
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 ed0cf93

Please sign in to comment.