public
Description: Running Long Background Tasks In Ruby On Rails Made Dead Simple
Homepage:
Clone URL: git://github.com/ncr/background-fu.git
Click here to lend your support to: background-fu and make a donation at www.pledgie.com !
opencomputing (author)
Mon May 18 02:18:07 -0700 2009
ncr (committer)
Mon May 18 02:27:05 -0700 2009
commit  8822b81078f4c3c4922fc9ed57697b320ccac645
tree    09ff7837b50a990b0fc24e079ffd9a6a017dc9c7
parent  e83f775e448fda24b2df3140576faa9d1d74671e
background-fu / Rakefile
100644 16 lines (13 sloc) 0.366 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rubygems'
require 'hoe'
require './lib/background_fu.rb'
 
Hoe.new('background-fu', BackgroundFu::VERSION) do |p|
  p.rubyforge_name = 'background-fu'
  p.developer('Jacek Becela', 'jacek.becela@gmail.com')
end
 
desc 'Test the background-fu plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end