about summary refs log tree commit homepage
path: root/kcar.gemspec
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-04-28 12:42:48 -0700
committerEric Wong <normalperson@yhbt.net>2010-04-28 12:42:48 -0700
commitdd84d98bce03e3da529c4b51d2eba761dda749e8 (patch)
treec0e5b7d11443573957d0b7f15d47affdbccd7dcb /kcar.gemspec
parente32c35bac78a7e7d8d711d360c143c9ebc64eed2 (diff)
downloadkcar-dd84d98bce03e3da529c4b51d2eba761dda749e8.tar.gz
Diffstat (limited to 'kcar.gemspec')
-rw-r--r--kcar.gemspec40
1 files changed, 40 insertions, 0 deletions
diff --git a/kcar.gemspec b/kcar.gemspec
new file mode 100644
index 0000000..7b1ac70
--- /dev/null
+++ b/kcar.gemspec
@@ -0,0 +1,40 @@
+ENV["VERSION"] or abort "VERSION= must be specified"
+manifest = File.readlines('.manifest').map! { |x| x.chomp! }
+summary = File.readlines("README")[0].gsub(/\A=\s+\S+[^\w]+/, '').strip
+description = File.read("README").split(/\n\n/)[1].strip
+
+Gem::Specification.new do |s|
+  s.name = %q{kcar}
+  s.version = ENV["VERSION"]
+
+  s.homepage = 'http://bogomips.org/kcar'
+  s.authors = ["kcar"]
+  s.date = Time.now.utc.strftime('%Y-%m-%d')
+  s.description = description
+  s.email = %q{kcar@librelist.com}
+
+  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.rdoc_options = [
+    "-a",
+    "-t",
+    summary
+  ]
+  s.require_paths = %w(lib ext)
+  s.rubyforge_project = %q{rainbows}
+  s.summary = summary
+  s.test_files = Dir['test/test_*.rb']
+  s.extensions = %w(ext/kcar/extconf.rb)
+
+  # s.license = %w(GPL Ruby) # disabled for compatibility with older RubyGems
+end