Gem spec requires author to be supplied.

This commit is contained in:
Bob Aman 2011-08-02 14:39:46 -04:00
parent f336ab34a7
commit aae60143cb
2 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,7 @@ require 'rake/rdoctask'
require 'rake/packagetask'
require 'rake/gempackagetask'
gem 'rspec', '~> 1.2.9'
begin
require 'spec/rake/spectask'
rescue LoadError
@ -27,6 +28,8 @@ PKG_HOMEPAGE = 'http://code.google.com/p/google-api-ruby-client/'
RELEASE_NAME = "REL #{PKG_VERSION}"
PKG_AUTHOR = "Bob Aman"
PKG_AUTHOR_EMAIL = "bobaman@google.com"
PKG_SUMMARY = 'Package Summary'
PKG_DESCRIPTION = <<-TEXT
The Google API Ruby Client makes it trivial to discover and access supported

View File

@ -9,6 +9,8 @@ namespace :gem do
s.name = PKG_NAME
s.version = PKG_VERSION
s.author = PKG_AUTHOR
s.email = PKG_AUTHOR_EMAIL
s.summary = PKG_SUMMARY
s.description = PKG_DESCRIPTION