[PATCH] gemspec: fix authors and homepage info
- From:
- Eric Wong
- Date:
- 2010-04-28 @ 22:26
Oops, URLs should end with a trailing slash since I'm expecting
my webserver to load index.html. Also, it's "kcar hackers",
kcar did not write itself!
---
kcar.gemspec | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kcar.gemspec b/kcar.gemspec
index 7b1ac70..bb224e2 100644
--- a/kcar.gemspec
+++ b/kcar.gemspec
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
s.name = %q{kcar}
s.version = ENV["VERSION"]
- s.homepage = 'http://bogomips.org/kcar'
- s.authors = ["kcar"]
+ s.homepage = 'http://bogomips.org/kcar/'
+ s.authors = ["kcar hackers"]
s.date = Time.now.utc.strftime('%Y-%m-%d')
s.description = description
s.email = %q{kcar@librelist.com}
--
1.7.1.rc2
--
Eric Wong