public
Description: SPAkit is a plugin that makes it very easy to turn your Rails App Into a "single page application" (SPA).
Homepage: http://handlino.com/blog/2008/02/17/52/
Clone URL: git://github.com/ihower/spakit.git
spakit / Rakefile
100644 12 lines (8 sloc) 0.238 kb
1
2
3
4
5
6
7
8
9
10
11
12
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
 
Hoe.new('spakit', '0.9.0') do |p|
   p.rubyforge_name = 'spakit' # if different than lowercase project name
   p.developer('Wen-Tien Chang', 'ihower@handlino.com')
end
 
# vim: syntax=Ruby