about summary refs log tree commit
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-12-13 23:17:12 +0000
committerEric Wong <normalperson@yhbt.net>2010-12-13 15:18:16 -0800
commit13436a949181580ccba4bee0ec17e367533a2385 (patch)
tree06e38430ba46efe12b92d6e6ffb12d4d8190d20f
parent8c91c7755e30a95bf3a92fb65861c01274f554b4 (diff)
downloadmetropolis-13436a949181580ccba4bee0ec17e367533a2385.tar.gz
fix RAA listing
We're NOT Ruby licensed, we're AGPLv3 damnit.
-rw-r--r--Rakefile9
-rw-r--r--metropolis.gemspec2
2 files changed, 7 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index 5759974..5d03a19 100644
--- a/Rakefile
+++ b/Rakefile
@@ -116,6 +116,9 @@ task :raa_update do
   s = Gem::Specification.load('metropolis.gemspec')
   desc = [ s.description.strip ]
   desc << ""
+  desc << "Metropolis is licensed under the terms of the AGPLv3, " \
+          "but RAA doesn't have a field for it"
+  desc << ""
   desc << "* #{s.email}"
   desc << "* #{git_url}"
   desc << "* #{cgit_url}"
@@ -125,14 +128,14 @@ task :raa_update do
     :name => s.name,
     :short_description => s.summary,
     :version => s.version.to_s,
-    :status => 'stable',
+    :status => 'experimental',
     :owner => s.authors.first,
     :email => s.email,
     :category_major => 'Library',
     :category_minor => 'Web',
     :url => s.homepage,
-    :download => "http://rubyforge.org/frs/?group_id=1306",
-    :license => "Ruby's",
+    :download => "http://rubyforge.org/frs/?group_id=8977",
+    :license => "OpenSource", # AGPLv3, actually
     :description_style => 'Plain',
     :description => desc,
     :pass => password,
diff --git a/metropolis.gemspec b/metropolis.gemspec
index e06ef04..3517fd8 100644
--- a/metropolis.gemspec
+++ b/metropolis.gemspec
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
   s.files = manifest
   s.homepage = %q{http://metropolis.bogomips.org/}
 
-  summary = File.readlines("README")[0].delete('\'')
+  summary = File.readlines("README")[0].split(/\s*:\s*/)[1]
   s.rdoc_options = [ "-t", summary ]
   s.require_paths = %w(lib)
   s.rubyforge_project = %q{rainbows}