about summary refs log tree commit homepage
path: root/raindrops.gemspec
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-04-07 17:07:42 -0700
committerEric Wong <normalperson@yhbt.net>2010-04-07 17:36:31 -0700
commitc3e9f5ba6fc10397f55941f36da29808a105d248 (patch)
tree705970f479064931ae07cfca0cd44013c113cb8d /raindrops.gemspec
downloadraindrops-c3e9f5ba6fc10397f55941f36da29808a105d248.tar.gz
Diffstat (limited to 'raindrops.gemspec')
-rw-r--r--raindrops.gemspec38
1 files changed, 38 insertions, 0 deletions
diff --git a/raindrops.gemspec b/raindrops.gemspec
new file mode 100644
index 0000000..9b175f5
--- /dev/null
+++ b/raindrops.gemspec
@@ -0,0 +1,38 @@
+# -*- encoding: binary -*-
+
+ENV["VERSION"] or abort "VERSION= must be specified"
+manifest = File.readlines('.manifest').map! { |x| x.chomp! }
+test_files = manifest.grep(%r{\Atest/test_.*\.rb\z})
+
+Gem::Specification.new do |s|
+  s.name = %q{raindrops}
+  s.version = ENV["VERSION"]
+
+  s.authors = ["raindrops hackers"]
+  s.date = Time.now.utc.strftime('%Y-%m-%d')
+  s.description = File.read("README").split(/\n\n/)[1]
+  s.email = %q{raindrops@librelist.com}
+  s.extensions = %w(ext/raindrops/extconf.rb)
+
+  s.extra_rdoc_files = File.readlines('.document').map! do |x|
+    x.chomp!
+    if File.directory?(x)
+      manifest.grep(%r{\A#{x}/})
+    elsif File.file?(x)
+      x
+    else
+      nil
+    end
+  end.flatten.compact
+
+  s.files = manifest
+  s.homepage = %q{http://raindrops.bogomips.org/}
+  s.summary = %q{real-time stats for Rack servers}
+  s.rdoc_options = [ "-Na", "-t", "raindrops - #{s.summary}" ]
+  s.require_paths = %w(lib)
+  s.rubyforge_project = %q{raindrops}
+
+  s.test_files = test_files
+
+  # s.licenses = %w(LGPLv3) # accessor not compatible with older RubyGems
+end