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 / History.txt
100644 48 lines (27 sloc) 1.109 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
== 0.9.10 (October 25, 2008)
* Updated to work with Haml 2.0.3. [jlong]
 
== 0.9.9 (September 19, 2008)
* Fixed ERB partial support. [jlong]
* Added support for content_for blocks in ERB. [jlong]
 
== 0.9.8 (July 18, 2008)
 
* Added experimental support for ERB layouts. [Lawjoskar]
 
== 0.9.7 (July 17, 2008)
 
* Added experimental support for view helpers. [aiwilliams]
* Added limited support for ERB. Layouts are not yet supported. [jlong]
 
== 0.9.6 (February 20, 2008)
 
* Changed default port to 4000 so that serve plays nicely with Rails apps.
* Rearranged source.
 
== 0.9.5 (February 19, 2008)
 
* Added support for rendering other files with the following syntax:
 
  render :template => "template_name"
 
== 0.9.4 (January 31, 2008)
 
* Small fix for calculating the partial name in render_partial.
 
== 0.9.3 (January 23, 2008)
 
* Added support for layouts and partials for HAML documents.
 
== 0.9.2 (January 17, 2008)
 
* Added support for redirects.
 
== 0.9.1 (October 19, 2007)
 
* Added basic support for email mockups.
* Updated description and help text.
 
== 0.9.0 (September 25, 2007)
 
* Initial release