about summary refs log tree commit homepage
path: root/rainbows.gemspec
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-02 20:44:03 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-02 21:21:28 -0700
commit37a12997628fcab722512f8a6370b92d44e33529 (patch)
tree9ced4ceaee3d4d6ce21dd1742f037d1d79a01e61 /rainbows.gemspec
downloadrainbows-37a12997628fcab722512f8a6370b92d44e33529.tar.gz
No tests yet, but the old "gossamer" and "rainbows" branches
seem to be basically working.
Diffstat (limited to 'rainbows.gemspec')
-rw-r--r--rainbows.gemspec47
1 files changed, 47 insertions, 0 deletions
diff --git a/rainbows.gemspec b/rainbows.gemspec
new file mode 100644
index 0000000..b542553
--- /dev/null
+++ b/rainbows.gemspec
@@ -0,0 +1,47 @@
+# -*- encoding: binary -*-
+
+ENV["VERSION"] or abort "VERSION= must be specified"
+manifest = File.readlines('.manifest').map! { |x| x.chomp! }
+
+# don't bother with tests that fork, not worth our time to get working
+# with `gem check -t` ... (of course we care for them when testing with
+# GNU make when they can run in parallel)
+test_files = manifest.grep(%r{\Atest/unit/test_.*\.rb\z}).map do |f|
+  File.readlines(f).grep(/\bfork\b/).empty? ? f : nil
+end.compact
+
+Gem::Specification.new do |s|
+  s.name = %q{rainbows}
+  s.version = ENV["VERSION"]
+
+  s.authors = ["Eric Wong"]
+  s.date = Time.now.utc.strftime('%Y-%m-%d')
+  s.description = File.read("README").split(/\n\n/)[1]
+  s.email = %q{rainbows-talk@rubyforge.org}
+  s.executables = %w(rainbows)
+
+  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://rainbows.rubyforge.org/}
+  s.summary = %q{Unicorn for Comet and slow clients}
+  s.rdoc_options = [ "-Na", "-t", "Rainbows #{s.summary}" ]
+  s.require_paths = %w(lib)
+  s.rubyforge_project = %q{rainbows}
+
+  s.test_files = test_files
+
+  s.add_dependency(%q<rack>)
+  s.add_dependency(%q<unicorn>, ["~> 0.93.1"])
+
+  # s.licenses = %w(GPLv2 Ruby) # accessor not compatible with older Rubygems
+end