frank 0.3.2 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,45 +0,0 @@
1
- env: test
2
- # ----------------------
3
- # Server settings:
4
- #
5
- # Change the server host/port to bind rack to.
6
- # 'server' can be any Rack-supported server, e.g.
7
- # Mongrel, Thin, WEBrick
8
- #
9
- server:
10
- handler: mongrel
11
- hostname: 0.0.0.0
12
- port: 3601
13
-
14
- # ----------------------
15
- # Static folder:
16
- #
17
- # All files in this folder will be served up
18
- # directly, without interpretation
19
- #
20
- static_folder: static
21
-
22
- # ----------------------
23
- # Dynamic folder:
24
- #
25
- # Frank will try to interpret any of the files
26
- # in this folder based on their extension
27
- #
28
- dynamic_folder: dynamic
29
-
30
- # ----------------------
31
- # Layouts folder:
32
- #
33
- # Frank will look for layouts in this folder
34
- # the default layout is `default'
35
- # it respects nested layouts that correspond to nested
36
- # folders in the `dynamic_folder'
37
- # for example: a template: `dynamic_folder/blog/a-blog-post.haml'
38
- # would look for a layout: `layouts/blog/default.haml'
39
- # and if not found use the default: `layouts/default.haml'
40
- #
41
- # Frank also supports defining layouts on an
42
- # individual template basis using meta data
43
- # you can do this by defining a meta field `layout: my_layout.haml'
44
- #
45
- layouts_folder: layouts