ramaze 0.3.5 → 0.3.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. data/Rakefile +5 -20
  2. data/bin/ramaze +0 -4
  3. data/doc/AUTHORS +5 -0
  4. data/doc/meta/announcement.txt +2 -1
  5. data/doc/tutorial/todolist.html +20 -21
  6. data/doc/tutorial/todolist.mkd +10 -9
  7. data/examples/blog/{src/controller.rb → controller/main.rb} +2 -0
  8. data/examples/blog/{src/model.rb → model/entry.rb} +0 -0
  9. data/examples/blog/spec/blog.rb +3 -3
  10. data/examples/blog/start.rb +2 -3
  11. data/examples/blog/view/edit.xhtml +17 -0
  12. data/examples/blog/view/index.xhtml +17 -0
  13. data/examples/blog/view/layout.xhtml +11 -0
  14. data/examples/blog/view/new.xhtml +16 -0
  15. data/examples/facebook.rb +15 -8
  16. data/examples/identity.rb +1 -1
  17. data/examples/memleak_detector.rb +1 -1
  18. data/examples/rammit/src/model.rb +1 -1
  19. data/examples/rapaste/controller/paste.rb +7 -7
  20. data/examples/rapaste/model/paste.rb +1 -3
  21. data/examples/rapaste/public/css/display.css +2 -1
  22. data/examples/rapaste/start.rb +2 -3
  23. data/examples/sourceview/sourceview.rb +1 -1
  24. data/examples/templates/template/external.tenjin +28 -0
  25. data/examples/templates/template_amrita2.rb +0 -3
  26. data/examples/templates/template_tenjin.rb +57 -0
  27. data/examples/todolist/spec/todolist.rb +13 -2
  28. data/examples/todolist/src/controller/main.rb +1 -1
  29. data/examples/todolist/template/index.xhtml +1 -1
  30. data/examples/wiktacular/spec/wiktacular.rb +18 -0
  31. data/examples/wiktacular/src/controller.rb +2 -2
  32. data/examples/wiktacular/src/model.rb +8 -2
  33. data/lib/proto/public/css/ramaze_error.css +4 -0
  34. data/lib/proto/public/dispatch.fcgi +11 -0
  35. data/lib/proto/spec/main.rb +1 -1
  36. data/lib/proto/start.ru +8 -0
  37. data/lib/proto/view/error.xhtml +2 -0
  38. data/lib/ramaze.rb +28 -5
  39. data/lib/ramaze/action.rb +9 -2
  40. data/lib/ramaze/action/render.rb +40 -24
  41. data/lib/ramaze/adapter.rb +10 -17
  42. data/lib/ramaze/adapter/base.rb +8 -12
  43. data/lib/ramaze/adapter/cgi.rb +14 -13
  44. data/lib/ramaze/adapter/ebb.rb +34 -0
  45. data/lib/ramaze/adapter/evented_mongrel.rb +1 -1
  46. data/lib/ramaze/adapter/fcgi.rb +14 -14
  47. data/lib/ramaze/adapter/lsws.rb +15 -11
  48. data/lib/ramaze/adapter/mongrel.rb +2 -1
  49. data/lib/ramaze/adapter/scgi.rb +24 -0
  50. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +1 -1
  51. data/lib/ramaze/adapter/thin.rb +4 -5
  52. data/lib/ramaze/adapter/webrick.rb +5 -5
  53. data/lib/ramaze/cache.rb +1 -1
  54. data/lib/ramaze/cache/memcached.rb +1 -1
  55. data/lib/ramaze/contrib.rb +70 -10
  56. data/lib/ramaze/contrib/auto_params.rb +1 -1
  57. data/lib/ramaze/contrib/email.rb +15 -15
  58. data/lib/ramaze/contrib/facebook.rb +2 -2
  59. data/lib/ramaze/contrib/facebook/facebook.rb +7 -4
  60. data/lib/ramaze/contrib/file_cache.rb +65 -0
  61. data/lib/ramaze/contrib/gettext.rb +56 -55
  62. data/lib/ramaze/contrib/profiling.rb +36 -0
  63. data/lib/ramaze/contrib/sequel_cache.rb +92 -0
  64. data/lib/ramaze/controller.rb +80 -47
  65. data/lib/ramaze/controller/error.rb +10 -5
  66. data/lib/ramaze/controller/resolve.rb +36 -48
  67. data/lib/ramaze/current.rb +70 -0
  68. data/lib/ramaze/{trinity → current}/request.rb +62 -15
  69. data/lib/ramaze/current/response.rb +19 -0
  70. data/lib/ramaze/{trinity → current}/session.rb +32 -110
  71. data/lib/ramaze/current/session/flash.rb +67 -0
  72. data/lib/ramaze/current/session/hash.rb +65 -0
  73. data/lib/ramaze/dispatcher.rb +1 -28
  74. data/lib/ramaze/dispatcher/action.rb +6 -3
  75. data/lib/ramaze/dispatcher/directory.rb +1 -1
  76. data/lib/ramaze/dispatcher/error.rb +26 -5
  77. data/lib/ramaze/dispatcher/file.rb +13 -2
  78. data/lib/ramaze/gestalt.rb +3 -1
  79. data/lib/ramaze/global.rb +6 -3
  80. data/lib/ramaze/global/globalstruct.rb +3 -1
  81. data/lib/ramaze/helper.rb +66 -20
  82. data/lib/ramaze/helper/aspect.rb +25 -17
  83. data/lib/ramaze/helper/auth.rb +4 -3
  84. data/lib/ramaze/helper/cache.rb +5 -4
  85. data/lib/ramaze/helper/cgi.rb +11 -9
  86. data/lib/ramaze/helper/flash.rb +28 -3
  87. data/lib/ramaze/helper/formatting.rb +1 -3
  88. data/lib/ramaze/helper/identity.rb +2 -3
  89. data/lib/ramaze/helper/inform.rb +7 -6
  90. data/lib/ramaze/helper/link.rb +15 -17
  91. data/lib/ramaze/helper/markaby.rb +2 -4
  92. data/lib/ramaze/helper/maruku.rb +1 -1
  93. data/lib/ramaze/helper/nitroform.rb +4 -4
  94. data/lib/ramaze/helper/pager.rb +4 -6
  95. data/lib/ramaze/helper/partial.rb +24 -21
  96. data/lib/ramaze/helper/redirect.rb +8 -5
  97. data/lib/ramaze/helper/{file.rb → sendfile.rb} +1 -3
  98. data/lib/ramaze/helper/sequel.rb +1 -3
  99. data/lib/ramaze/helper/stack.rb +1 -3
  100. data/lib/ramaze/helper/tagz.rb +19 -0
  101. data/lib/ramaze/helper/user.rb +63 -0
  102. data/lib/ramaze/inform.rb +2 -24
  103. data/lib/ramaze/log.rb +28 -0
  104. data/lib/ramaze/{inform → log}/analogger.rb +3 -3
  105. data/lib/ramaze/{inform → log}/growl.rb +2 -2
  106. data/lib/ramaze/{inform → log}/hub.rb +4 -6
  107. data/lib/ramaze/{inform → log}/informer.rb +4 -4
  108. data/lib/ramaze/{inform → log}/knotify.rb +2 -2
  109. data/lib/ramaze/log/logger.rb +22 -0
  110. data/lib/ramaze/{inform/informing.rb → log/logging.rb} +16 -16
  111. data/lib/ramaze/{inform → log}/syslog.rb +0 -0
  112. data/lib/ramaze/{inform → log}/xosd.rb +2 -2
  113. data/lib/ramaze/route.rb +64 -36
  114. data/lib/ramaze/snippets/array/put_within.rb +13 -0
  115. data/lib/ramaze/snippets/binding/locals.rb +13 -0
  116. data/lib/ramaze/snippets/kernel/__dir__.rb +10 -8
  117. data/lib/ramaze/snippets/kernel/aquire.rb +1 -1
  118. data/lib/ramaze/snippets/kernel/constant.rb +1 -1
  119. data/lib/ramaze/snippets/object/pretty.rb +6 -0
  120. data/lib/ramaze/snippets/object/scope.rb +11 -0
  121. data/lib/ramaze/snippets/object/thread_accessor.rb +5 -0
  122. data/lib/ramaze/snippets/ordered_set.rb +1 -1
  123. data/lib/ramaze/snippets/proc/locals.rb +11 -0
  124. data/lib/ramaze/snippets/ramaze/thread_accessor.rb +44 -0
  125. data/lib/ramaze/snippets/string/esc.rb +29 -0
  126. data/lib/ramaze/snippets/string/start_with.rb +7 -0
  127. data/lib/ramaze/snippets/string/unindent.rb +6 -1
  128. data/lib/ramaze/snippets/struct/values_at.rb +1 -5
  129. data/lib/ramaze/sourcereload.rb +16 -14
  130. data/lib/ramaze/spec.rb +1 -0
  131. data/lib/ramaze/spec/helper.rb +11 -3
  132. data/lib/ramaze/spec/helper/browser.rb +25 -1
  133. data/lib/ramaze/spec/helper/pretty_output.rb +11 -11
  134. data/lib/ramaze/template.rb +5 -4
  135. data/lib/ramaze/template/amrita2.rb +2 -3
  136. data/lib/ramaze/template/ezamar/element.rb +2 -3
  137. data/lib/ramaze/template/ezamar/morpher.rb +1 -2
  138. data/lib/ramaze/template/ezamar/render_partial.rb +1 -1
  139. data/lib/ramaze/template/haml.rb +5 -2
  140. data/lib/ramaze/template/markaby.rb +2 -0
  141. data/lib/ramaze/template/tagz.rb +79 -0
  142. data/lib/ramaze/template/tenjin.rb +34 -0
  143. data/lib/ramaze/tool/create.rb +0 -3
  144. data/lib/ramaze/tool/localize.rb +107 -105
  145. data/lib/ramaze/tool/mime.rb +0 -2
  146. data/lib/ramaze/trinity.rb +1 -26
  147. data/lib/ramaze/version.rb +1 -1
  148. data/lib/vendor/bacon.rb +47 -41
  149. data/rake_tasks/conf.rake +18 -0
  150. data/rake_tasks/darcs.rake +5 -0
  151. data/rake_tasks/maintenance.rake +37 -24
  152. data/rake_tasks/spec.rake +1 -1
  153. data/spec/contrib/auto_params.rb +3 -1
  154. data/spec/contrib/profiling.rb +26 -0
  155. data/spec/examples/templates/template_redcloth.rb +1 -1
  156. data/spec/examples/templates/template_tenjin.rb +28 -0
  157. data/spec/helper.rb +0 -1
  158. data/spec/ramaze/action/layout.rb +28 -0
  159. data/spec/ramaze/controller/actionless_templates.rb +32 -0
  160. data/spec/ramaze/controller/template/other_wrapper.xhtml +1 -0
  161. data/spec/ramaze/controller/template_resolving.rb +37 -0
  162. data/spec/ramaze/{trinity → current}/request.rb +12 -2
  163. data/spec/ramaze/current/session.rb +97 -0
  164. data/spec/ramaze/dispatcher/directory.rb +2 -1
  165. data/spec/ramaze/dispatcher/file.rb +8 -3
  166. data/spec/ramaze/dispatcher/public/file name.txt +1 -0
  167. data/spec/ramaze/gestalt.rb +11 -0
  168. data/spec/ramaze/helper/aspect.rb +28 -22
  169. data/spec/ramaze/helper/cgi.rb +2 -2
  170. data/spec/ramaze/helper/flash.rb +33 -15
  171. data/spec/ramaze/helper/formatting.rb +2 -2
  172. data/spec/ramaze/helper/link.rb +46 -18
  173. data/spec/ramaze/helper/pager.rb +8 -5
  174. data/spec/ramaze/helper/partial.rb +8 -1
  175. data/spec/ramaze/helper/template/recursive_local_ivars.xhtml +7 -0
  176. data/spec/ramaze/helper/user.rb +46 -0
  177. data/spec/ramaze/{inform → log}/informer.rb +0 -0
  178. data/spec/ramaze/{inform → log}/syslog.rb +1 -1
  179. data/spec/ramaze/request.rb +14 -10
  180. data/spec/ramaze/route.rb +23 -0
  181. data/spec/ramaze/template.rb +48 -1
  182. data/spec/ramaze/template/haml.rb +6 -16
  183. data/spec/ramaze/template/haml/locals.haml +2 -1
  184. data/spec/ramaze/template/tagz.rb +62 -0
  185. data/spec/ramaze/template/tagz/external.tagz +8 -0
  186. data/spec/ramaze/template/tagz/sum.tagz +1 -0
  187. data/spec/ramaze/template/tenjin.rb +49 -0
  188. data/spec/ramaze/template/tenjin/external.tenjin +1 -0
  189. data/spec/snippets/string/unindent.rb +15 -0
  190. metadata +509 -475
  191. data/doc/README.html +0 -729
  192. data/doc/changes.txt +0 -5757
  193. data/doc/changes.xml +0 -5759
  194. data/examples/blog/src/view.rb +0 -16
  195. data/examples/blog/template/edit.xhtml +0 -19
  196. data/examples/blog/template/index.xhtml +0 -19
  197. data/examples/blog/template/new.xhtml +0 -18
  198. data/examples/wiktacular/mkd/newpagename/current.mkd +0 -1
  199. data/examples/wiktacular/mkd/newpagename/current.mkd.bak +0 -1
  200. data/lib/ramaze/contrib/email.rb-darcs-backup0 +0 -81
  201. data/lib/ramaze/template/bijou.rb +0 -39
  202. data/lib/ramaze/trinity/response.rb +0 -32
  203. data/spec/ramaze/template/bijou.rb +0 -25
  204. data/spec/ramaze/trinity/session.rb +0 -29
@@ -0,0 +1,8 @@
1
+ html_{
2
+ head_{
3
+ title_{ "Tagz Test" }
4
+ }
5
+ body_{
6
+ h1_{ "Tagz Template" }
7
+ }
8
+ }
@@ -0,0 +1 @@
1
+ div_{ @num1 + @num2 }
@@ -0,0 +1,49 @@
1
+ require 'spec/helper'
2
+
3
+ spec_require 'tenjin'
4
+
5
+ class TCTemplateTenjinController < Ramaze::Controller
6
+ template_root __DIR__/:tenjin
7
+ engine :Tenjin
8
+
9
+ def index
10
+ 'Tenjin Index'
11
+ end
12
+
13
+ def external(num1, num2)
14
+ @context = {
15
+ :num1 => num1.to_i,
16
+ :num2 => num2.to_i
17
+ }
18
+ end
19
+
20
+ def internal
21
+ '<?rb @test = :internal ?>#{@test}'
22
+ end
23
+
24
+ def escape_html
25
+ @context = {:html => "<br />"}
26
+ '#{@html}${@html}'
27
+ end
28
+ end
29
+
30
+ describe "Tenjin templates" do
31
+ behaves_like 'http'
32
+ ramaze(:mapping => {'/' => TCTemplateTenjinController})
33
+
34
+ it "index" do
35
+ get('/').body.should == 'Tenjin Index'
36
+ end
37
+
38
+ it "external" do
39
+ get('/external/1/2').body.should == '3'
40
+ end
41
+
42
+ it "internal" do
43
+ get('/internal').body.should == "internal"
44
+ end
45
+
46
+ it "escape html" do
47
+ get('/escape_html').body.should == "<br />&lt;br /&gt;"
48
+ end
49
+ end
@@ -0,0 +1 @@
1
+ #{@num1 + @num2}
@@ -19,4 +19,19 @@ doing)
19
19
  it 'should not break on a single line' do
20
20
  'word'.unindent.should == 'word'
21
21
  end
22
+
23
+ it 'should find the first line with indentation' do
24
+ %( hi
25
+ there
26
+ bob).ui.should == \
27
+ %(hi
28
+ there
29
+ bob)
30
+ end
31
+
32
+ it 'should have destructive version' do
33
+ str = %( 1\n 2\n 3)
34
+ str.ui!
35
+ str.should == %(1\n 2\n3)
36
+ end
22
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ramaze
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - manveru
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-01-28 00:00:00 +09:00
12
+ date: 2008-03-16 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -50,643 +50,677 @@ files:
50
50
  - doc/CHANGELOG
51
51
  - Rakefile
52
52
  - examples/auth
53
+ - examples/auth/auth.rb
53
54
  - examples/auth/template
54
55
  - examples/auth/template/layout.haml
55
56
  - examples/auth/template/login.haml
56
- - examples/auth/auth.rb
57
57
  - examples/blog
58
- - examples/blog/src
59
- - examples/blog/src/model.rb
60
- - examples/blog/src/controller.rb
61
- - examples/blog/src/view.rb
62
- - examples/blog/spec
63
- - examples/blog/spec/blog.rb
64
- - examples/blog/README
65
- - examples/blog/template
66
- - examples/blog/template/new.xhtml
67
- - examples/blog/template/edit.xhtml
68
- - examples/blog/template/index.xhtml
58
+ - examples/blog/controller
59
+ - examples/blog/controller/main.rb
60
+ - examples/blog/model
61
+ - examples/blog/model/entry.rb
69
62
  - examples/blog/public
70
63
  - examples/blog/public/styles
71
64
  - examples/blog/public/styles/blog.css
65
+ - examples/blog/README
66
+ - examples/blog/spec
67
+ - examples/blog/spec/blog.rb
72
68
  - examples/blog/start.rb
69
+ - examples/blog/view
70
+ - examples/blog/view/edit.xhtml
71
+ - examples/blog/view/index.xhtml
72
+ - examples/blog/view/layout.xhtml
73
+ - examples/blog/view/new.xhtml
74
+ - examples/caching.rb
75
+ - examples/css.rb
76
+ - examples/element.rb
77
+ - examples/facebook.rb
78
+ - examples/hello.rb
79
+ - examples/identity.rb
80
+ - examples/layout.rb
81
+ - examples/linking.rb
82
+ - examples/memleak_detector.rb
83
+ - examples/nitro_form.rb
84
+ - examples/ramaise.rb
85
+ - examples/rammit
86
+ - examples/rammit/spec
87
+ - examples/rammit/spec/rammit.rb
88
+ - examples/rammit/src
89
+ - examples/rammit/src/controller
90
+ - examples/rammit/src/controller/main.rb
91
+ - examples/rammit/src/controller/page.rb
92
+ - examples/rammit/src/model.rb
93
+ - examples/rammit/start.rb
94
+ - examples/rammit/template
95
+ - examples/rammit/template/index.xhtml
96
+ - examples/rammit/template/page
97
+ - examples/rammit/template/page/view.xhtml
73
98
  - examples/rapaste
74
- - examples/rapaste/spec
75
- - examples/rapaste/spec/rapaste.rb
76
- - examples/rapaste/view
77
- - examples/rapaste/view/view.xhtml
78
- - examples/rapaste/view/layout.xhtml
79
- - examples/rapaste/view/search.xhtml
80
- - examples/rapaste/view/list.xhtml
81
- - examples/rapaste/view/copy.xhtml
82
- - examples/rapaste/view/index.xhtml
83
- - examples/rapaste/model
84
- - examples/rapaste/model/paste.rb
85
- - examples/rapaste/Rakefile
86
99
  - examples/rapaste/controller
87
100
  - examples/rapaste/controller/paste.rb
101
+ - examples/rapaste/model
102
+ - examples/rapaste/model/paste.rb
88
103
  - examples/rapaste/public
89
- - examples/rapaste/public/js
90
- - examples/rapaste/public/js/jquery.js
91
104
  - examples/rapaste/public/css
92
- - examples/rapaste/public/css/iplastic.css
93
- - examples/rapaste/public/css/espresso_libre.css
94
- - examples/rapaste/public/css/dawn.css
95
105
  - examples/rapaste/public/css/active4d.css
96
- - examples/rapaste/public/css/display.css
97
- - examples/rapaste/public/css/zenburnesque.css
106
+ - examples/rapaste/public/css/all_hallows_eve.css
107
+ - examples/rapaste/public/css/amy.css
108
+ - examples/rapaste/public/css/blackboard.css
98
109
  - examples/rapaste/public/css/brilliance_black.css
99
- - examples/rapaste/public/css/idle.css
100
- - examples/rapaste/public/css/sunburst.css
101
- - examples/rapaste/public/css/twilight.css
102
- - examples/rapaste/public/css/mac_classic.css
103
- - examples/rapaste/public/css/slush_poppies.css
110
+ - examples/rapaste/public/css/brilliance_dull.css
104
111
  - examples/rapaste/public/css/cobalt.css
105
- - examples/rapaste/public/css/blackboard.css
106
- - examples/rapaste/public/css/all_hallows_eve.css
107
- - examples/rapaste/public/css/pastels_on_dark.css
112
+ - examples/rapaste/public/css/dawn.css
113
+ - examples/rapaste/public/css/display.css
108
114
  - examples/rapaste/public/css/eiffel.css
109
- - examples/rapaste/public/css/brilliance_dull.css
110
- - examples/rapaste/public/css/amy.css
115
+ - examples/rapaste/public/css/espresso_libre.css
116
+ - examples/rapaste/public/css/idle.css
117
+ - examples/rapaste/public/css/iplastic.css
118
+ - examples/rapaste/public/css/lazy.css
119
+ - examples/rapaste/public/css/mac_classic.css
111
120
  - examples/rapaste/public/css/magicwb_amiga.css
121
+ - examples/rapaste/public/css/pastels_on_dark.css
122
+ - examples/rapaste/public/css/slush_poppies.css
112
123
  - examples/rapaste/public/css/spacecadet.css
113
- - examples/rapaste/public/css/lazy.css
124
+ - examples/rapaste/public/css/sunburst.css
125
+ - examples/rapaste/public/css/twilight.css
126
+ - examples/rapaste/public/css/zenburnesque.css
127
+ - examples/rapaste/public/js
128
+ - examples/rapaste/public/js/jquery.js
129
+ - examples/rapaste/Rakefile
130
+ - examples/rapaste/spec
131
+ - examples/rapaste/spec/rapaste.rb
114
132
  - examples/rapaste/start.rb
115
- - examples/nitro_form.rb
116
- - examples/caching.rb
117
- - examples/wiktacular
118
- - examples/wiktacular/mkd
119
- - examples/wiktacular/mkd/link
120
- - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
121
- - examples/wiktacular/mkd/link/current.mkd
122
- - examples/wiktacular/mkd/main
123
- - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
124
- - examples/wiktacular/mkd/main/current.mkd
125
- - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
126
- - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
127
- - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
128
- - examples/wiktacular/mkd/newpagename
129
- - examples/wiktacular/mkd/newpagename/current.mkd
130
- - examples/wiktacular/mkd/newpagename/current.mkd.bak
131
- - examples/wiktacular/mkd/testing
132
- - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
133
- - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
134
- - examples/wiktacular/mkd/testing/current.mkd
135
- - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
136
- - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
137
- - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
138
- - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
139
- - examples/wiktacular/mkd/markdown
140
- - examples/wiktacular/mkd/markdown/current.mkd
141
- - examples/wiktacular/src
142
- - examples/wiktacular/src/model.rb
143
- - examples/wiktacular/src/controller.rb
144
- - examples/wiktacular/spec
145
- - examples/wiktacular/spec/wiktacular.rb
146
- - examples/wiktacular/README
147
- - examples/wiktacular/template
148
- - examples/wiktacular/template/new.xhtml
149
- - examples/wiktacular/template/html_layout.xhtml
150
- - examples/wiktacular/template/edit.xhtml
151
- - examples/wiktacular/template/index.xhtml
152
- - examples/wiktacular/public
153
- - examples/wiktacular/public/favicon.ico
154
- - examples/wiktacular/public/screen.css
155
- - examples/wiktacular/start.rb
133
+ - examples/rapaste/view
134
+ - examples/rapaste/view/copy.xhtml
135
+ - examples/rapaste/view/index.xhtml
136
+ - examples/rapaste/view/layout.xhtml
137
+ - examples/rapaste/view/list.xhtml
138
+ - examples/rapaste/view/search.xhtml
139
+ - examples/rapaste/view/view.xhtml
140
+ - examples/simple.rb
141
+ - examples/simple_auth.rb
156
142
  - examples/sourceview
157
- - examples/sourceview/template
158
- - examples/sourceview/template/index.haml
159
143
  - examples/sourceview/public
160
- - examples/sourceview/public/jquery.treeview.css
161
- - examples/sourceview/public/jquery.treeview.js
162
- - examples/sourceview/public/jquery.js
144
+ - examples/sourceview/public/coderay.css
163
145
  - examples/sourceview/public/images
164
146
  - examples/sourceview/public/images/file.gif
165
147
  - examples/sourceview/public/images/folder.gif
166
148
  - examples/sourceview/public/images/tv-collapsable-last.gif
167
149
  - examples/sourceview/public/images/tv-collapsable.gif
168
- - examples/sourceview/public/images/tv-item.gif
150
+ - examples/sourceview/public/images/tv-expandable-last.gif
169
151
  - examples/sourceview/public/images/tv-expandable.gif
170
152
  - examples/sourceview/public/images/tv-item-last.gif
171
- - examples/sourceview/public/images/tv-expandable-last.gif
172
- - examples/sourceview/public/coderay.css
153
+ - examples/sourceview/public/images/tv-item.gif
154
+ - examples/sourceview/public/jquery.js
155
+ - examples/sourceview/public/jquery.treeview.css
156
+ - examples/sourceview/public/jquery.treeview.js
173
157
  - examples/sourceview/public/sourceview.js
174
158
  - examples/sourceview/sourceview.rb
175
- - examples/simple_auth.rb
176
- - examples/css.rb
177
- - examples/memleak_detector.rb
159
+ - examples/sourceview/template
160
+ - examples/sourceview/template/index.haml
161
+ - examples/templates
162
+ - examples/templates/template
163
+ - examples/templates/template/external.amrita
164
+ - examples/templates/template/external.haml
165
+ - examples/templates/template/external.liquid
166
+ - examples/templates/template/external.mab
167
+ - examples/templates/template/external.nag
168
+ - examples/templates/template/external.redcloth
169
+ - examples/templates/template/external.rem
170
+ - examples/templates/template/external.rhtml
171
+ - examples/templates/template/external.tenjin
172
+ - examples/templates/template/external.xsl
173
+ - examples/templates/template/external.zmr
174
+ - examples/templates/template_amrita2.rb
175
+ - examples/templates/template_erubis.rb
176
+ - examples/templates/template_ezamar.rb
177
+ - examples/templates/template_haml.rb
178
+ - examples/templates/template_liquid.rb
179
+ - examples/templates/template_markaby.rb
180
+ - examples/templates/template_nagoro.rb
181
+ - examples/templates/template_redcloth.rb
182
+ - examples/templates/template_remarkably.rb
183
+ - examples/templates/template_tenjin.rb
184
+ - examples/templates/template_xslt.rb
178
185
  - examples/todolist
186
+ - examples/todolist/public
187
+ - examples/todolist/public/css
188
+ - examples/todolist/public/favicon.ico
189
+ - examples/todolist/public/js
190
+ - examples/todolist/public/js/jquery.js
191
+ - examples/todolist/public/ramaze.png
192
+ - examples/todolist/README
193
+ - examples/todolist/spec
194
+ - examples/todolist/spec/todolist.rb
179
195
  - examples/todolist/src
196
+ - examples/todolist/src/controller
197
+ - examples/todolist/src/controller/main.rb
180
198
  - examples/todolist/src/element
181
199
  - examples/todolist/src/element/page.rb
182
200
  - examples/todolist/src/model.rb
183
- - examples/todolist/src/controller
184
- - examples/todolist/src/controller/main.rb
185
- - examples/todolist/spec
186
- - examples/todolist/spec/todolist.rb
187
- - examples/todolist/README
201
+ - examples/todolist/start.rb
188
202
  - examples/todolist/template
189
- - examples/todolist/template/new.xhtml
190
203
  - examples/todolist/template/index.xhtml
191
- - examples/todolist/public
192
- - examples/todolist/public/js
193
- - examples/todolist/public/js/jquery.js
194
- - examples/todolist/public/css
195
- - examples/todolist/public/favicon.ico
196
- - examples/todolist/public/ramaze.png
197
- - examples/todolist/start.rb
198
- - examples/facebook.rb
199
- - examples/rammit
200
- - examples/rammit/src
201
- - examples/rammit/src/model.rb
202
- - examples/rammit/src/controller
203
- - examples/rammit/src/controller/main.rb
204
- - examples/rammit/src/controller/page.rb
205
- - examples/rammit/spec
206
- - examples/rammit/spec/rammit.rb
207
- - examples/rammit/template
208
- - examples/rammit/template/page
209
- - examples/rammit/template/page/view.xhtml
210
- - examples/rammit/template/index.xhtml
211
- - examples/rammit/start.rb
212
- - examples/identity.rb
204
+ - examples/todolist/template/new.xhtml
213
205
  - examples/upload
214
- - examples/upload/view
215
- - examples/upload/view/index.xhtml
216
206
  - examples/upload/public
217
207
  - examples/upload/start.rb
218
- - examples/layout.rb
219
- - examples/wikore
220
- - examples/wikore/src
221
- - examples/wikore/src/model.rb
222
- - examples/wikore/src/controller.rb
223
- - examples/wikore/spec
224
- - examples/wikore/spec/wikore.rb
225
- - examples/wikore/template
226
- - examples/wikore/template/index.xhtml
227
- - examples/wikore/public
228
- - examples/wikore/start.rb
229
- - examples/element.rb
230
- - examples/simple.rb
208
+ - examples/upload/view
209
+ - examples/upload/view/index.xhtml
231
210
  - examples/whywiki
232
211
  - examples/whywiki/spec
233
212
  - examples/whywiki/spec/whywiki.rb
213
+ - examples/whywiki/start.rb
234
214
  - examples/whywiki/template
235
- - examples/whywiki/template/show.xhtml
236
215
  - examples/whywiki/template/edit.xhtml
237
- - examples/whywiki/start.rb
238
- - examples/ramaise.rb
239
- - examples/linking.rb
240
- - examples/hello.rb
241
- - examples/templates
242
- - examples/templates/template_ezamar.rb
243
- - examples/templates/template_erubis.rb
244
- - examples/templates/template_nagoro.rb
245
- - examples/templates/template_remarkably.rb
246
- - examples/templates/template_liquid.rb
247
- - examples/templates/template
248
- - examples/templates/template/external.mab
249
- - examples/templates/template/external.nag
250
- - examples/templates/template/external.rem
251
- - examples/templates/template/external.xsl
252
- - examples/templates/template/external.zmr
253
- - examples/templates/template/external.amrita
254
- - examples/templates/template/external.liquid
255
- - examples/templates/template/external.rhtml
256
- - examples/templates/template/external.haml
257
- - examples/templates/template/external.redcloth
258
- - examples/templates/template_redcloth.rb
259
- - examples/templates/template_amrita2.rb
260
- - examples/templates/template_haml.rb
261
- - examples/templates/template_markaby.rb
262
- - examples/templates/template_xslt.rb
216
+ - examples/whywiki/template/show.xhtml
217
+ - examples/wikore
218
+ - examples/wikore/public
219
+ - examples/wikore/spec
220
+ - examples/wikore/spec/wikore.rb
221
+ - examples/wikore/src
222
+ - examples/wikore/src/controller.rb
223
+ - examples/wikore/src/model.rb
224
+ - examples/wikore/start.rb
225
+ - examples/wikore/template
226
+ - examples/wikore/template/index.xhtml
227
+ - examples/wiktacular
228
+ - examples/wiktacular/mkd
229
+ - examples/wiktacular/mkd/link
230
+ - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
231
+ - examples/wiktacular/mkd/link/current.mkd
232
+ - examples/wiktacular/mkd/main
233
+ - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
234
+ - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
235
+ - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
236
+ - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
237
+ - examples/wiktacular/mkd/main/current.mkd
238
+ - examples/wiktacular/mkd/markdown
239
+ - examples/wiktacular/mkd/markdown/current.mkd
240
+ - examples/wiktacular/mkd/testing
241
+ - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
242
+ - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
243
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
244
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
245
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
246
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
247
+ - examples/wiktacular/mkd/testing/current.mkd
248
+ - examples/wiktacular/public
249
+ - examples/wiktacular/public/favicon.ico
250
+ - examples/wiktacular/public/screen.css
251
+ - examples/wiktacular/README
252
+ - examples/wiktacular/spec
253
+ - examples/wiktacular/spec/wiktacular.rb
254
+ - examples/wiktacular/src
255
+ - examples/wiktacular/src/controller.rb
256
+ - examples/wiktacular/src/model.rb
257
+ - examples/wiktacular/start.rb
258
+ - examples/wiktacular/template
259
+ - examples/wiktacular/template/edit.xhtml
260
+ - examples/wiktacular/template/html_layout.xhtml
261
+ - examples/wiktacular/template/index.xhtml
262
+ - examples/wiktacular/template/new.xhtml
263
263
  - bin/ramaze
264
+ - doc/AUTHORS
265
+ - doc/COPYING
264
266
  - doc/GPL
265
- - doc/TODO
267
+ - doc/INSTALL
268
+ - doc/LEGAL
266
269
  - doc/meta
267
- - doc/meta/internals.txt
268
- - doc/meta/configuration.txt
269
270
  - doc/meta/announcement.txt
271
+ - doc/meta/configuration.txt
272
+ - doc/meta/internals.txt
270
273
  - doc/meta/users.kml
271
- - doc/LEGAL
272
274
  - doc/migrate
273
275
  - doc/migrate/1110_to_1111.txt
276
+ - doc/ProjectInfo
274
277
  - doc/readme_chunks
275
278
  - doc/readme_chunks/appendix.txt
276
- - doc/readme_chunks/thanks.txt
277
- - doc/readme_chunks/principles.txt
278
- - doc/readme_chunks/introduction.txt
279
- - doc/readme_chunks/getting_started.txt
280
279
  - doc/readme_chunks/examples.txt
281
- - doc/readme_chunks/installing.txt
282
280
  - doc/readme_chunks/features.txt
283
281
  - doc/readme_chunks/getting_help.txt
284
- - doc/output
285
- - doc/output/tools
286
- - doc/output/tools/rcov
282
+ - doc/readme_chunks/getting_started.txt
283
+ - doc/readme_chunks/installing.txt
284
+ - doc/readme_chunks/introduction.txt
285
+ - doc/readme_chunks/principles.txt
286
+ - doc/readme_chunks/thanks.txt
287
+ - doc/TODO
287
288
  - doc/tutorial
288
289
  - doc/tutorial/todolist.html
289
290
  - doc/tutorial/todolist.mkd
290
- - doc/AUTHORS
291
- - doc/README.html
292
- - doc/INSTALL
293
- - doc/COPYING
294
- - doc/ProjectInfo
295
- - doc/changes.txt
296
- - doc/changes.xml
297
291
  - spec/contrib
298
292
  - spec/contrib/auto_params.rb
293
+ - spec/contrib/profiling.rb
299
294
  - spec/contrib/route.rb
300
295
  - spec/contrib/sequel
301
296
  - spec/contrib/sequel/fill.rb
297
+ - spec/examples
298
+ - spec/examples/caching.rb
299
+ - spec/examples/css.rb
300
+ - spec/examples/element.rb
301
+ - spec/examples/hello.rb
302
+ - spec/examples/linking.rb
303
+ - spec/examples/simple.rb
304
+ - spec/examples/templates
305
+ - spec/examples/templates/template_amrita2.rb
306
+ - spec/examples/templates/template_erubis.rb
307
+ - spec/examples/templates/template_ezamar.rb
308
+ - spec/examples/templates/template_haml.rb
309
+ - spec/examples/templates/template_liquid.rb
310
+ - spec/examples/templates/template_markaby.rb
311
+ - spec/examples/templates/template_redcloth.rb
312
+ - spec/examples/templates/template_remarkably.rb
313
+ - spec/examples/templates/template_tenjin.rb
314
+ - spec/helper.rb
302
315
  - spec/ramaze
303
- - spec/ramaze/request
304
- - spec/ramaze/request/mongrel.rb
305
- - spec/ramaze/request/webrick.rb
306
- - spec/ramaze/request/thin.rb
307
- - spec/ramaze/store
308
- - spec/ramaze/store/default.rb
309
- - spec/ramaze/error.rb
310
- - spec/ramaze/template
311
- - spec/ramaze/template/haml
312
- - spec/ramaze/template/haml/index.haml
313
- - spec/ramaze/template/haml/locals.haml
314
- - spec/ramaze/template/haml/with_vars.haml
315
- - spec/ramaze/template/sass
316
- - spec/ramaze/template/sass/file.css.sass
317
- - spec/ramaze/template/xslt
318
- - spec/ramaze/template/xslt/products.xsl
319
- - spec/ramaze/template/xslt/concat_words.xsl
320
- - spec/ramaze/template/xslt/index.xsl
321
- - spec/ramaze/template/xslt/ruby_version.xsl
322
- - spec/ramaze/template/markaby.rb
323
- - spec/ramaze/template/xslt.rb
324
- - spec/ramaze/template/redcloth.rb
325
- - spec/ramaze/template/sass.rb
326
- - spec/ramaze/template/ezamar.rb
327
- - spec/ramaze/template/erubis.rb
328
- - spec/ramaze/template/nagoro.rb
329
- - spec/ramaze/template/markaby
330
- - spec/ramaze/template/markaby/external.mab
331
- - spec/ramaze/template/markaby/sum.mab
332
- - spec/ramaze/template/remarkably
333
- - spec/ramaze/template/remarkably/external.rem
334
- - spec/ramaze/template/remarkably/sum.rem
335
- - spec/ramaze/template/liquid.rb
336
- - spec/ramaze/template/remarkably.rb
337
- - spec/ramaze/template/erubis
338
- - spec/ramaze/template/erubis/sum.rhtml
339
- - spec/ramaze/template/ezamar
340
- - spec/ramaze/template/ezamar/sum.zmr
341
- - spec/ramaze/template/ezamar/other__index.xhtml
342
- - spec/ramaze/template/ezamar/nested.zmr
343
- - spec/ramaze/template/ezamar/combined.zmr
344
- - spec/ramaze/template/ezamar/index.zmr
345
- - spec/ramaze/template/ezamar/some__long__action.zmr
346
- - spec/ramaze/template/ezamar/file_only.zmr
347
- - spec/ramaze/template/ezamar/another
348
- - spec/ramaze/template/ezamar/another/long
349
- - spec/ramaze/template/ezamar/another/long/action.zmr
350
- - spec/ramaze/template/builder.rb
351
- - spec/ramaze/template/liquid
352
- - spec/ramaze/template/liquid/index.liquid
353
- - spec/ramaze/template/liquid/products.liquid
354
- - spec/ramaze/template/haml.rb
355
- - spec/ramaze/template/nagoro
356
- - spec/ramaze/template/nagoro/sum.nag
357
- - spec/ramaze/template/nagoro/nested.nag
358
- - spec/ramaze/template/nagoro/combined.nag
359
- - spec/ramaze/template/nagoro/index.nag
360
- - spec/ramaze/template/nagoro/some__long__action.nag
361
- - spec/ramaze/template/nagoro/file_only.nag
362
- - spec/ramaze/template/nagoro/another
363
- - spec/ramaze/template/nagoro/another/long
364
- - spec/ramaze/template/nagoro/another/long/action.nag
365
- - spec/ramaze/template/ramaze
366
- - spec/ramaze/template/ramaze/external.test
367
- - spec/ramaze/template/amrita2
368
- - spec/ramaze/template/amrita2/sum.amrita
369
- - spec/ramaze/template/amrita2/external.amrita
370
- - spec/ramaze/template/amrita2.rb
371
- - spec/ramaze/template/redcloth
372
- - spec/ramaze/template/redcloth/external.redcloth
373
- - spec/ramaze/template/bijou.rb
374
- - spec/ramaze/template/builder
375
- - spec/ramaze/template/builder/external.rxml
376
- - spec/ramaze/cache.rb
377
316
  - spec/ramaze/action
378
317
  - spec/ramaze/action/basics.rb
318
+ - spec/ramaze/action/cache.rb
319
+ - spec/ramaze/action/layout.rb
320
+ - spec/ramaze/action/render.rb
379
321
  - spec/ramaze/action/template
380
- - spec/ramaze/action/template/sub
381
- - spec/ramaze/action/template/sub/sub_wrapper.xhtml
382
322
  - spec/ramaze/action/template/bar.xhtml
383
- - spec/ramaze/action/template/single_wrapper.xhtml
384
- - spec/ramaze/action/template/other_wrapper.xhtml
385
323
  - spec/ramaze/action/template/instancevars
386
324
  - spec/ramaze/action/template/instancevars/layout.xhtml
387
- - spec/ramaze/action/cache.rb
388
- - spec/ramaze/action/layout.rb
389
- - spec/ramaze/action/render.rb
390
- - spec/ramaze/template.rb
391
- - spec/ramaze/helper
392
- - spec/ramaze/helper/pager.rb
393
- - spec/ramaze/helper/link.rb
394
- - spec/ramaze/helper/template
395
- - spec/ramaze/helper/template/num.xhtml
396
- - spec/ramaze/helper/template/locals.xhtml
397
- - spec/ramaze/helper/template/test_template.xhtml
398
- - spec/ramaze/helper/template/partial.xhtml
399
- - spec/ramaze/helper/template/recursive.xhtml
400
- - spec/ramaze/helper/template/recursive_locals.xhtml
401
- - spec/ramaze/helper/template/loop.xhtml
402
- - spec/ramaze/helper/cache.rb
403
- - spec/ramaze/helper/partial.rb
404
- - spec/ramaze/helper/file.rb
405
- - spec/ramaze/helper/cgi.rb
406
- - spec/ramaze/helper/redirect.rb
407
- - spec/ramaze/helper/flash.rb
408
- - spec/ramaze/helper/stack.rb
409
- - spec/ramaze/helper/formatting.rb
410
- - spec/ramaze/helper/auth.rb
411
- - spec/ramaze/helper/aspect.rb
412
- - spec/ramaze/adapter.rb
413
- - spec/ramaze/localize.rb
414
- - spec/ramaze/inform
415
- - spec/ramaze/inform/informer.rb
416
- - spec/ramaze/inform/syslog.rb
417
- - spec/ramaze/trinity
418
- - spec/ramaze/trinity/request.rb
419
- - spec/ramaze/trinity/session.rb
325
+ - spec/ramaze/action/template/other_wrapper.xhtml
326
+ - spec/ramaze/action/template/single_wrapper.xhtml
327
+ - spec/ramaze/action/template/sub
328
+ - spec/ramaze/action/template/sub/sub_wrapper.xhtml
420
329
  - spec/ramaze/adapter
421
330
  - spec/ramaze/adapter/mongrel.rb
422
- - spec/ramaze/adapter/webrick.rb
423
331
  - spec/ramaze/adapter/record.rb
424
- - spec/ramaze/request.rb
332
+ - spec/ramaze/adapter/webrick.rb
333
+ - spec/ramaze/adapter.rb
334
+ - spec/ramaze/cache.rb
425
335
  - spec/ramaze/controller
336
+ - spec/ramaze/controller/actionless_templates.rb
426
337
  - spec/ramaze/controller/resolve.rb
427
- - spec/ramaze/controller/template_resolving.rb
338
+ - spec/ramaze/controller/subclass.rb
428
339
  - spec/ramaze/controller/template
340
+ - spec/ramaze/controller/template/greet.xhtml
341
+ - spec/ramaze/controller/template/list.xhtml
429
342
  - spec/ramaze/controller/template/other
430
343
  - spec/ramaze/controller/template/other/greet
431
344
  - spec/ramaze/controller/template/other/greet/other.xhtml
432
- - spec/ramaze/controller/template/greet.xhtml
433
- - spec/ramaze/controller/template/list.xhtml
434
- - spec/ramaze/controller/subclass.rb
345
+ - spec/ramaze/controller/template/other_wrapper.xhtml
346
+ - spec/ramaze/controller/template_resolving.rb
435
347
  - spec/ramaze/controller.rb
436
- - spec/ramaze/public
437
- - spec/ramaze/public/favicon.ico
438
- - spec/ramaze/public/ramaze.png
439
- - spec/ramaze/public/test_download.css
440
- - spec/ramaze/public/error404.xhtml
441
- - spec/ramaze/route.rb
442
- - spec/ramaze/dispatcher.rb
348
+ - spec/ramaze/current
349
+ - spec/ramaze/current/request.rb
350
+ - spec/ramaze/current/session.rb
443
351
  - spec/ramaze/dispatcher
352
+ - spec/ramaze/dispatcher/directory.rb
444
353
  - spec/ramaze/dispatcher/file.rb
445
354
  - spec/ramaze/dispatcher/public
446
355
  - spec/ramaze/dispatcher/public/favicon.ico
356
+ - spec/ramaze/dispatcher/public/file name.txt
447
357
  - spec/ramaze/dispatcher/public/test_download.css
448
- - spec/ramaze/dispatcher/directory.rb
449
- - spec/ramaze/gestalt.rb
450
- - spec/ramaze/session.rb
358
+ - spec/ramaze/dispatcher.rb
451
359
  - spec/ramaze/element.rb
360
+ - spec/ramaze/error.rb
361
+ - spec/ramaze/gestalt.rb
362
+ - spec/ramaze/helper
363
+ - spec/ramaze/helper/aspect.rb
364
+ - spec/ramaze/helper/auth.rb
365
+ - spec/ramaze/helper/cache.rb
366
+ - spec/ramaze/helper/cgi.rb
367
+ - spec/ramaze/helper/file.rb
368
+ - spec/ramaze/helper/flash.rb
369
+ - spec/ramaze/helper/formatting.rb
370
+ - spec/ramaze/helper/link.rb
371
+ - spec/ramaze/helper/pager.rb
372
+ - spec/ramaze/helper/partial.rb
373
+ - spec/ramaze/helper/redirect.rb
374
+ - spec/ramaze/helper/stack.rb
375
+ - spec/ramaze/helper/template
376
+ - spec/ramaze/helper/template/locals.xhtml
377
+ - spec/ramaze/helper/template/loop.xhtml
378
+ - spec/ramaze/helper/template/num.xhtml
379
+ - spec/ramaze/helper/template/partial.xhtml
380
+ - spec/ramaze/helper/template/recursive.xhtml
381
+ - spec/ramaze/helper/template/recursive_local_ivars.xhtml
382
+ - spec/ramaze/helper/template/recursive_locals.xhtml
383
+ - spec/ramaze/helper/template/test_template.xhtml
384
+ - spec/ramaze/helper/user.rb
385
+ - spec/ramaze/localize.rb
386
+ - spec/ramaze/log
387
+ - spec/ramaze/log/informer.rb
388
+ - spec/ramaze/log/syslog.rb
452
389
  - spec/ramaze/morpher.rb
453
390
  - spec/ramaze/params.rb
454
- - spec/examples
455
- - spec/examples/caching.rb
456
- - spec/examples/css.rb
457
- - spec/examples/element.rb
458
- - spec/examples/simple.rb
459
- - spec/examples/linking.rb
460
- - spec/examples/hello.rb
461
- - spec/examples/templates
462
- - spec/examples/templates/template_ezamar.rb
463
- - spec/examples/templates/template_erubis.rb
464
- - spec/examples/templates/template_remarkably.rb
465
- - spec/examples/templates/template_liquid.rb
466
- - spec/examples/templates/template_redcloth.rb
467
- - spec/examples/templates/template_amrita2.rb
468
- - spec/examples/templates/template_haml.rb
469
- - spec/examples/templates/template_markaby.rb
470
- - spec/helper.rb
391
+ - spec/ramaze/public
392
+ - spec/ramaze/public/error404.xhtml
393
+ - spec/ramaze/public/favicon.ico
394
+ - spec/ramaze/public/ramaze.png
395
+ - spec/ramaze/public/test_download.css
396
+ - spec/ramaze/request
397
+ - spec/ramaze/request/mongrel.rb
398
+ - spec/ramaze/request/thin.rb
399
+ - spec/ramaze/request/webrick.rb
400
+ - spec/ramaze/request.rb
401
+ - spec/ramaze/route.rb
402
+ - spec/ramaze/session.rb
403
+ - spec/ramaze/store
404
+ - spec/ramaze/store/default.rb
405
+ - spec/ramaze/template
406
+ - spec/ramaze/template/amrita2
407
+ - spec/ramaze/template/amrita2/external.amrita
408
+ - spec/ramaze/template/amrita2/sum.amrita
409
+ - spec/ramaze/template/amrita2.rb
410
+ - spec/ramaze/template/builder
411
+ - spec/ramaze/template/builder/external.rxml
412
+ - spec/ramaze/template/builder.rb
413
+ - spec/ramaze/template/erubis
414
+ - spec/ramaze/template/erubis/sum.rhtml
415
+ - spec/ramaze/template/erubis.rb
416
+ - spec/ramaze/template/ezamar
417
+ - spec/ramaze/template/ezamar/another
418
+ - spec/ramaze/template/ezamar/another/long
419
+ - spec/ramaze/template/ezamar/another/long/action.zmr
420
+ - spec/ramaze/template/ezamar/combined.zmr
421
+ - spec/ramaze/template/ezamar/file_only.zmr
422
+ - spec/ramaze/template/ezamar/index.zmr
423
+ - spec/ramaze/template/ezamar/nested.zmr
424
+ - spec/ramaze/template/ezamar/other__index.xhtml
425
+ - spec/ramaze/template/ezamar/some__long__action.zmr
426
+ - spec/ramaze/template/ezamar/sum.zmr
427
+ - spec/ramaze/template/ezamar.rb
428
+ - spec/ramaze/template/haml
429
+ - spec/ramaze/template/haml/index.haml
430
+ - spec/ramaze/template/haml/locals.haml
431
+ - spec/ramaze/template/haml/with_vars.haml
432
+ - spec/ramaze/template/haml.rb
433
+ - spec/ramaze/template/liquid
434
+ - spec/ramaze/template/liquid/index.liquid
435
+ - spec/ramaze/template/liquid/products.liquid
436
+ - spec/ramaze/template/liquid.rb
437
+ - spec/ramaze/template/markaby
438
+ - spec/ramaze/template/markaby/external.mab
439
+ - spec/ramaze/template/markaby/sum.mab
440
+ - spec/ramaze/template/markaby.rb
441
+ - spec/ramaze/template/nagoro
442
+ - spec/ramaze/template/nagoro/another
443
+ - spec/ramaze/template/nagoro/another/long
444
+ - spec/ramaze/template/nagoro/another/long/action.nag
445
+ - spec/ramaze/template/nagoro/combined.nag
446
+ - spec/ramaze/template/nagoro/file_only.nag
447
+ - spec/ramaze/template/nagoro/index.nag
448
+ - spec/ramaze/template/nagoro/nested.nag
449
+ - spec/ramaze/template/nagoro/some__long__action.nag
450
+ - spec/ramaze/template/nagoro/sum.nag
451
+ - spec/ramaze/template/nagoro.rb
452
+ - spec/ramaze/template/ramaze
453
+ - spec/ramaze/template/ramaze/external.test
454
+ - spec/ramaze/template/redcloth
455
+ - spec/ramaze/template/redcloth/external.redcloth
456
+ - spec/ramaze/template/redcloth.rb
457
+ - spec/ramaze/template/remarkably
458
+ - spec/ramaze/template/remarkably/external.rem
459
+ - spec/ramaze/template/remarkably/sum.rem
460
+ - spec/ramaze/template/remarkably.rb
461
+ - spec/ramaze/template/sass
462
+ - spec/ramaze/template/sass/file.css.sass
463
+ - spec/ramaze/template/sass.rb
464
+ - spec/ramaze/template/tagz
465
+ - spec/ramaze/template/tagz/external.tagz
466
+ - spec/ramaze/template/tagz/sum.tagz
467
+ - spec/ramaze/template/tagz.rb
468
+ - spec/ramaze/template/tenjin
469
+ - spec/ramaze/template/tenjin/external.tenjin
470
+ - spec/ramaze/template/tenjin.rb
471
+ - spec/ramaze/template/xslt
472
+ - spec/ramaze/template/xslt/concat_words.xsl
473
+ - spec/ramaze/template/xslt/index.xsl
474
+ - spec/ramaze/template/xslt/products.xsl
475
+ - spec/ramaze/template/xslt/ruby_version.xsl
476
+ - spec/ramaze/template/xslt.rb
477
+ - spec/ramaze/template.rb
471
478
  - spec/snippets
472
- - spec/snippets/ordered_set.rb
473
479
  - spec/snippets/array
474
480
  - spec/snippets/array/put_within.rb
475
481
  - spec/snippets/divide.rb
476
- - spec/snippets/kernel
477
- - spec/snippets/kernel/constant.rb
478
- - spec/snippets/kernel/acquire.rb
482
+ - spec/snippets/kernel
479
483
  - spec/snippets/kernel/__dir__.rb
484
+ - spec/snippets/kernel/acquire.rb
485
+ - spec/snippets/kernel/constant.rb
486
+ - spec/snippets/numeric
487
+ - spec/snippets/numeric/filesize_format.rb
488
+ - spec/snippets/ordered_set.rb
480
489
  - spec/snippets/ramaze
481
- - spec/snippets/ramaze/caller_lines.rb
482
490
  - spec/snippets/ramaze/caller_info.rb
483
- - spec/snippets/thread
484
- - spec/snippets/thread/into.rb
491
+ - spec/snippets/ramaze/caller_lines.rb
485
492
  - spec/snippets/string
486
- - spec/snippets/string/color.rb
487
- - spec/snippets/string/unindent.rb
488
493
  - spec/snippets/string/camel_case.rb
494
+ - spec/snippets/string/color.rb
489
495
  - spec/snippets/string/snake_case.rb
496
+ - spec/snippets/string/unindent.rb
490
497
  - spec/snippets/struct
491
498
  - spec/snippets/struct/fill.rb
492
499
  - spec/snippets/struct/values_at.rb
493
500
  - spec/snippets/symbol
494
501
  - spec/snippets/symbol/to_proc.rb
495
- - spec/snippets/numeric
496
- - spec/snippets/numeric/filesize_format.rb
502
+ - spec/snippets/thread
503
+ - spec/snippets/thread/into.rb
497
504
  - lib/proto
498
- - lib/proto/spec
499
- - lib/proto/spec/main.rb
500
- - lib/proto/view
501
- - lib/proto/view/error.xhtml
502
- - lib/proto/view/page.xhtml
503
- - lib/proto/view/index.xhtml
504
- - lib/proto/model
505
505
  - lib/proto/controller
506
506
  - lib/proto/controller/main.rb
507
+ - lib/proto/model
507
508
  - lib/proto/public
508
- - lib/proto/public/js
509
- - lib/proto/public/js/jquery.js
510
509
  - lib/proto/public/css
511
510
  - lib/proto/public/css/ramaze_error.css
511
+ - lib/proto/public/dispatch.fcgi
512
512
  - lib/proto/public/favicon.ico
513
+ - lib/proto/public/js
514
+ - lib/proto/public/js/jquery.js
513
515
  - lib/proto/public/ramaze.png
516
+ - lib/proto/spec
517
+ - lib/proto/spec/main.rb
514
518
  - lib/proto/start.rb
515
- - lib/ramaze.rb
519
+ - lib/proto/start.ru
520
+ - lib/proto/view
521
+ - lib/proto/view/error.xhtml
522
+ - lib/proto/view/index.xhtml
523
+ - lib/proto/view/page.xhtml
516
524
  - lib/ramaze
517
- - lib/ramaze/spec
518
- - lib/ramaze/spec/helper
519
- - lib/ramaze/spec/helper/browser.rb
520
- - lib/ramaze/spec/helper/snippets.rb
521
- - lib/ramaze/spec/helper/simple_http.rb
522
- - lib/ramaze/spec/helper/mock_http.rb
523
- - lib/ramaze/spec/helper/bacon.rb
524
- - lib/ramaze/spec/helper/pretty_output.rb
525
- - lib/ramaze/spec/helper/requester.rb
526
- - lib/ramaze/spec/helper.rb
527
- - lib/ramaze/tool
528
- - lib/ramaze/tool/mime_types.yaml
529
- - lib/ramaze/tool/record.rb
530
- - lib/ramaze/tool/mime.rb
531
- - lib/ramaze/tool/localize.rb
532
- - lib/ramaze/tool/create.rb
525
+ - lib/ramaze/action
526
+ - lib/ramaze/action/render.rb
527
+ - lib/ramaze/action.rb
528
+ - lib/ramaze/adapter
529
+ - lib/ramaze/adapter/base.rb
530
+ - lib/ramaze/adapter/cgi.rb
531
+ - lib/ramaze/adapter/ebb.rb
532
+ - lib/ramaze/adapter/evented_mongrel.rb
533
+ - lib/ramaze/adapter/fcgi.rb
534
+ - lib/ramaze/adapter/lsws.rb
535
+ - lib/ramaze/adapter/mongrel.rb
536
+ - lib/ramaze/adapter/scgi.rb
537
+ - lib/ramaze/adapter/swiftiplied_mongrel.rb
538
+ - lib/ramaze/adapter/thin.rb
539
+ - lib/ramaze/adapter/webrick.rb
540
+ - lib/ramaze/adapter.rb
541
+ - lib/ramaze/cache
542
+ - lib/ramaze/cache/memcached.rb
543
+ - lib/ramaze/cache/memory.rb
544
+ - lib/ramaze/cache/yaml_store.rb
545
+ - lib/ramaze/cache.rb
533
546
  - lib/ramaze/contrib
534
- - lib/ramaze/contrib/email.rb-darcs-backup0
535
- - lib/ramaze/contrib/facebook
536
- - lib/ramaze/contrib/facebook/facebook.rb
537
- - lib/ramaze/contrib/email.rb
538
547
  - lib/ramaze/contrib/auto_params
539
548
  - lib/ramaze/contrib/auto_params/get_args.rb
540
- - lib/ramaze/contrib/gzip_filter.rb
541
549
  - lib/ramaze/contrib/auto_params.rb
542
- - lib/ramaze/contrib/gettext.rb
550
+ - lib/ramaze/contrib/email.rb
551
+ - lib/ramaze/contrib/facebook
552
+ - lib/ramaze/contrib/facebook/facebook.rb
553
+ - lib/ramaze/contrib/facebook.rb
554
+ - lib/ramaze/contrib/file_cache.rb
543
555
  - lib/ramaze/contrib/gettext
544
- - lib/ramaze/contrib/gettext/parser.rb
545
556
  - lib/ramaze/contrib/gettext/mo.rb
557
+ - lib/ramaze/contrib/gettext/parser.rb
546
558
  - lib/ramaze/contrib/gettext/po.rb
547
- - lib/ramaze/contrib/facebook.rb
559
+ - lib/ramaze/contrib/gettext.rb
560
+ - lib/ramaze/contrib/gzip_filter.rb
561
+ - lib/ramaze/contrib/profiling.rb
548
562
  - lib/ramaze/contrib/route.rb
549
563
  - lib/ramaze/contrib/sequel
550
564
  - lib/ramaze/contrib/sequel/fill.rb
551
- - lib/ramaze/cache
552
- - lib/ramaze/cache/yaml_store.rb
553
- - lib/ramaze/cache/memcached.rb
554
- - lib/ramaze/cache/memory.rb
555
- - lib/ramaze/store
556
- - lib/ramaze/store/default.rb
557
- - lib/ramaze/error.rb
558
- - lib/ramaze/template
559
- - lib/ramaze/template/markaby.rb
560
- - lib/ramaze/template/xslt.rb
561
- - lib/ramaze/template/redcloth.rb
562
- - lib/ramaze/template/sass.rb
563
- - lib/ramaze/template/ezamar.rb
564
- - lib/ramaze/template/erubis.rb
565
- - lib/ramaze/template/nagoro.rb
566
- - lib/ramaze/template/liquid.rb
567
- - lib/ramaze/template/remarkably.rb
568
- - lib/ramaze/template/ezamar
569
- - lib/ramaze/template/ezamar/render_partial.rb
570
- - lib/ramaze/template/ezamar/engine.rb
571
- - lib/ramaze/template/ezamar/element.rb
572
- - lib/ramaze/template/ezamar/morpher.rb
573
- - lib/ramaze/template/builder.rb
574
- - lib/ramaze/template/haml.rb
575
- - lib/ramaze/template/none.rb
576
- - lib/ramaze/template/amrita2.rb
577
- - lib/ramaze/template/bijou.rb
578
- - lib/ramaze/cache.rb
579
- - lib/ramaze/snippets.rb
580
- - lib/ramaze/action
581
- - lib/ramaze/action/render.rb
582
- - lib/ramaze/template.rb
583
- - lib/ramaze/global
584
- - lib/ramaze/global/globalstruct.rb
585
- - lib/ramaze/global/dsl.rb
586
- - lib/ramaze/helper
587
- - lib/ramaze/helper/markaby.rb
588
- - lib/ramaze/helper/sequel.rb
589
- - lib/ramaze/helper/pager.rb
590
- - lib/ramaze/helper/link.rb
591
- - lib/ramaze/helper/cache.rb
592
- - lib/ramaze/helper/partial.rb
593
- - lib/ramaze/helper/maruku.rb
594
- - lib/ramaze/helper/file.rb
595
- - lib/ramaze/helper/cgi.rb
596
- - lib/ramaze/helper/redirect.rb
597
- - lib/ramaze/helper/identity.rb
598
- - lib/ramaze/helper/flash.rb
599
- - lib/ramaze/helper/stack.rb
600
- - lib/ramaze/helper/formatting.rb
601
- - lib/ramaze/helper/auth.rb
602
- - lib/ramaze/helper/aspect.rb
603
- - lib/ramaze/helper/nitroform.rb
604
- - lib/ramaze/helper/inform.rb
605
- - lib/ramaze/adapter.rb
606
- - lib/ramaze/tool.rb
607
- - lib/ramaze/inform
608
- - lib/ramaze/inform/informer.rb
609
- - lib/ramaze/inform/xosd.rb
610
- - lib/ramaze/inform/syslog.rb
611
- - lib/ramaze/inform/growl.rb
612
- - lib/ramaze/inform/knotify.rb
613
- - lib/ramaze/inform/hub.rb
614
- - lib/ramaze/inform/informing.rb
615
- - lib/ramaze/inform/analogger.rb
616
- - lib/ramaze/trinity
617
- - lib/ramaze/trinity/response.rb
618
- - lib/ramaze/trinity/request.rb
619
- - lib/ramaze/trinity/session.rb
565
+ - lib/ramaze/contrib/sequel_cache.rb
620
566
  - lib/ramaze/contrib.rb
621
- - lib/ramaze/adapter
622
- - lib/ramaze/adapter/mongrel.rb
623
- - lib/ramaze/adapter/fcgi.rb
624
- - lib/ramaze/adapter/webrick.rb
625
- - lib/ramaze/adapter/lsws.rb
626
- - lib/ramaze/adapter/thin.rb
627
- - lib/ramaze/adapter/cgi.rb
628
- - lib/ramaze/adapter/evented_mongrel.rb
629
- - lib/ramaze/adapter/base.rb
630
- - lib/ramaze/adapter/swiftiplied_mongrel.rb
631
567
  - lib/ramaze/controller
632
- - lib/ramaze/controller/resolve.rb
633
568
  - lib/ramaze/controller/error.rb
634
569
  - lib/ramaze/controller/main.rb
570
+ - lib/ramaze/controller/resolve.rb
635
571
  - lib/ramaze/controller.rb
636
- - lib/ramaze/route.rb
637
- - lib/ramaze/sourcereload.rb
638
- - lib/ramaze/dispatcher.rb
572
+ - lib/ramaze/current
573
+ - lib/ramaze/current/request.rb
574
+ - lib/ramaze/current/response.rb
575
+ - lib/ramaze/current/session
576
+ - lib/ramaze/current/session/flash.rb
577
+ - lib/ramaze/current/session/hash.rb
578
+ - lib/ramaze/current/session.rb
579
+ - lib/ramaze/current.rb
639
580
  - lib/ramaze/dispatcher
581
+ - lib/ramaze/dispatcher/action.rb
582
+ - lib/ramaze/dispatcher/directory.rb
640
583
  - lib/ramaze/dispatcher/error.rb
641
584
  - lib/ramaze/dispatcher/file.rb
642
- - lib/ramaze/dispatcher/directory.rb
643
- - lib/ramaze/dispatcher/action.rb
644
- - lib/ramaze/trinity.rb
585
+ - lib/ramaze/dispatcher.rb
586
+ - lib/ramaze/error.rb
645
587
  - lib/ramaze/gestalt.rb
588
+ - lib/ramaze/global
589
+ - lib/ramaze/global/dsl.rb
590
+ - lib/ramaze/global/globalstruct.rb
646
591
  - lib/ramaze/global.rb
647
- - lib/ramaze/action.rb
592
+ - lib/ramaze/helper
593
+ - lib/ramaze/helper/aspect.rb
594
+ - lib/ramaze/helper/auth.rb
595
+ - lib/ramaze/helper/cache.rb
596
+ - lib/ramaze/helper/cgi.rb
597
+ - lib/ramaze/helper/flash.rb
598
+ - lib/ramaze/helper/formatting.rb
599
+ - lib/ramaze/helper/identity.rb
600
+ - lib/ramaze/helper/inform.rb
601
+ - lib/ramaze/helper/link.rb
602
+ - lib/ramaze/helper/markaby.rb
603
+ - lib/ramaze/helper/maruku.rb
604
+ - lib/ramaze/helper/nitroform.rb
605
+ - lib/ramaze/helper/pager.rb
606
+ - lib/ramaze/helper/partial.rb
607
+ - lib/ramaze/helper/redirect.rb
608
+ - lib/ramaze/helper/sendfile.rb
609
+ - lib/ramaze/helper/sequel.rb
610
+ - lib/ramaze/helper/stack.rb
611
+ - lib/ramaze/helper/tagz.rb
612
+ - lib/ramaze/helper/user.rb
648
613
  - lib/ramaze/helper.rb
614
+ - lib/ramaze/inform.rb
615
+ - lib/ramaze/log
616
+ - lib/ramaze/log/analogger.rb
617
+ - lib/ramaze/log/growl.rb
618
+ - lib/ramaze/log/hub.rb
619
+ - lib/ramaze/log/informer.rb
620
+ - lib/ramaze/log/knotify.rb
621
+ - lib/ramaze/log/logger.rb
622
+ - lib/ramaze/log/logging.rb
623
+ - lib/ramaze/log/syslog.rb
624
+ - lib/ramaze/log/xosd.rb
625
+ - lib/ramaze/log.rb
626
+ - lib/ramaze/route.rb
649
627
  - lib/ramaze/snippets
650
- - lib/ramaze/snippets/dictionary.rb
651
- - lib/ramaze/snippets/ordered_set.rb
652
628
  - lib/ramaze/snippets/array
653
629
  - lib/ramaze/snippets/array/put_within.rb
630
+ - lib/ramaze/snippets/binding
631
+ - lib/ramaze/snippets/binding/locals.rb
654
632
  - lib/ramaze/snippets/blankslate.rb
633
+ - lib/ramaze/snippets/dictionary.rb
655
634
  - lib/ramaze/snippets/divide.rb
656
635
  - lib/ramaze/snippets/kernel
657
- - lib/ramaze/snippets/kernel/constant.rb
636
+ - lib/ramaze/snippets/kernel/__dir__.rb
658
637
  - lib/ramaze/snippets/kernel/acquire.rb
659
638
  - lib/ramaze/snippets/kernel/aquire.rb
639
+ - lib/ramaze/snippets/kernel/constant.rb
660
640
  - lib/ramaze/snippets/kernel/pretty_inspect.rb
661
- - lib/ramaze/snippets/kernel/__dir__.rb
641
+ - lib/ramaze/snippets/metaid.rb
642
+ - lib/ramaze/snippets/numeric
643
+ - lib/ramaze/snippets/numeric/filesize_format.rb
662
644
  - lib/ramaze/snippets/object
645
+ - lib/ramaze/snippets/object/pretty.rb
646
+ - lib/ramaze/snippets/object/scope.rb
647
+ - lib/ramaze/snippets/object/thread_accessor.rb
663
648
  - lib/ramaze/snippets/object/traits.rb
649
+ - lib/ramaze/snippets/ordered_set.rb
650
+ - lib/ramaze/snippets/proc
651
+ - lib/ramaze/snippets/proc/locals.rb
664
652
  - lib/ramaze/snippets/ramaze
665
- - lib/ramaze/snippets/ramaze/caller_lines.rb
666
653
  - lib/ramaze/snippets/ramaze/caller_info.rb
667
- - lib/ramaze/snippets/thread
668
- - lib/ramaze/snippets/thread/into.rb
654
+ - lib/ramaze/snippets/ramaze/caller_lines.rb
655
+ - lib/ramaze/snippets/ramaze/thread_accessor.rb
669
656
  - lib/ramaze/snippets/string
670
- - lib/ramaze/snippets/string/each.rb
657
+ - lib/ramaze/snippets/string/camel_case.rb
671
658
  - lib/ramaze/snippets/string/color.rb
659
+ - lib/ramaze/snippets/string/each.rb
660
+ - lib/ramaze/snippets/string/esc.rb
672
661
  - lib/ramaze/snippets/string/ord.rb
673
- - lib/ramaze/snippets/string/unindent.rb
674
- - lib/ramaze/snippets/string/camel_case.rb
675
662
  - lib/ramaze/snippets/string/snake_case.rb
663
+ - lib/ramaze/snippets/string/start_with.rb
664
+ - lib/ramaze/snippets/string/unindent.rb
676
665
  - lib/ramaze/snippets/struct
677
666
  - lib/ramaze/snippets/struct/fill.rb
678
667
  - lib/ramaze/snippets/struct/values_at.rb
679
668
  - lib/ramaze/snippets/symbol
680
669
  - lib/ramaze/snippets/symbol/to_proc.rb
681
- - lib/ramaze/snippets/numeric
682
- - lib/ramaze/snippets/numeric/filesize_format.rb
683
- - lib/ramaze/snippets/metaid.rb
670
+ - lib/ramaze/snippets/thread
671
+ - lib/ramaze/snippets/thread/into.rb
672
+ - lib/ramaze/snippets.rb
673
+ - lib/ramaze/sourcereload.rb
674
+ - lib/ramaze/spec
675
+ - lib/ramaze/spec/helper
676
+ - lib/ramaze/spec/helper/bacon.rb
677
+ - lib/ramaze/spec/helper/browser.rb
678
+ - lib/ramaze/spec/helper/mock_http.rb
679
+ - lib/ramaze/spec/helper/pretty_output.rb
680
+ - lib/ramaze/spec/helper/requester.rb
681
+ - lib/ramaze/spec/helper/simple_http.rb
682
+ - lib/ramaze/spec/helper/snippets.rb
683
+ - lib/ramaze/spec/helper.rb
684
+ - lib/ramaze/spec.rb
685
+ - lib/ramaze/store
686
+ - lib/ramaze/store/default.rb
687
+ - lib/ramaze/template
688
+ - lib/ramaze/template/amrita2.rb
689
+ - lib/ramaze/template/builder.rb
690
+ - lib/ramaze/template/erubis.rb
691
+ - lib/ramaze/template/ezamar
692
+ - lib/ramaze/template/ezamar/element.rb
693
+ - lib/ramaze/template/ezamar/engine.rb
694
+ - lib/ramaze/template/ezamar/morpher.rb
695
+ - lib/ramaze/template/ezamar/render_partial.rb
696
+ - lib/ramaze/template/ezamar.rb
697
+ - lib/ramaze/template/haml.rb
698
+ - lib/ramaze/template/liquid.rb
699
+ - lib/ramaze/template/markaby.rb
700
+ - lib/ramaze/template/nagoro.rb
701
+ - lib/ramaze/template/none.rb
702
+ - lib/ramaze/template/redcloth.rb
703
+ - lib/ramaze/template/remarkably.rb
704
+ - lib/ramaze/template/sass.rb
705
+ - lib/ramaze/template/tagz.rb
706
+ - lib/ramaze/template/tenjin.rb
707
+ - lib/ramaze/template/xslt.rb
708
+ - lib/ramaze/template.rb
709
+ - lib/ramaze/tool
710
+ - lib/ramaze/tool/create.rb
711
+ - lib/ramaze/tool/localize.rb
712
+ - lib/ramaze/tool/mime.rb
713
+ - lib/ramaze/tool/mime_types.yaml
714
+ - lib/ramaze/tool/record.rb
715
+ - lib/ramaze/tool.rb
716
+ - lib/ramaze/trinity.rb
684
717
  - lib/ramaze/version.rb
685
- - lib/ramaze/inform.rb
718
+ - lib/ramaze.rb
686
719
  - lib/vendor
687
720
  - lib/vendor/bacon.rb
688
721
  - rake_tasks/conf.rake
689
722
  - rake_tasks/coverage.rake
723
+ - rake_tasks/darcs.rake
690
724
  - rake_tasks/gem.rake
691
725
  - rake_tasks/maintenance.rake
692
726
  - rake_tasks/spec.rake