public
Description: Lightweight middleware for bidirectional process distribution over TCP
Homepage: http://nutrun.com
Clone URL: git://github.com/gmalamid/spinal.git
gmalamid (author)
Thu Jun 04 16:13:05 -0700 2009
commit  7ed960f142a7ed265b332abafe0cc685351c15c3
tree    4b3995d70acb649f1a9eb1ce3ad6b20333303027
parent  1612612fb61bf49b393afede15c6cf7f1bd1a975
spinal / Rakefile
100644 16 lines (13 sloc) 0.31 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "rubygems"
require "rake/testtask"
 
task :default => :test
 
Rake::TestTask.new do |t|
  t.pattern = "test/*_test.rb"
end
 
task(:check_gemspec) do
  require 'rubygems/specification'
  data = File.read('spinal.gemspec')
  spec = nil
  Thread.new { spec = eval("$SAFE = 3\n#{data}") }.join
  puts spec
end