Gem spec requires author to be supplied.
This commit is contained in:
parent
f336ab34a7
commit
aae60143cb
3
Rakefile
3
Rakefile
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue