public
Description: Serve is a rapid prototyping framework for Rails applications. It is designed to compliment Rails development and enforce a strict separation of concerns between designer and developer. Using Serve with Rails allows the designer to happily work in his own space creating an HTML prototype of the application, while the developer works on the Rails application and copies over HTML from the prototype as needed. This allows the designer to focus on presentation and flow while the developer can focus on the implementation.
Homepage: http://rubyforge.org/projects/serve/
Clone URL: git://github.com/jlong/serve.git
serve / Rakefile
100644 13 lines (10 sloc) 0.235 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'config/requirements'
require 'config/hoe' # setup Hoe + all gem configuration
 
Dir['tasks/**/*.rake'].each { |rake| load rake }
 
undefine_task %w(
default
test
test_deps
config_hoe
)
 
task :default => :spec