config/hoe.rb in auth-hmac-1.0.1 vs config/hoe.rb in auth-hmac-1.1.0
- old
+ new
@@ -1,8 +1,8 @@
require 'auth-hmac/version'
-AUTHOR = 'Sean Geoghegan' # can also be an array of Authors
+AUTHOR = ['Sean Geoghegan', 'ascarter'] # can also be an array of Authors
EMAIL = "seangeo@gmail.com"
DESCRIPTION = "A gem providing HMAC based authentication for HTTP"
GEM_NAME = 'auth-hmac' # what ppl will type to install your gem
RUBYFORGE_PROJECT = 'auth-hmac' # The unix name for your project
HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
@@ -49,10 +49,11 @@
end
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
$hoe = Hoe.new(GEM_NAME, VERS) do |p|
- p.developer(AUTHOR, EMAIL)
+ p.author = AUTHOR
+ p.email = EMAIL
p.description = DESCRIPTION
p.summary = DESCRIPTION
p.url = HOMEPATH
p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
p.test_globs = ["test/**/test_*.rb"]
\ No newline at end of file