ramaze 2008.11 → 2009.01

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. data/README.markdown +7 -7
  2. data/benchmark/run.rb +1 -1
  3. data/doc/CHANGELOG +662 -0
  4. data/examples/app/blog/model/entry.rb +8 -1
  5. data/examples/app/blog/spec/blog.rb +2 -2
  6. data/examples/app/rapaste/spec/rapaste.rb +1 -1
  7. data/examples/app/rapaste/start.rb +2 -2
  8. data/examples/app/rapaste/view/view.xhtml +3 -0
  9. data/examples/app/todolist/spec/todolist.rb +1 -1
  10. data/examples/app/whywiki/spec/whywiki.rb +1 -1
  11. data/examples/app/wikore/spec/wikore.rb +1 -1
  12. data/examples/app/wikore/src/model.rb +8 -2
  13. data/examples/app/wiktacular/spec/wiktacular.rb +1 -1
  14. data/examples/app/wiktacular/src/model.rb +1 -1
  15. data/examples/basic/partial.rb +28 -0
  16. data/examples/helpers/httpdigest.rb +68 -10
  17. data/examples/misc/ramaise.rb +2 -2
  18. data/examples/templates/template_amrita2.rb +1 -1
  19. data/examples/templates/template_erubis.rb +1 -1
  20. data/examples/templates/template_ezamar.rb +1 -1
  21. data/examples/templates/template_haml.rb +2 -2
  22. data/examples/templates/template_liquid.rb +1 -1
  23. data/examples/templates/template_markaby.rb +2 -2
  24. data/examples/templates/template_nagoro.rb +1 -1
  25. data/examples/templates/template_redcloth.rb +1 -1
  26. data/examples/templates/template_remarkably.rb +2 -2
  27. data/examples/templates/template_tenjin.rb +1 -1
  28. data/examples/templates/template_xslt.rb +1 -1
  29. data/lib/proto/controller/init.rb +2 -1
  30. data/lib/proto/model/init.rb +3 -3
  31. data/lib/proto/public/dispatch.fcgi +2 -2
  32. data/lib/proto/spec/main.rb +3 -3
  33. data/lib/proto/start.rb +4 -0
  34. data/lib/ramaze.rb +6 -0
  35. data/lib/ramaze/action.rb +7 -1
  36. data/lib/ramaze/action/render.rb +6 -5
  37. data/lib/ramaze/cache.rb +1 -0
  38. data/lib/ramaze/cache/file.rb +71 -0
  39. data/lib/ramaze/contrib.rb +1 -1
  40. data/lib/ramaze/contrib/email.rb +2 -0
  41. data/lib/ramaze/contrib/facebook.rb +2 -2
  42. data/lib/ramaze/contrib/file_cache.rb +2 -64
  43. data/lib/ramaze/contrib/sequel/image.rb +1 -1
  44. data/lib/ramaze/controller.rb +9 -1
  45. data/lib/ramaze/controller/resolve.rb +10 -5
  46. data/lib/ramaze/current/request.rb +87 -70
  47. data/lib/ramaze/current/session.rb +3 -5
  48. data/lib/ramaze/current/session/hash.rb +7 -11
  49. data/lib/ramaze/dispatcher/action.rb +2 -0
  50. data/lib/ramaze/dispatcher/file.rb +6 -1
  51. data/lib/ramaze/helper.rb +12 -4
  52. data/lib/ramaze/helper/aspect.rb +2 -2
  53. data/lib/ramaze/helper/bench.rb +43 -0
  54. data/lib/ramaze/helper/form.rb +5 -2
  55. data/lib/ramaze/helper/formatting.rb +4 -0
  56. data/lib/ramaze/helper/gravatar.rb +18 -1
  57. data/lib/ramaze/helper/httpdigest.rb +55 -28
  58. data/lib/ramaze/helper/markaby.rb +1 -1
  59. data/lib/ramaze/helper/maruku.rb +2 -0
  60. data/lib/ramaze/helper/paginate.rb +1 -1
  61. data/lib/ramaze/helper/partial.rb +1 -1
  62. data/lib/ramaze/helper/redirect.rb +22 -4
  63. data/lib/ramaze/helper/user.rb +4 -4
  64. data/lib/ramaze/option.rb +1 -1
  65. data/lib/ramaze/option/holder.rb +3 -3
  66. data/lib/ramaze/reloader.rb +25 -41
  67. data/lib/ramaze/reloader/watch_inotify.rb +85 -0
  68. data/lib/ramaze/reloader/watch_stat.rb +58 -0
  69. data/lib/ramaze/snippets/divide.rb +2 -0
  70. data/lib/ramaze/snippets/numeric/time.rb +1 -1
  71. data/lib/ramaze/snippets/object/__dir__.rb +3 -3
  72. data/lib/ramaze/snippets/object/acquire.rb +3 -6
  73. data/lib/ramaze/snippets/ramaze/acquire.rb +31 -0
  74. data/lib/ramaze/snippets/ramaze/deprecated.rb +2 -1
  75. data/lib/ramaze/spec/helper/mock_http.rb +6 -5
  76. data/lib/ramaze/template/ezamar/render_partial.rb +8 -0
  77. data/lib/ramaze/tool/mime.rb +1 -1
  78. data/lib/ramaze/tool/project_creator.rb +2 -1
  79. data/lib/ramaze/version.rb +2 -2
  80. data/rake_tasks/coverage.rake +4 -5
  81. data/rake_tasks/spec.rake +6 -6
  82. data/ramaze-2008.11.gem +0 -0
  83. data/ramaze.gemspec +759 -758
  84. data/spec/contrib/profiling.rb +2 -2
  85. data/spec/ramaze/action/file_cache.rb +1 -1
  86. data/spec/ramaze/action/layout.rb +1 -1
  87. data/spec/ramaze/controller/actionless_templates.rb +1 -1
  88. data/spec/ramaze/controller/resolve.rb +1 -1
  89. data/spec/ramaze/controller/template_resolving.rb +1 -1
  90. data/spec/ramaze/dispatcher/directory.rb +3 -3
  91. data/spec/ramaze/helper/aspect.rb +1 -1
  92. data/spec/ramaze/helper/partial.rb +1 -1
  93. data/spec/ramaze/localize.rb +1 -1
  94. data/spec/ramaze/rewrite.rb +1 -1
  95. data/spec/ramaze/template.rb +3 -3
  96. data/spec/ramaze/template/amrita2.rb +1 -1
  97. data/spec/ramaze/template/erubis.rb +1 -1
  98. data/spec/ramaze/template/ezamar.rb +1 -1
  99. data/spec/ramaze/template/haml.rb +2 -2
  100. data/spec/ramaze/template/nagoro.rb +1 -1
  101. data/spec/ramaze/template/redcloth.rb +1 -1
  102. data/spec/ramaze/template/sass.rb +1 -1
  103. data/spec/ramaze/template/tenjin.rb +1 -1
  104. data/spec/snippets/object/__dir__.rb +6 -0
  105. data/spec/snippets/{object → ramaze}/acquire.rb +24 -18
  106. metadata +18 -16
  107. data/lib/ramaze/contrib/auto_params.rb +0 -135
  108. data/lib/ramaze/contrib/auto_params/get_args.rb +0 -58
  109. data/spec/contrib/auto_params.rb +0 -121
  110. data/spec/snippets/divide.rb +0 -19
@@ -9,7 +9,7 @@ module Ramaze
9
9
  module MIME
10
10
 
11
11
  # the mime_types.yaml as full path, we use a copy of mongrels.
12
- trait :types => YAML.load_file(BASEDIR/'ramaze'/'tool'/'mime_types.yaml')
12
+ trait :types => YAML.load_file(File.join(BASEDIR, 'ramaze/tool/mime_types.yaml'))
13
13
 
14
14
  class << self
15
15
 
@@ -5,7 +5,8 @@ require 'fileutils'
5
5
  require 'find'
6
6
 
7
7
  class ProjectCreator
8
- PROTO = ['~/.proto/']
8
+ PROTO = []
9
+ PROTO << '~/.proto/' if ENV["HOME"] # Guard against Windows
9
10
  attr_accessor :name, :options
10
11
 
11
12
  def initialize(name, options = {})
@@ -1,6 +1,6 @@
1
- # Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
2
  # All files in this distribution are subject to the terms of the Ruby license.
3
3
 
4
4
  module Ramaze
5
- VERSION = "2008.10"
5
+ VERSION = "2009.01"
6
6
  end
@@ -2,7 +2,6 @@
2
2
  # All files in this distribution are subject to the terms of the Ruby license.
3
3
 
4
4
  require 'rake'
5
- require 'lib/ramaze/snippets/divide'
6
5
 
7
6
  spec_base = File.expand_path('spec/ramaze/')
8
7
  example_base = File.expand_path('examples')
@@ -10,10 +9,10 @@ snippets_base = File.expand_path('spec/snippets')
10
9
  # ignore files with these paths
11
10
  ignores = [ './*', './helper/*', './ramaze/adapter.rb', './ramaze/request.rb', ]
12
11
 
13
- files = Dir[spec_base/'**'/'*.rb'] +
14
- Dir[example_base/'**/spec'/'*.rb']
12
+ files = Dir["#{spec_base}/**/*.rb"] +
13
+ Dir["#{example_base}/**/spec/*.rb"]
15
14
  ignores.each do |ignore|
16
- ignore_files = Dir[spec_base/ignore]
15
+ ignore_files = Dir["#{spec_base}/#{ignore}"]
17
16
  ignore_files.each do |ignore_file|
18
17
  files.delete File.expand_path(ignore_file)
19
18
  end
@@ -35,7 +34,7 @@ task :coverage => :clean do
35
34
  # IMHO, ideally we should have
36
35
  # * 100% coverage of ramaze with pure tests
37
36
  # * 100% coverage with non-pure functional tests
38
- pure_specs = Dir[snippets_base/'**/*.rb'].entries
37
+ pure_specs = Dir["#{snippets_base}/**/*.rb"].entries
39
38
  sys(COV_CMD % ["no-","t", pure_specs.join(' ')])
40
39
 
41
40
  files.each do |file|
@@ -11,18 +11,18 @@ task 'spec' do
11
11
  non_verbose, non_fatal = ENV['non_verbose'], ENV['non_fatal']
12
12
  require 'scanf'
13
13
 
14
- root = File.expand_path(File.dirname(__FILE__)/'..')
15
- libpath = root/'lib'
14
+ root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
15
+ libpath = "#{root}/lib"
16
16
 
17
- specs = Dir[root/'spec/{ramaze,examples,snippets,contrib}/**/*.rb'] +
18
- Dir[root/'examples/**/spec/**/*.rb']
17
+ specs = Dir["#{root}/spec/{ramaze,examples,snippets,contrib}/**/*.rb"] +
18
+ Dir["#{root}/examples/**/spec/**/*.rb"]
19
19
 
20
20
  ignore = [
21
- root/'spec/ramaze/request.rb',
21
+ "#{root}/spec/ramaze/request.rb",
22
22
  ].map{|i| Dir[i].map{|f| File.expand_path(f) }}.flatten
23
23
 
24
24
  config = RbConfig::CONFIG
25
- bin = config['bindir']/config['ruby_install_name']
25
+ bin = File.join(config['bindir'], config['ruby_install_name'])
26
26
 
27
27
  result_format = '%d tests, %d assertions, %d failures, %d errors'
28
28
 
Binary file
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ramaze"
3
- s.version = "2008.11"
3
+ s.version = "2008.12"
4
4
 
5
5
  s.summary = "Ramaze is a simple and modular web framework"
6
6
  s.description = "Ramaze is a simple and modular web framework"
@@ -15,771 +15,772 @@ Gem::Specification.new do |s|
15
15
  s.require_path = "lib"
16
16
  s.post_install_message = %{
17
17
  ============================================================
18
-
18
+
19
19
  Thank you for installing Ramaze!
20
20
  The main website is http://ramaze.net .
21
21
 
22
22
  Feel free to ask questions in our IRC channel:
23
23
  irc.freenode.net #ramaze
24
24
  http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
25
-
25
+
26
26
  ============================================================}
27
27
 
28
28
  s.add_dependency('rack', '>= 0.3.0')
29
29
 
30
- s.files = ["README.markdown",
31
- "Rakefile",
32
- "benchmark",
33
- "benchmark/results.txt",
34
- "benchmark/run.rb",
35
- "benchmark/suite",
36
- "benchmark/suite/minimal.rb",
37
- "benchmark/suite/no_informer.rb",
38
- "benchmark/suite/no_sessions.rb",
39
- "benchmark/suite/no_template.rb",
40
- "benchmark/suite/simple.rb",
41
- "benchmark/suite/template_amrita2.rb",
42
- "benchmark/suite/template_builder.rb",
43
- "benchmark/suite/template_erubis.rb",
44
- "benchmark/suite/template_ezamar.rb",
45
- "benchmark/suite/template_haml.rb",
46
- "benchmark/suite/template_liquid.rb",
47
- "benchmark/suite/template_markaby.rb",
48
- "benchmark/suite/template_nagoro.rb",
49
- "benchmark/suite/template_redcloth.rb",
50
- "benchmark/suite/template_tenjin.rb",
51
- "benchmark/test.rb",
52
- "bin",
53
- "bin/ramaze",
54
- "doc",
55
- "doc/AUTHORS",
56
- "doc/CHANGELOG",
57
- "doc/COPYING",
58
- "doc/FAQ",
59
- "doc/GPL",
60
- "doc/INSTALL",
61
- "doc/LEGAL",
62
- "doc/TODO",
63
- "doc/meta",
64
- "doc/meta/announcement.txt",
65
- "doc/meta/configuration.txt",
66
- "doc/meta/internals.txt",
67
- "doc/meta/users.kml",
68
- "doc/readme_chunks",
69
- "doc/readme_chunks/appendix.txt",
70
- "doc/readme_chunks/examples.txt",
71
- "doc/readme_chunks/features.txt",
72
- "doc/readme_chunks/getting_help.txt",
73
- "doc/readme_chunks/getting_started.txt",
74
- "doc/readme_chunks/installing.txt",
75
- "doc/readme_chunks/introduction.txt",
76
- "doc/readme_chunks/principles.txt",
77
- "doc/readme_chunks/thanks.txt",
78
- "doc/tutorial",
79
- "doc/tutorial/todolist.html",
80
- "doc/tutorial/todolist.mkd",
81
- "examples",
82
- "examples/app",
83
- "examples/app/auth",
84
- "examples/app/auth/auth.rb",
85
- "examples/app/auth/template",
86
- "examples/app/auth/template/layout.haml",
87
- "examples/app/auth/template/login.haml",
88
- "examples/app/blog",
89
- "examples/app/blog/README",
90
- "examples/app/blog/controller",
91
- "examples/app/blog/controller/main.rb",
92
- "examples/app/blog/model",
93
- "examples/app/blog/model/entry.rb",
94
- "examples/app/blog/public",
95
- "examples/app/blog/public/styles",
96
- "examples/app/blog/public/styles/blog.css",
97
- "examples/app/blog/spec",
98
- "examples/app/blog/spec/blog.rb",
99
- "examples/app/blog/start.rb",
100
- "examples/app/blog/view",
101
- "examples/app/blog/view/edit.xhtml",
102
- "examples/app/blog/view/index.xhtml",
103
- "examples/app/blog/view/layout.xhtml",
104
- "examples/app/blog/view/new.xhtml",
105
- "examples/app/chat",
106
- "examples/app/chat/model",
107
- "examples/app/chat/model/history.rb",
108
- "examples/app/chat/model/message.rb",
109
- "examples/app/chat/public",
110
- "examples/app/chat/public/css",
111
- "examples/app/chat/public/css/chat.css",
112
- "examples/app/chat/public/js",
113
- "examples/app/chat/public/js/chat.js",
114
- "examples/app/chat/public/js/jquery.js",
115
- "examples/app/chat/start.rb",
116
- "examples/app/chat/view",
117
- "examples/app/chat/view/chat.xhtml",
118
- "examples/app/chat/view/index.xhtml",
119
- "examples/app/chat/view/layout.xhtml",
120
- "examples/app/localization",
121
- "examples/app/localization/start.rb",
122
- "examples/app/rapaste",
123
- "examples/app/rapaste/Rakefile",
124
- "examples/app/rapaste/controller",
125
- "examples/app/rapaste/controller/paste.rb",
126
- "examples/app/rapaste/model",
127
- "examples/app/rapaste/model/paste.rb",
128
- "examples/app/rapaste/public",
129
- "examples/app/rapaste/public/css",
130
- "examples/app/rapaste/public/css/active4d.css",
131
- "examples/app/rapaste/public/css/all_hallows_eve.css",
132
- "examples/app/rapaste/public/css/amy.css",
133
- "examples/app/rapaste/public/css/blackboard.css",
134
- "examples/app/rapaste/public/css/brilliance_black.css",
135
- "examples/app/rapaste/public/css/brilliance_dull.css",
136
- "examples/app/rapaste/public/css/cobalt.css",
137
- "examples/app/rapaste/public/css/dawn.css",
138
- "examples/app/rapaste/public/css/display.css",
139
- "examples/app/rapaste/public/css/eiffel.css",
140
- "examples/app/rapaste/public/css/espresso_libre.css",
141
- "examples/app/rapaste/public/css/idle.css",
142
- "examples/app/rapaste/public/css/iplastic.css",
143
- "examples/app/rapaste/public/css/lazy.css",
144
- "examples/app/rapaste/public/css/mac_classic.css",
145
- "examples/app/rapaste/public/css/magicwb_amiga.css",
146
- "examples/app/rapaste/public/css/pastels_on_dark.css",
147
- "examples/app/rapaste/public/css/slush_poppies.css",
148
- "examples/app/rapaste/public/css/spacecadet.css",
149
- "examples/app/rapaste/public/css/sunburst.css",
150
- "examples/app/rapaste/public/css/twilight.css",
151
- "examples/app/rapaste/public/css/zenburnesque.css",
152
- "examples/app/rapaste/public/js",
153
- "examples/app/rapaste/public/js/jquery.js",
154
- "examples/app/rapaste/spec",
155
- "examples/app/rapaste/spec/rapaste.rb",
156
- "examples/app/rapaste/start.rb",
157
- "examples/app/rapaste/view",
158
- "examples/app/rapaste/view/copy.xhtml",
159
- "examples/app/rapaste/view/index.xhtml",
160
- "examples/app/rapaste/view/layout.xhtml",
161
- "examples/app/rapaste/view/list.xhtml",
162
- "examples/app/rapaste/view/search.xhtml",
163
- "examples/app/rapaste/view/view.xhtml",
164
- "examples/app/sourceview",
165
- "examples/app/sourceview/public",
166
- "examples/app/sourceview/public/coderay.css",
167
- "examples/app/sourceview/public/images",
168
- "examples/app/sourceview/public/images/file.gif",
169
- "examples/app/sourceview/public/images/folder.gif",
170
- "examples/app/sourceview/public/images/tv-collapsable-last.gif",
171
- "examples/app/sourceview/public/images/tv-collapsable.gif",
172
- "examples/app/sourceview/public/images/tv-expandable-last.gif",
173
- "examples/app/sourceview/public/images/tv-expandable.gif",
174
- "examples/app/sourceview/public/images/tv-item-last.gif",
175
- "examples/app/sourceview/public/images/tv-item.gif",
176
- "examples/app/sourceview/public/jquery.js",
177
- "examples/app/sourceview/public/jquery.treeview.css",
178
- "examples/app/sourceview/public/jquery.treeview.js",
179
- "examples/app/sourceview/public/sourceview.js",
180
- "examples/app/sourceview/sourceview.rb",
181
- "examples/app/sourceview/template",
182
- "examples/app/sourceview/template/index.haml",
183
- "examples/app/todolist",
184
- "examples/app/todolist/README",
185
- "examples/app/todolist/public",
186
- "examples/app/todolist/public/favicon.ico",
187
- "examples/app/todolist/public/js",
188
- "examples/app/todolist/public/js/jquery.js",
189
- "examples/app/todolist/public/ramaze.png",
190
- "examples/app/todolist/spec",
191
- "examples/app/todolist/spec/todolist.rb",
192
- "examples/app/todolist/src",
193
- "examples/app/todolist/src/controller",
194
- "examples/app/todolist/src/controller/main.rb",
195
- "examples/app/todolist/src/element",
196
- "examples/app/todolist/src/element/page.rb",
197
- "examples/app/todolist/src/model.rb",
198
- "examples/app/todolist/start.rb",
199
- "examples/app/todolist/template",
200
- "examples/app/todolist/template/index.xhtml",
201
- "examples/app/todolist/template/new.xhtml",
202
- "examples/app/upload",
203
- "examples/app/upload/start.rb",
204
- "examples/app/upload/view",
205
- "examples/app/upload/view/index.xhtml",
206
- "examples/app/whywiki",
207
- "examples/app/whywiki/spec",
208
- "examples/app/whywiki/spec/whywiki.rb",
209
- "examples/app/whywiki/start.rb",
210
- "examples/app/whywiki/template",
211
- "examples/app/whywiki/template/edit.xhtml",
212
- "examples/app/whywiki/template/show.xhtml",
213
- "examples/app/wikore",
214
- "examples/app/wikore/spec",
215
- "examples/app/wikore/spec/wikore.rb",
216
- "examples/app/wikore/src",
217
- "examples/app/wikore/src/controller.rb",
218
- "examples/app/wikore/src/model.rb",
219
- "examples/app/wikore/start.rb",
220
- "examples/app/wikore/template",
221
- "examples/app/wikore/template/index.xhtml",
222
- "examples/app/wiktacular",
223
- "examples/app/wiktacular/README",
224
- "examples/app/wiktacular/mkd",
225
- "examples/app/wiktacular/mkd/link",
226
- "examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd",
227
- "examples/app/wiktacular/mkd/link/current.mkd",
228
- "examples/app/wiktacular/mkd/main",
229
- "examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd",
230
- "examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd",
231
- "examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd",
232
- "examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd",
233
- "examples/app/wiktacular/mkd/main/current.mkd",
234
- "examples/app/wiktacular/mkd/markdown",
235
- "examples/app/wiktacular/mkd/markdown/current.mkd",
236
- "examples/app/wiktacular/mkd/testing",
237
- "examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd",
238
- "examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd",
239
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd",
240
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd",
241
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd",
242
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd",
243
- "examples/app/wiktacular/mkd/testing/current.mkd",
244
- "examples/app/wiktacular/public",
245
- "examples/app/wiktacular/public/favicon.ico",
246
- "examples/app/wiktacular/public/screen.css",
247
- "examples/app/wiktacular/spec",
248
- "examples/app/wiktacular/spec/wiktacular.rb",
249
- "examples/app/wiktacular/src",
250
- "examples/app/wiktacular/src/controller.rb",
251
- "examples/app/wiktacular/src/model.rb",
252
- "examples/app/wiktacular/start.rb",
253
- "examples/app/wiktacular/template",
254
- "examples/app/wiktacular/template/edit.xhtml",
255
- "examples/app/wiktacular/template/html_layout.xhtml",
256
- "examples/app/wiktacular/template/index.xhtml",
257
- "examples/app/wiktacular/template/new.xhtml",
258
- "examples/basic",
259
- "examples/basic/element.rb",
260
- "examples/basic/gestalt.rb",
261
- "examples/basic/hello.rb",
262
- "examples/basic/layout.rb",
263
- "examples/basic/linking.rb",
264
- "examples/basic/simple.rb",
265
- "examples/helpers",
266
- "examples/helpers/cache.rb",
267
- "examples/helpers/form_with_sequel.rb",
268
- "examples/helpers/httpdigest.rb",
269
- "examples/helpers/identity.rb",
270
- "examples/helpers/nitro_form.rb",
271
- "examples/helpers/paginate.rb",
272
- "examples/helpers/provide.rb",
273
- "examples/helpers/rest.rb",
274
- "examples/helpers/simple_captcha.rb",
275
- "examples/misc",
276
- "examples/misc/css.rb",
277
- "examples/misc/facebook.rb",
278
- "examples/misc/memleak_detector.rb",
279
- "examples/misc/nagoro_element.rb",
280
- "examples/misc/ramaise.rb",
281
- "examples/misc/rapp.rb",
282
- "examples/misc/sequel_scaffolding.rb",
283
- "examples/misc/simple_auth.rb",
284
- "examples/templates",
285
- "examples/templates/template",
286
- "examples/templates/template/external.amrita",
287
- "examples/templates/template/external.haml",
288
- "examples/templates/template/external.liquid",
289
- "examples/templates/template/external.mab",
290
- "examples/templates/template/external.nag",
291
- "examples/templates/template/external.redcloth",
292
- "examples/templates/template/external.rem",
293
- "examples/templates/template/external.rhtml",
294
- "examples/templates/template/external.tenjin",
295
- "examples/templates/template/external.xsl",
296
- "examples/templates/template/external.zmr",
297
- "examples/templates/template_amrita2.rb",
298
- "examples/templates/template_erubis.rb",
299
- "examples/templates/template_ezamar.rb",
300
- "examples/templates/template_haml.rb",
301
- "examples/templates/template_liquid.rb",
302
- "examples/templates/template_markaby.rb",
303
- "examples/templates/template_nagoro.rb",
304
- "examples/templates/template_redcloth.rb",
305
- "examples/templates/template_remarkably.rb",
306
- "examples/templates/template_tenjin.rb",
307
- "examples/templates/template_xslt.rb",
308
- "lib",
309
- "lib/proto",
310
- "lib/proto/controller",
311
- "lib/proto/controller/init.rb",
312
- "lib/proto/controller/main.rb",
313
- "lib/proto/model",
314
- "lib/proto/model/init.rb",
315
- "lib/proto/public",
316
- "lib/proto/public/css",
317
- "lib/proto/public/css/ramaze_error.css",
318
- "lib/proto/public/dispatch.fcgi",
319
- "lib/proto/public/favicon.ico",
320
- "lib/proto/public/js",
321
- "lib/proto/public/js/jquery.js",
322
- "lib/proto/public/ramaze.png",
323
- "lib/proto/spec",
324
- "lib/proto/spec/main.rb",
325
- "lib/proto/start.rb",
326
- "lib/proto/start.ru",
327
- "lib/proto/view",
328
- "lib/proto/view/error.xhtml",
329
- "lib/proto/view/index.xhtml",
330
- "lib/proto/view/page.xhtml",
331
- "lib/ramaze",
332
- "lib/ramaze.rb",
333
- "lib/ramaze/action",
334
- "lib/ramaze/action.rb",
335
- "lib/ramaze/action/render.rb",
336
- "lib/ramaze/adapter",
337
- "lib/ramaze/adapter.rb",
338
- "lib/ramaze/adapter/base.rb",
339
- "lib/ramaze/adapter/cgi.rb",
340
- "lib/ramaze/adapter/ebb.rb",
341
- "lib/ramaze/adapter/evented_mongrel.rb",
342
- "lib/ramaze/adapter/fake.rb",
343
- "lib/ramaze/adapter/fcgi.rb",
344
- "lib/ramaze/adapter/lsws.rb",
345
- "lib/ramaze/adapter/mongrel.rb",
346
- "lib/ramaze/adapter/scgi.rb",
347
- "lib/ramaze/adapter/swiftiplied_mongrel.rb",
348
- "lib/ramaze/adapter/thin.rb",
349
- "lib/ramaze/adapter/webrick.rb",
350
- "lib/ramaze/cache",
351
- "lib/ramaze/cache.rb",
352
- "lib/ramaze/cache/memcached.rb",
353
- "lib/ramaze/cache/memory.rb",
354
- "lib/ramaze/cache/yaml_store.rb",
355
- "lib/ramaze/contrib",
356
- "lib/ramaze/contrib.rb",
357
- "lib/ramaze/contrib/auto_params",
358
- "lib/ramaze/contrib/auto_params.rb",
359
- "lib/ramaze/contrib/auto_params/get_args.rb",
360
- "lib/ramaze/contrib/email.rb",
361
- "lib/ramaze/contrib/facebook",
362
- "lib/ramaze/contrib/facebook.rb",
363
- "lib/ramaze/contrib/facebook/facebook.rb",
364
- "lib/ramaze/contrib/file_cache.rb",
365
- "lib/ramaze/contrib/gems.rb",
366
- "lib/ramaze/contrib/gettext",
367
- "lib/ramaze/contrib/gettext.rb",
368
- "lib/ramaze/contrib/gettext/mo.rb",
369
- "lib/ramaze/contrib/gettext/parser.rb",
370
- "lib/ramaze/contrib/gettext/po.rb",
371
- "lib/ramaze/contrib/gzip_filter.rb",
372
- "lib/ramaze/contrib/maruku_uv.rb",
373
- "lib/ramaze/contrib/profiling.rb",
374
- "lib/ramaze/contrib/rest.rb",
375
- "lib/ramaze/contrib/sequel",
376
- "lib/ramaze/contrib/sequel/create_join.rb",
377
- "lib/ramaze/contrib/sequel/fill.rb",
378
- "lib/ramaze/contrib/sequel/form_field.rb",
379
- "lib/ramaze/contrib/sequel/image.rb",
380
- "lib/ramaze/contrib/sequel/relation.rb",
381
- "lib/ramaze/contrib/sequel_cache.rb",
382
- "lib/ramaze/controller",
383
- "lib/ramaze/controller.rb",
384
- "lib/ramaze/controller/error.rb",
385
- "lib/ramaze/controller/main.rb",
386
- "lib/ramaze/controller/resolve.rb",
387
- "lib/ramaze/current",
388
- "lib/ramaze/current.rb",
389
- "lib/ramaze/current/request.rb",
390
- "lib/ramaze/current/response.rb",
391
- "lib/ramaze/current/session",
392
- "lib/ramaze/current/session.rb",
393
- "lib/ramaze/current/session/flash.rb",
394
- "lib/ramaze/current/session/hash.rb",
395
- "lib/ramaze/dispatcher",
396
- "lib/ramaze/dispatcher.rb",
397
- "lib/ramaze/dispatcher/action.rb",
398
- "lib/ramaze/dispatcher/directory.rb",
399
- "lib/ramaze/dispatcher/error.rb",
400
- "lib/ramaze/dispatcher/file.rb",
401
- "lib/ramaze/error.rb",
402
- "lib/ramaze/gestalt.rb",
403
- "lib/ramaze/helper",
404
- "lib/ramaze/helper.rb",
405
- "lib/ramaze/helper/aspect.rb",
406
- "lib/ramaze/helper/auth.rb",
407
- "lib/ramaze/helper/cache.rb",
408
- "lib/ramaze/helper/cgi.rb",
409
- "lib/ramaze/helper/flash.rb",
410
- "lib/ramaze/helper/form.rb",
411
- "lib/ramaze/helper/formatting.rb",
412
- "lib/ramaze/helper/gestalt.rb",
413
- "lib/ramaze/helper/gravatar.rb",
414
- "lib/ramaze/helper/httpdigest.rb",
415
- "lib/ramaze/helper/identity.rb",
416
- "lib/ramaze/helper/link.rb",
417
- "lib/ramaze/helper/markaby.rb",
418
- "lib/ramaze/helper/maruku.rb",
419
- "lib/ramaze/helper/nitroform.rb",
420
- "lib/ramaze/helper/pager.rb",
421
- "lib/ramaze/helper/paginate.rb",
422
- "lib/ramaze/helper/partial.rb",
423
- "lib/ramaze/helper/redirect.rb",
424
- "lib/ramaze/helper/rest.rb",
425
- "lib/ramaze/helper/sendfile.rb",
426
- "lib/ramaze/helper/sequel.rb",
427
- "lib/ramaze/helper/simple_captcha.rb",
428
- "lib/ramaze/helper/stack.rb",
429
- "lib/ramaze/helper/tagz.rb",
430
- "lib/ramaze/helper/thread.rb",
431
- "lib/ramaze/helper/ultraviolet.rb",
432
- "lib/ramaze/helper/user.rb",
433
- "lib/ramaze/helper/xhtml.rb",
434
- "lib/ramaze/log",
435
- "lib/ramaze/log.rb",
436
- "lib/ramaze/log/analogger.rb",
437
- "lib/ramaze/log/growl.rb",
438
- "lib/ramaze/log/hub.rb",
439
- "lib/ramaze/log/informer.rb",
440
- "lib/ramaze/log/knotify.rb",
441
- "lib/ramaze/log/logger.rb",
442
- "lib/ramaze/log/logging.rb",
443
- "lib/ramaze/log/rotatinginformer.rb",
444
- "lib/ramaze/log/syslog.rb",
445
- "lib/ramaze/log/xosd.rb",
446
- "lib/ramaze/option",
447
- "lib/ramaze/option.rb",
448
- "lib/ramaze/option/dsl.rb",
449
- "lib/ramaze/option/holder.rb",
450
- "lib/ramaze/option/merger.rb",
451
- "lib/ramaze/reloader.rb",
452
- "lib/ramaze/route.rb",
453
- "lib/ramaze/setup.rb",
454
- "lib/ramaze/snippets",
455
- "lib/ramaze/snippets.rb",
456
- "lib/ramaze/snippets/array",
457
- "lib/ramaze/snippets/array/put_within.rb",
458
- "lib/ramaze/snippets/binding",
459
- "lib/ramaze/snippets/binding/locals.rb",
460
- "lib/ramaze/snippets/blankslate.rb",
461
- "lib/ramaze/snippets/dictionary.rb",
462
- "lib/ramaze/snippets/divide.rb",
463
- "lib/ramaze/snippets/fiber.rb",
464
- "lib/ramaze/snippets/kernel",
465
- "lib/ramaze/snippets/kernel/constant.rb",
466
- "lib/ramaze/snippets/kernel/pretty_inspect.rb",
467
- "lib/ramaze/snippets/metaid.rb",
468
- "lib/ramaze/snippets/numeric",
469
- "lib/ramaze/snippets/numeric/filesize_format.rb",
470
- "lib/ramaze/snippets/numeric/time.rb",
471
- "lib/ramaze/snippets/object",
472
- "lib/ramaze/snippets/object/__dir__.rb",
473
- "lib/ramaze/snippets/object/acquire.rb",
474
- "lib/ramaze/snippets/object/instance_variable_defined.rb",
475
- "lib/ramaze/snippets/object/pretty.rb",
476
- "lib/ramaze/snippets/object/scope.rb",
477
- "lib/ramaze/snippets/object/traits.rb",
478
- "lib/ramaze/snippets/ordered_set.rb",
479
- "lib/ramaze/snippets/proc",
480
- "lib/ramaze/snippets/proc/locals.rb",
481
- "lib/ramaze/snippets/ramaze",
482
- "lib/ramaze/snippets/ramaze/caller_info.rb",
483
- "lib/ramaze/snippets/ramaze/caller_lines.rb",
484
- "lib/ramaze/snippets/ramaze/deprecated.rb",
485
- "lib/ramaze/snippets/ramaze/fiber.rb",
486
- "lib/ramaze/snippets/ramaze/state.rb",
487
- "lib/ramaze/snippets/ramaze/struct.rb",
488
- "lib/ramaze/snippets/string",
489
- "lib/ramaze/snippets/string/camel_case.rb",
490
- "lib/ramaze/snippets/string/color.rb",
491
- "lib/ramaze/snippets/string/each.rb",
492
- "lib/ramaze/snippets/string/end_with.rb",
493
- "lib/ramaze/snippets/string/esc.rb",
494
- "lib/ramaze/snippets/string/ord.rb",
495
- "lib/ramaze/snippets/string/snake_case.rb",
496
- "lib/ramaze/snippets/string/start_with.rb",
497
- "lib/ramaze/snippets/string/unindent.rb",
498
- "lib/ramaze/snippets/thread",
499
- "lib/ramaze/snippets/thread/into.rb",
500
- "lib/ramaze/spec",
501
- "lib/ramaze/spec.rb",
502
- "lib/ramaze/spec/helper",
503
- "lib/ramaze/spec/helper.rb",
504
- "lib/ramaze/spec/helper/bacon.rb",
505
- "lib/ramaze/spec/helper/browser.rb",
506
- "lib/ramaze/spec/helper/mock_http.rb",
507
- "lib/ramaze/spec/helper/pretty_output.rb",
508
- "lib/ramaze/spec/helper/requester.rb",
509
- "lib/ramaze/spec/helper/simple_http.rb",
510
- "lib/ramaze/spec/helper/snippets.rb",
511
- "lib/ramaze/store",
512
- "lib/ramaze/store/default.rb",
513
- "lib/ramaze/template",
514
- "lib/ramaze/template.rb",
515
- "lib/ramaze/template/amrita2.rb",
516
- "lib/ramaze/template/builder.rb",
517
- "lib/ramaze/template/erubis.rb",
518
- "lib/ramaze/template/ezamar",
519
- "lib/ramaze/template/ezamar.rb",
520
- "lib/ramaze/template/ezamar/element.rb",
521
- "lib/ramaze/template/ezamar/engine.rb",
522
- "lib/ramaze/template/ezamar/morpher.rb",
523
- "lib/ramaze/template/ezamar/render_partial.rb",
524
- "lib/ramaze/template/ezamar/textpow.syntax",
525
- "lib/ramaze/template/haml.rb",
526
- "lib/ramaze/template/liquid.rb",
527
- "lib/ramaze/template/markaby.rb",
528
- "lib/ramaze/template/maruku.rb",
529
- "lib/ramaze/template/nagoro.rb",
530
- "lib/ramaze/template/none.rb",
531
- "lib/ramaze/template/redcloth.rb",
532
- "lib/ramaze/template/remarkably.rb",
533
- "lib/ramaze/template/sass.rb",
534
- "lib/ramaze/template/tagz.rb",
535
- "lib/ramaze/template/tenjin.rb",
536
- "lib/ramaze/template/xslt.rb",
537
- "lib/ramaze/tool",
538
- "lib/ramaze/tool.rb",
539
- "lib/ramaze/tool/create.rb",
540
- "lib/ramaze/tool/daemonize.rb",
541
- "lib/ramaze/tool/localize.rb",
542
- "lib/ramaze/tool/mime.rb",
543
- "lib/ramaze/tool/mime_types.yaml",
544
- "lib/ramaze/tool/project_creator.rb",
545
- "lib/ramaze/tool/record.rb",
546
- "lib/ramaze/trinity.rb",
547
- "lib/ramaze/version.rb",
548
- "lib/vendor",
549
- "lib/vendor/bacon.rb",
550
- "rake_tasks",
551
- "rake_tasks/conf.rake",
552
- "rake_tasks/coverage.rake",
553
- "rake_tasks/gem.rake",
554
- "rake_tasks/git.rake",
555
- "rake_tasks/maintenance.rake",
556
- "rake_tasks/metric.rake",
557
- "rake_tasks/release.rake",
558
- "rake_tasks/spec.rake",
559
- "ramaze.gemspec",
560
- "spec",
561
- "spec/contrib",
562
- "spec/contrib/auto_params.rb",
563
- "spec/contrib/profiling.rb",
564
- "spec/contrib/sequel",
565
- "spec/contrib/sequel/fill.rb",
566
- "spec/examples",
567
- "spec/examples/caching.rb",
568
- "spec/examples/css.rb",
569
- "spec/examples/element.rb",
570
- "spec/examples/hello.rb",
571
- "spec/examples/linking.rb",
572
- "spec/examples/simple.rb",
573
- "spec/examples/simple_auth.rb",
574
- "spec/examples/templates",
575
- "spec/examples/templates/template_amrita2.rb",
576
- "spec/examples/templates/template_erubis.rb",
577
- "spec/examples/templates/template_ezamar.rb",
578
- "spec/examples/templates/template_haml.rb",
579
- "spec/examples/templates/template_liquid.rb",
580
- "spec/examples/templates/template_markaby.rb",
581
- "spec/examples/templates/template_redcloth.rb",
582
- "spec/examples/templates/template_remarkably.rb",
583
- "spec/examples/templates/template_tenjin.rb",
584
- "spec/helper.rb",
585
- "spec/ramaze",
586
- "spec/ramaze/action",
587
- "spec/ramaze/action/basics.rb",
588
- "spec/ramaze/action/cache.rb",
589
- "spec/ramaze/action/file_cache.rb",
590
- "spec/ramaze/action/layout.rb",
591
- "spec/ramaze/action/render.rb",
592
- "spec/ramaze/action/view",
593
- "spec/ramaze/action/view/bar.xhtml",
594
- "spec/ramaze/action/view/instancevars",
595
- "spec/ramaze/action/view/instancevars/layout.xhtml",
596
- "spec/ramaze/action/view/other_wrapper.xhtml",
597
- "spec/ramaze/action/view/single_wrapper.xhtml",
598
- "spec/ramaze/action/view/sub",
599
- "spec/ramaze/action/view/sub/sub_wrapper.xhtml",
600
- "spec/ramaze/adapter",
601
- "spec/ramaze/adapter.rb",
602
- "spec/ramaze/adapter/ebb.rb",
603
- "spec/ramaze/adapter/mongrel.rb",
604
- "spec/ramaze/adapter/record.rb",
605
- "spec/ramaze/adapter/webrick.rb",
606
- "spec/ramaze/cache.rb",
607
- "spec/ramaze/controller",
608
- "spec/ramaze/controller.rb",
609
- "spec/ramaze/controller/actionless_templates.rb",
610
- "spec/ramaze/controller/resolve.rb",
611
- "spec/ramaze/controller/subclass.rb",
612
- "spec/ramaze/controller/template_resolving.rb",
613
- "spec/ramaze/controller/view",
614
- "spec/ramaze/controller/view/bar.xhtml",
615
- "spec/ramaze/controller/view/base",
616
- "spec/ramaze/controller/view/base/another.xhtml",
617
- "spec/ramaze/controller/view/greet.xhtml",
618
- "spec/ramaze/controller/view/list.xhtml",
619
- "spec/ramaze/controller/view/other",
620
- "spec/ramaze/controller/view/other/greet",
621
- "spec/ramaze/controller/view/other/greet/other.xhtml",
622
- "spec/ramaze/controller/view/other_wrapper.xhtml",
623
- "spec/ramaze/current",
624
- "spec/ramaze/current/request.rb",
625
- "spec/ramaze/current/session.rb",
626
- "spec/ramaze/dispatcher",
627
- "spec/ramaze/dispatcher.rb",
628
- "spec/ramaze/dispatcher/directory.rb",
629
- "spec/ramaze/dispatcher/file.rb",
630
- "spec/ramaze/dispatcher/public",
631
- "spec/ramaze/dispatcher/public/favicon.ico",
632
- "spec/ramaze/dispatcher/public/file name.txt",
633
- "spec/ramaze/dispatcher/public/test_download.css",
634
- "spec/ramaze/element.rb",
635
- "spec/ramaze/error.rb",
636
- "spec/ramaze/gestalt.rb",
637
- "spec/ramaze/helper",
638
- "spec/ramaze/helper/aspect.rb",
639
- "spec/ramaze/helper/auth.rb",
640
- "spec/ramaze/helper/cache.rb",
641
- "spec/ramaze/helper/cgi.rb",
642
- "spec/ramaze/helper/file.rb",
643
- "spec/ramaze/helper/flash.rb",
644
- "spec/ramaze/helper/form.rb",
645
- "spec/ramaze/helper/formatting.rb",
646
- "spec/ramaze/helper/link.rb",
647
- "spec/ramaze/helper/pager.rb",
648
- "spec/ramaze/helper/partial.rb",
649
- "spec/ramaze/helper/redirect.rb",
650
- "spec/ramaze/helper/simple_captcha.rb",
651
- "spec/ramaze/helper/stack.rb",
652
- "spec/ramaze/helper/user.rb",
653
- "spec/ramaze/helper/view",
654
- "spec/ramaze/helper/view/locals.xhtml",
655
- "spec/ramaze/helper/view/loop.xhtml",
656
- "spec/ramaze/helper/view/num.xhtml",
657
- "spec/ramaze/helper/view/partial.xhtml",
658
- "spec/ramaze/helper/view/recursive.xhtml",
659
- "spec/ramaze/helper/view/recursive_local_ivars.xhtml",
660
- "spec/ramaze/helper/view/recursive_locals.xhtml",
661
- "spec/ramaze/helper/view/test_template.xhtml",
662
- "spec/ramaze/localize.rb",
663
- "spec/ramaze/log",
664
- "spec/ramaze/log/informer.rb",
665
- "spec/ramaze/log/syslog.rb",
666
- "spec/ramaze/morpher.rb",
667
- "spec/ramaze/params.rb",
668
- "spec/ramaze/public",
669
- "spec/ramaze/public/error404.xhtml",
670
- "spec/ramaze/public/favicon.ico",
671
- "spec/ramaze/public/ramaze.png",
672
- "spec/ramaze/public/test_download.css",
673
- "spec/ramaze/request",
674
- "spec/ramaze/request.rb",
675
- "spec/ramaze/request/ebb.rb",
676
- "spec/ramaze/request/mongrel.rb",
677
- "spec/ramaze/request/thin.rb",
678
- "spec/ramaze/request/webrick.rb",
679
- "spec/ramaze/rewrite",
680
- "spec/ramaze/rewrite.rb",
681
- "spec/ramaze/rewrite/file.css",
682
- "spec/ramaze/route.rb",
683
- "spec/ramaze/session.rb",
684
- "spec/ramaze/store",
685
- "spec/ramaze/store/default.rb",
686
- "spec/ramaze/struct.rb",
687
- "spec/ramaze/template",
688
- "spec/ramaze/template.rb",
689
- "spec/ramaze/template/amrita2",
690
- "spec/ramaze/template/amrita2.rb",
691
- "spec/ramaze/template/amrita2/external.amrita",
692
- "spec/ramaze/template/amrita2/sum.amrita",
693
- "spec/ramaze/template/builder",
694
- "spec/ramaze/template/builder.rb",
695
- "spec/ramaze/template/builder/external.rxml",
696
- "spec/ramaze/template/erubis",
697
- "spec/ramaze/template/erubis.rb",
698
- "spec/ramaze/template/erubis/sum.rhtml",
699
- "spec/ramaze/template/ezamar",
700
- "spec/ramaze/template/ezamar.rb",
701
- "spec/ramaze/template/ezamar/another",
702
- "spec/ramaze/template/ezamar/another/long",
703
- "spec/ramaze/template/ezamar/another/long/action.zmr",
704
- "spec/ramaze/template/ezamar/combined.zmr",
705
- "spec/ramaze/template/ezamar/file_only.zmr",
706
- "spec/ramaze/template/ezamar/index.zmr",
707
- "spec/ramaze/template/ezamar/nested.zmr",
708
- "spec/ramaze/template/ezamar/other__index.xhtml",
709
- "spec/ramaze/template/ezamar/some__long__action.zmr",
710
- "spec/ramaze/template/ezamar/sum.zmr",
711
- "spec/ramaze/template/haml",
712
- "spec/ramaze/template/haml.rb",
713
- "spec/ramaze/template/haml/index.haml",
714
- "spec/ramaze/template/haml/locals.haml",
715
- "spec/ramaze/template/haml/with_vars.haml",
716
- "spec/ramaze/template/liquid",
717
- "spec/ramaze/template/liquid.rb",
718
- "spec/ramaze/template/liquid/index.liquid",
719
- "spec/ramaze/template/liquid/products.liquid",
720
- "spec/ramaze/template/markaby",
721
- "spec/ramaze/template/markaby.rb",
722
- "spec/ramaze/template/markaby/external.mab",
723
- "spec/ramaze/template/markaby/sum.mab",
724
- "spec/ramaze/template/nagoro",
725
- "spec/ramaze/template/nagoro.rb",
726
- "spec/ramaze/template/nagoro/another",
727
- "spec/ramaze/template/nagoro/another/long",
728
- "spec/ramaze/template/nagoro/another/long/action.nag",
729
- "spec/ramaze/template/nagoro/combined.nag",
730
- "spec/ramaze/template/nagoro/file_only.nag",
731
- "spec/ramaze/template/nagoro/index.nag",
732
- "spec/ramaze/template/nagoro/nested.nag",
733
- "spec/ramaze/template/nagoro/some__long__action.nag",
734
- "spec/ramaze/template/nagoro/sum.nag",
735
- "spec/ramaze/template/ramaze",
736
- "spec/ramaze/template/ramaze/external.test",
737
- "spec/ramaze/template/redcloth",
738
- "spec/ramaze/template/redcloth.rb",
739
- "spec/ramaze/template/redcloth/external.redcloth",
740
- "spec/ramaze/template/remarkably",
741
- "spec/ramaze/template/remarkably.rb",
742
- "spec/ramaze/template/remarkably/external.rem",
743
- "spec/ramaze/template/remarkably/sum.rem",
744
- "spec/ramaze/template/sass",
745
- "spec/ramaze/template/sass.rb",
746
- "spec/ramaze/template/sass/file.css.sass",
747
- "spec/ramaze/template/tagz",
748
- "spec/ramaze/template/tagz.rb",
749
- "spec/ramaze/template/tagz/external.tagz",
750
- "spec/ramaze/template/tagz/sum.tagz",
751
- "spec/ramaze/template/tenjin",
752
- "spec/ramaze/template/tenjin.rb",
753
- "spec/ramaze/template/tenjin/external.tenjin",
754
- "spec/ramaze/template/xslt",
755
- "spec/ramaze/template/xslt.rb",
756
- "spec/ramaze/template/xslt/concat_words.xsl",
757
- "spec/ramaze/template/xslt/index.xsl",
758
- "spec/ramaze/template/xslt/products.xsl",
759
- "spec/ramaze/template/xslt/ruby_version.xsl",
760
- "spec/snippets",
761
- "spec/snippets/array",
762
- "spec/snippets/array/put_within.rb",
763
- "spec/snippets/binding",
764
- "spec/snippets/binding/locals.rb",
765
- "spec/snippets/divide.rb",
766
- "spec/snippets/kernel",
767
- "spec/snippets/kernel/constant.rb",
768
- "spec/snippets/numeric",
769
- "spec/snippets/numeric/filesize_format.rb",
770
- "spec/snippets/numeric/time.rb",
771
- "spec/snippets/object",
772
- "spec/snippets/object/__dir__.rb",
773
- "spec/snippets/object/acquire.rb",
774
- "spec/snippets/ordered_set.rb",
775
- "spec/snippets/ramaze",
776
- "spec/snippets/ramaze/caller_info.rb",
777
- "spec/snippets/ramaze/caller_lines.rb",
778
- "spec/snippets/string",
779
- "spec/snippets/string/camel_case.rb",
780
- "spec/snippets/string/color.rb",
781
- "spec/snippets/string/snake_case.rb",
782
- "spec/snippets/string/unindent.rb",
783
- "spec/snippets/thread",
784
- "spec/snippets/thread/into.rb"]
30
+ s.files = [
31
+ "README.markdown",
32
+ "Rakefile",
33
+ "benchmark",
34
+ "benchmark/results.txt",
35
+ "benchmark/run.rb",
36
+ "benchmark/suite",
37
+ "benchmark/suite/minimal.rb",
38
+ "benchmark/suite/no_informer.rb",
39
+ "benchmark/suite/no_sessions.rb",
40
+ "benchmark/suite/no_template.rb",
41
+ "benchmark/suite/simple.rb",
42
+ "benchmark/suite/template_amrita2.rb",
43
+ "benchmark/suite/template_builder.rb",
44
+ "benchmark/suite/template_erubis.rb",
45
+ "benchmark/suite/template_ezamar.rb",
46
+ "benchmark/suite/template_haml.rb",
47
+ "benchmark/suite/template_liquid.rb",
48
+ "benchmark/suite/template_markaby.rb",
49
+ "benchmark/suite/template_nagoro.rb",
50
+ "benchmark/suite/template_redcloth.rb",
51
+ "benchmark/suite/template_tenjin.rb",
52
+ "benchmark/test.rb",
53
+ "bin",
54
+ "bin/ramaze",
55
+ "doc",
56
+ "doc/AUTHORS",
57
+ "doc/CHANGELOG",
58
+ "doc/COPYING",
59
+ "doc/FAQ",
60
+ "doc/GPL",
61
+ "doc/INSTALL",
62
+ "doc/LEGAL",
63
+ "doc/TODO",
64
+ "doc/meta",
65
+ "doc/meta/announcement.txt",
66
+ "doc/meta/configuration.txt",
67
+ "doc/meta/internals.txt",
68
+ "doc/meta/users.kml",
69
+ "doc/readme_chunks",
70
+ "doc/readme_chunks/appendix.txt",
71
+ "doc/readme_chunks/examples.txt",
72
+ "doc/readme_chunks/features.txt",
73
+ "doc/readme_chunks/getting_help.txt",
74
+ "doc/readme_chunks/getting_started.txt",
75
+ "doc/readme_chunks/installing.txt",
76
+ "doc/readme_chunks/introduction.txt",
77
+ "doc/readme_chunks/principles.txt",
78
+ "doc/readme_chunks/thanks.txt",
79
+ "doc/tutorial",
80
+ "doc/tutorial/todolist.html",
81
+ "doc/tutorial/todolist.mkd",
82
+ "examples",
83
+ "examples/app",
84
+ "examples/app/auth",
85
+ "examples/app/auth/auth.rb",
86
+ "examples/app/auth/template",
87
+ "examples/app/auth/template/layout.haml",
88
+ "examples/app/auth/template/login.haml",
89
+ "examples/app/blog",
90
+ "examples/app/blog/README",
91
+ "examples/app/blog/controller",
92
+ "examples/app/blog/controller/main.rb",
93
+ "examples/app/blog/model",
94
+ "examples/app/blog/model/entry.rb",
95
+ "examples/app/blog/public",
96
+ "examples/app/blog/public/styles",
97
+ "examples/app/blog/public/styles/blog.css",
98
+ "examples/app/blog/spec",
99
+ "examples/app/blog/spec/blog.rb",
100
+ "examples/app/blog/start.rb",
101
+ "examples/app/blog/view",
102
+ "examples/app/blog/view/edit.xhtml",
103
+ "examples/app/blog/view/index.xhtml",
104
+ "examples/app/blog/view/layout.xhtml",
105
+ "examples/app/blog/view/new.xhtml",
106
+ "examples/app/chat",
107
+ "examples/app/chat/model",
108
+ "examples/app/chat/model/history.rb",
109
+ "examples/app/chat/model/message.rb",
110
+ "examples/app/chat/public",
111
+ "examples/app/chat/public/css",
112
+ "examples/app/chat/public/css/chat.css",
113
+ "examples/app/chat/public/js",
114
+ "examples/app/chat/public/js/chat.js",
115
+ "examples/app/chat/public/js/jquery.js",
116
+ "examples/app/chat/start.rb",
117
+ "examples/app/chat/view",
118
+ "examples/app/chat/view/chat.xhtml",
119
+ "examples/app/chat/view/index.xhtml",
120
+ "examples/app/chat/view/layout.xhtml",
121
+ "examples/app/localization",
122
+ "examples/app/localization/start.rb",
123
+ "examples/app/rapaste",
124
+ "examples/app/rapaste/Rakefile",
125
+ "examples/app/rapaste/controller",
126
+ "examples/app/rapaste/controller/paste.rb",
127
+ "examples/app/rapaste/model",
128
+ "examples/app/rapaste/model/paste.rb",
129
+ "examples/app/rapaste/public",
130
+ "examples/app/rapaste/public/css",
131
+ "examples/app/rapaste/public/css/active4d.css",
132
+ "examples/app/rapaste/public/css/all_hallows_eve.css",
133
+ "examples/app/rapaste/public/css/amy.css",
134
+ "examples/app/rapaste/public/css/blackboard.css",
135
+ "examples/app/rapaste/public/css/brilliance_black.css",
136
+ "examples/app/rapaste/public/css/brilliance_dull.css",
137
+ "examples/app/rapaste/public/css/cobalt.css",
138
+ "examples/app/rapaste/public/css/dawn.css",
139
+ "examples/app/rapaste/public/css/display.css",
140
+ "examples/app/rapaste/public/css/eiffel.css",
141
+ "examples/app/rapaste/public/css/espresso_libre.css",
142
+ "examples/app/rapaste/public/css/idle.css",
143
+ "examples/app/rapaste/public/css/iplastic.css",
144
+ "examples/app/rapaste/public/css/lazy.css",
145
+ "examples/app/rapaste/public/css/mac_classic.css",
146
+ "examples/app/rapaste/public/css/magicwb_amiga.css",
147
+ "examples/app/rapaste/public/css/pastels_on_dark.css",
148
+ "examples/app/rapaste/public/css/slush_poppies.css",
149
+ "examples/app/rapaste/public/css/spacecadet.css",
150
+ "examples/app/rapaste/public/css/sunburst.css",
151
+ "examples/app/rapaste/public/css/twilight.css",
152
+ "examples/app/rapaste/public/css/zenburnesque.css",
153
+ "examples/app/rapaste/public/js",
154
+ "examples/app/rapaste/public/js/jquery.js",
155
+ "examples/app/rapaste/spec",
156
+ "examples/app/rapaste/spec/rapaste.rb",
157
+ "examples/app/rapaste/start.rb",
158
+ "examples/app/rapaste/view",
159
+ "examples/app/rapaste/view/copy.xhtml",
160
+ "examples/app/rapaste/view/index.xhtml",
161
+ "examples/app/rapaste/view/layout.xhtml",
162
+ "examples/app/rapaste/view/list.xhtml",
163
+ "examples/app/rapaste/view/search.xhtml",
164
+ "examples/app/rapaste/view/view.xhtml",
165
+ "examples/app/sourceview",
166
+ "examples/app/sourceview/public",
167
+ "examples/app/sourceview/public/coderay.css",
168
+ "examples/app/sourceview/public/images",
169
+ "examples/app/sourceview/public/images/file.gif",
170
+ "examples/app/sourceview/public/images/folder.gif",
171
+ "examples/app/sourceview/public/images/tv-collapsable-last.gif",
172
+ "examples/app/sourceview/public/images/tv-collapsable.gif",
173
+ "examples/app/sourceview/public/images/tv-expandable-last.gif",
174
+ "examples/app/sourceview/public/images/tv-expandable.gif",
175
+ "examples/app/sourceview/public/images/tv-item-last.gif",
176
+ "examples/app/sourceview/public/images/tv-item.gif",
177
+ "examples/app/sourceview/public/jquery.js",
178
+ "examples/app/sourceview/public/jquery.treeview.css",
179
+ "examples/app/sourceview/public/jquery.treeview.js",
180
+ "examples/app/sourceview/public/sourceview.js",
181
+ "examples/app/sourceview/sourceview.rb",
182
+ "examples/app/sourceview/template",
183
+ "examples/app/sourceview/template/index.haml",
184
+ "examples/app/todolist",
185
+ "examples/app/todolist/README",
186
+ "examples/app/todolist/public",
187
+ "examples/app/todolist/public/favicon.ico",
188
+ "examples/app/todolist/public/js",
189
+ "examples/app/todolist/public/js/jquery.js",
190
+ "examples/app/todolist/public/ramaze.png",
191
+ "examples/app/todolist/spec",
192
+ "examples/app/todolist/spec/todolist.rb",
193
+ "examples/app/todolist/src",
194
+ "examples/app/todolist/src/controller",
195
+ "examples/app/todolist/src/controller/main.rb",
196
+ "examples/app/todolist/src/element",
197
+ "examples/app/todolist/src/element/page.rb",
198
+ "examples/app/todolist/src/model.rb",
199
+ "examples/app/todolist/start.rb",
200
+ "examples/app/todolist/template",
201
+ "examples/app/todolist/template/index.xhtml",
202
+ "examples/app/todolist/template/new.xhtml",
203
+ "examples/app/upload",
204
+ "examples/app/upload/start.rb",
205
+ "examples/app/upload/view",
206
+ "examples/app/upload/view/index.xhtml",
207
+ "examples/app/whywiki",
208
+ "examples/app/whywiki/spec",
209
+ "examples/app/whywiki/spec/whywiki.rb",
210
+ "examples/app/whywiki/start.rb",
211
+ "examples/app/whywiki/template",
212
+ "examples/app/whywiki/template/edit.xhtml",
213
+ "examples/app/whywiki/template/show.xhtml",
214
+ "examples/app/wikore",
215
+ "examples/app/wikore/spec",
216
+ "examples/app/wikore/spec/wikore.rb",
217
+ "examples/app/wikore/src",
218
+ "examples/app/wikore/src/controller.rb",
219
+ "examples/app/wikore/src/model.rb",
220
+ "examples/app/wikore/start.rb",
221
+ "examples/app/wikore/template",
222
+ "examples/app/wikore/template/index.xhtml",
223
+ "examples/app/wiktacular",
224
+ "examples/app/wiktacular/README",
225
+ "examples/app/wiktacular/mkd",
226
+ "examples/app/wiktacular/mkd/link",
227
+ "examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd",
228
+ "examples/app/wiktacular/mkd/link/current.mkd",
229
+ "examples/app/wiktacular/mkd/main",
230
+ "examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd",
231
+ "examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd",
232
+ "examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd",
233
+ "examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd",
234
+ "examples/app/wiktacular/mkd/main/current.mkd",
235
+ "examples/app/wiktacular/mkd/markdown",
236
+ "examples/app/wiktacular/mkd/markdown/current.mkd",
237
+ "examples/app/wiktacular/mkd/testing",
238
+ "examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd",
239
+ "examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd",
240
+ "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd",
241
+ "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd",
242
+ "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd",
243
+ "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd",
244
+ "examples/app/wiktacular/mkd/testing/current.mkd",
245
+ "examples/app/wiktacular/public",
246
+ "examples/app/wiktacular/public/favicon.ico",
247
+ "examples/app/wiktacular/public/screen.css",
248
+ "examples/app/wiktacular/spec",
249
+ "examples/app/wiktacular/spec/wiktacular.rb",
250
+ "examples/app/wiktacular/src",
251
+ "examples/app/wiktacular/src/controller.rb",
252
+ "examples/app/wiktacular/src/model.rb",
253
+ "examples/app/wiktacular/start.rb",
254
+ "examples/app/wiktacular/template",
255
+ "examples/app/wiktacular/template/edit.xhtml",
256
+ "examples/app/wiktacular/template/html_layout.xhtml",
257
+ "examples/app/wiktacular/template/index.xhtml",
258
+ "examples/app/wiktacular/template/new.xhtml",
259
+ "examples/basic",
260
+ "examples/basic/element.rb",
261
+ "examples/basic/gestalt.rb",
262
+ "examples/basic/hello.rb",
263
+ "examples/basic/layout.rb",
264
+ "examples/basic/linking.rb",
265
+ "examples/basic/partial.rb",
266
+ "examples/basic/simple.rb",
267
+ "examples/helpers",
268
+ "examples/helpers/cache.rb",
269
+ "examples/helpers/form_with_sequel.rb",
270
+ "examples/helpers/httpdigest.rb",
271
+ "examples/helpers/identity.rb",
272
+ "examples/helpers/nitro_form.rb",
273
+ "examples/helpers/paginate.rb",
274
+ "examples/helpers/provide.rb",
275
+ "examples/helpers/rest.rb",
276
+ "examples/helpers/simple_captcha.rb",
277
+ "examples/misc",
278
+ "examples/misc/css.rb",
279
+ "examples/misc/facebook.rb",
280
+ "examples/misc/memleak_detector.rb",
281
+ "examples/misc/nagoro_element.rb",
282
+ "examples/misc/ramaise.rb",
283
+ "examples/misc/rapp.rb",
284
+ "examples/misc/sequel_scaffolding.rb",
285
+ "examples/misc/simple_auth.rb",
286
+ "examples/templates",
287
+ "examples/templates/template",
288
+ "examples/templates/template/external.amrita",
289
+ "examples/templates/template/external.haml",
290
+ "examples/templates/template/external.liquid",
291
+ "examples/templates/template/external.mab",
292
+ "examples/templates/template/external.nag",
293
+ "examples/templates/template/external.redcloth",
294
+ "examples/templates/template/external.rem",
295
+ "examples/templates/template/external.rhtml",
296
+ "examples/templates/template/external.tenjin",
297
+ "examples/templates/template/external.xsl",
298
+ "examples/templates/template/external.zmr",
299
+ "examples/templates/template_amrita2.rb",
300
+ "examples/templates/template_erubis.rb",
301
+ "examples/templates/template_ezamar.rb",
302
+ "examples/templates/template_haml.rb",
303
+ "examples/templates/template_liquid.rb",
304
+ "examples/templates/template_markaby.rb",
305
+ "examples/templates/template_nagoro.rb",
306
+ "examples/templates/template_redcloth.rb",
307
+ "examples/templates/template_remarkably.rb",
308
+ "examples/templates/template_tenjin.rb",
309
+ "examples/templates/template_xslt.rb",
310
+ "lib",
311
+ "lib/proto",
312
+ "lib/proto/controller",
313
+ "lib/proto/controller/init.rb",
314
+ "lib/proto/controller/main.rb",
315
+ "lib/proto/model",
316
+ "lib/proto/model/init.rb",
317
+ "lib/proto/public",
318
+ "lib/proto/public/css",
319
+ "lib/proto/public/css/ramaze_error.css",
320
+ "lib/proto/public/dispatch.fcgi",
321
+ "lib/proto/public/favicon.ico",
322
+ "lib/proto/public/js",
323
+ "lib/proto/public/js/jquery.js",
324
+ "lib/proto/public/ramaze.png",
325
+ "lib/proto/spec",
326
+ "lib/proto/spec/main.rb",
327
+ "lib/proto/start.rb",
328
+ "lib/proto/start.ru",
329
+ "lib/proto/view",
330
+ "lib/proto/view/error.xhtml",
331
+ "lib/proto/view/index.xhtml",
332
+ "lib/proto/view/page.xhtml",
333
+ "lib/ramaze",
334
+ "lib/ramaze.rb",
335
+ "lib/ramaze/action",
336
+ "lib/ramaze/action.rb",
337
+ "lib/ramaze/action/render.rb",
338
+ "lib/ramaze/adapter",
339
+ "lib/ramaze/adapter.rb",
340
+ "lib/ramaze/adapter/base.rb",
341
+ "lib/ramaze/adapter/cgi.rb",
342
+ "lib/ramaze/adapter/ebb.rb",
343
+ "lib/ramaze/adapter/evented_mongrel.rb",
344
+ "lib/ramaze/adapter/fake.rb",
345
+ "lib/ramaze/adapter/fcgi.rb",
346
+ "lib/ramaze/adapter/lsws.rb",
347
+ "lib/ramaze/adapter/mongrel.rb",
348
+ "lib/ramaze/adapter/scgi.rb",
349
+ "lib/ramaze/adapter/swiftiplied_mongrel.rb",
350
+ "lib/ramaze/adapter/thin.rb",
351
+ "lib/ramaze/adapter/webrick.rb",
352
+ "lib/ramaze/cache",
353
+ "lib/ramaze/cache.rb",
354
+ "lib/ramaze/cache/file.rb",
355
+ "lib/ramaze/cache/memcached.rb",
356
+ "lib/ramaze/cache/memory.rb",
357
+ "lib/ramaze/cache/yaml_store.rb",
358
+ "lib/ramaze/contrib",
359
+ "lib/ramaze/contrib.rb",
360
+ "lib/ramaze/contrib/email.rb",
361
+ "lib/ramaze/contrib/facebook",
362
+ "lib/ramaze/contrib/facebook.rb",
363
+ "lib/ramaze/contrib/facebook/facebook.rb",
364
+ "lib/ramaze/contrib/file_cache.rb",
365
+ "lib/ramaze/contrib/gems.rb",
366
+ "lib/ramaze/contrib/gettext",
367
+ "lib/ramaze/contrib/gettext.rb",
368
+ "lib/ramaze/contrib/gettext/mo.rb",
369
+ "lib/ramaze/contrib/gettext/parser.rb",
370
+ "lib/ramaze/contrib/gettext/po.rb",
371
+ "lib/ramaze/contrib/gzip_filter.rb",
372
+ "lib/ramaze/contrib/maruku_uv.rb",
373
+ "lib/ramaze/contrib/profiling.rb",
374
+ "lib/ramaze/contrib/rest.rb",
375
+ "lib/ramaze/contrib/sequel",
376
+ "lib/ramaze/contrib/sequel/create_join.rb",
377
+ "lib/ramaze/contrib/sequel/fill.rb",
378
+ "lib/ramaze/contrib/sequel/form_field.rb",
379
+ "lib/ramaze/contrib/sequel/image.rb",
380
+ "lib/ramaze/contrib/sequel/relation.rb",
381
+ "lib/ramaze/contrib/sequel_cache.rb",
382
+ "lib/ramaze/controller",
383
+ "lib/ramaze/controller.rb",
384
+ "lib/ramaze/controller/error.rb",
385
+ "lib/ramaze/controller/main.rb",
386
+ "lib/ramaze/controller/resolve.rb",
387
+ "lib/ramaze/current",
388
+ "lib/ramaze/current.rb",
389
+ "lib/ramaze/current/request.rb",
390
+ "lib/ramaze/current/response.rb",
391
+ "lib/ramaze/current/session",
392
+ "lib/ramaze/current/session.rb",
393
+ "lib/ramaze/current/session/flash.rb",
394
+ "lib/ramaze/current/session/hash.rb",
395
+ "lib/ramaze/dispatcher",
396
+ "lib/ramaze/dispatcher.rb",
397
+ "lib/ramaze/dispatcher/action.rb",
398
+ "lib/ramaze/dispatcher/directory.rb",
399
+ "lib/ramaze/dispatcher/error.rb",
400
+ "lib/ramaze/dispatcher/file.rb",
401
+ "lib/ramaze/error.rb",
402
+ "lib/ramaze/gestalt.rb",
403
+ "lib/ramaze/helper",
404
+ "lib/ramaze/helper.rb",
405
+ "lib/ramaze/helper/aspect.rb",
406
+ "lib/ramaze/helper/auth.rb",
407
+ "lib/ramaze/helper/cache.rb",
408
+ "lib/ramaze/helper/cgi.rb",
409
+ "lib/ramaze/helper/flash.rb",
410
+ "lib/ramaze/helper/form.rb",
411
+ "lib/ramaze/helper/formatting.rb",
412
+ "lib/ramaze/helper/gestalt.rb",
413
+ "lib/ramaze/helper/gravatar.rb",
414
+ "lib/ramaze/helper/httpdigest.rb",
415
+ "lib/ramaze/helper/identity.rb",
416
+ "lib/ramaze/helper/link.rb",
417
+ "lib/ramaze/helper/markaby.rb",
418
+ "lib/ramaze/helper/maruku.rb",
419
+ "lib/ramaze/helper/nitroform.rb",
420
+ "lib/ramaze/helper/pager.rb",
421
+ "lib/ramaze/helper/paginate.rb",
422
+ "lib/ramaze/helper/partial.rb",
423
+ "lib/ramaze/helper/redirect.rb",
424
+ "lib/ramaze/helper/rest.rb",
425
+ "lib/ramaze/helper/sendfile.rb",
426
+ "lib/ramaze/helper/sequel.rb",
427
+ "lib/ramaze/helper/simple_captcha.rb",
428
+ "lib/ramaze/helper/stack.rb",
429
+ "lib/ramaze/helper/tagz.rb",
430
+ "lib/ramaze/helper/thread.rb",
431
+ "lib/ramaze/helper/ultraviolet.rb",
432
+ "lib/ramaze/helper/user.rb",
433
+ "lib/ramaze/helper/xhtml.rb",
434
+ "lib/ramaze/log",
435
+ "lib/ramaze/log.rb",
436
+ "lib/ramaze/log/analogger.rb",
437
+ "lib/ramaze/log/growl.rb",
438
+ "lib/ramaze/log/hub.rb",
439
+ "lib/ramaze/log/informer.rb",
440
+ "lib/ramaze/log/knotify.rb",
441
+ "lib/ramaze/log/logger.rb",
442
+ "lib/ramaze/log/logging.rb",
443
+ "lib/ramaze/log/rotatinginformer.rb",
444
+ "lib/ramaze/log/syslog.rb",
445
+ "lib/ramaze/log/xosd.rb",
446
+ "lib/ramaze/option",
447
+ "lib/ramaze/option.rb",
448
+ "lib/ramaze/option/dsl.rb",
449
+ "lib/ramaze/option/holder.rb",
450
+ "lib/ramaze/option/merger.rb",
451
+ "lib/ramaze/reloader.rb",
452
+ "lib/ramaze/reloader/watch_inotify.rb",
453
+ "lib/ramaze/reloader/watch_stat.rb",
454
+ "lib/ramaze/route.rb",
455
+ "lib/ramaze/setup.rb",
456
+ "lib/ramaze/snippets",
457
+ "lib/ramaze/snippets.rb",
458
+ "lib/ramaze/snippets/array",
459
+ "lib/ramaze/snippets/array/put_within.rb",
460
+ "lib/ramaze/snippets/binding",
461
+ "lib/ramaze/snippets/binding/locals.rb",
462
+ "lib/ramaze/snippets/blankslate.rb",
463
+ "lib/ramaze/snippets/dictionary.rb",
464
+ "lib/ramaze/snippets/divide.rb",
465
+ "lib/ramaze/snippets/fiber.rb",
466
+ "lib/ramaze/snippets/kernel",
467
+ "lib/ramaze/snippets/kernel/constant.rb",
468
+ "lib/ramaze/snippets/kernel/pretty_inspect.rb",
469
+ "lib/ramaze/snippets/metaid.rb",
470
+ "lib/ramaze/snippets/numeric",
471
+ "lib/ramaze/snippets/numeric/filesize_format.rb",
472
+ "lib/ramaze/snippets/numeric/time.rb",
473
+ "lib/ramaze/snippets/object",
474
+ "lib/ramaze/snippets/object/__dir__.rb",
475
+ "lib/ramaze/snippets/object/acquire.rb",
476
+ "lib/ramaze/snippets/object/instance_variable_defined.rb",
477
+ "lib/ramaze/snippets/object/pretty.rb",
478
+ "lib/ramaze/snippets/object/scope.rb",
479
+ "lib/ramaze/snippets/object/traits.rb",
480
+ "lib/ramaze/snippets/ordered_set.rb",
481
+ "lib/ramaze/snippets/proc",
482
+ "lib/ramaze/snippets/proc/locals.rb",
483
+ "lib/ramaze/snippets/ramaze",
484
+ "lib/ramaze/snippets/ramaze/acquire.rb",
485
+ "lib/ramaze/snippets/ramaze/caller_info.rb",
486
+ "lib/ramaze/snippets/ramaze/caller_lines.rb",
487
+ "lib/ramaze/snippets/ramaze/deprecated.rb",
488
+ "lib/ramaze/snippets/ramaze/fiber.rb",
489
+ "lib/ramaze/snippets/ramaze/state.rb",
490
+ "lib/ramaze/snippets/ramaze/struct.rb",
491
+ "lib/ramaze/snippets/string",
492
+ "lib/ramaze/snippets/string/camel_case.rb",
493
+ "lib/ramaze/snippets/string/color.rb",
494
+ "lib/ramaze/snippets/string/each.rb",
495
+ "lib/ramaze/snippets/string/end_with.rb",
496
+ "lib/ramaze/snippets/string/esc.rb",
497
+ "lib/ramaze/snippets/string/ord.rb",
498
+ "lib/ramaze/snippets/string/snake_case.rb",
499
+ "lib/ramaze/snippets/string/start_with.rb",
500
+ "lib/ramaze/snippets/string/unindent.rb",
501
+ "lib/ramaze/snippets/thread",
502
+ "lib/ramaze/snippets/thread/into.rb",
503
+ "lib/ramaze/spec",
504
+ "lib/ramaze/spec.rb",
505
+ "lib/ramaze/spec/helper",
506
+ "lib/ramaze/spec/helper.rb",
507
+ "lib/ramaze/spec/helper/bacon.rb",
508
+ "lib/ramaze/spec/helper/browser.rb",
509
+ "lib/ramaze/spec/helper/mock_http.rb",
510
+ "lib/ramaze/spec/helper/pretty_output.rb",
511
+ "lib/ramaze/spec/helper/requester.rb",
512
+ "lib/ramaze/spec/helper/simple_http.rb",
513
+ "lib/ramaze/spec/helper/snippets.rb",
514
+ "lib/ramaze/store",
515
+ "lib/ramaze/store/default.rb",
516
+ "lib/ramaze/template",
517
+ "lib/ramaze/template.rb",
518
+ "lib/ramaze/template/amrita2.rb",
519
+ "lib/ramaze/template/builder.rb",
520
+ "lib/ramaze/template/erubis.rb",
521
+ "lib/ramaze/template/ezamar",
522
+ "lib/ramaze/template/ezamar.rb",
523
+ "lib/ramaze/template/ezamar/element.rb",
524
+ "lib/ramaze/template/ezamar/engine.rb",
525
+ "lib/ramaze/template/ezamar/morpher.rb",
526
+ "lib/ramaze/template/ezamar/render_partial.rb",
527
+ "lib/ramaze/template/ezamar/textpow.syntax",
528
+ "lib/ramaze/template/haml.rb",
529
+ "lib/ramaze/template/liquid.rb",
530
+ "lib/ramaze/template/markaby.rb",
531
+ "lib/ramaze/template/maruku.rb",
532
+ "lib/ramaze/template/nagoro.rb",
533
+ "lib/ramaze/template/none.rb",
534
+ "lib/ramaze/template/redcloth.rb",
535
+ "lib/ramaze/template/remarkably.rb",
536
+ "lib/ramaze/template/sass.rb",
537
+ "lib/ramaze/template/tagz.rb",
538
+ "lib/ramaze/template/tenjin.rb",
539
+ "lib/ramaze/template/xslt.rb",
540
+ "lib/ramaze/tool",
541
+ "lib/ramaze/tool.rb",
542
+ "lib/ramaze/tool/create.rb",
543
+ "lib/ramaze/tool/daemonize.rb",
544
+ "lib/ramaze/tool/localize.rb",
545
+ "lib/ramaze/tool/mime.rb",
546
+ "lib/ramaze/tool/mime_types.yaml",
547
+ "lib/ramaze/tool/project_creator.rb",
548
+ "lib/ramaze/tool/record.rb",
549
+ "lib/ramaze/trinity.rb",
550
+ "lib/ramaze/version.rb",
551
+ "lib/vendor",
552
+ "lib/vendor/bacon.rb",
553
+ "rake_tasks",
554
+ "rake_tasks/conf.rake",
555
+ "rake_tasks/coverage.rake",
556
+ "rake_tasks/gem.rake",
557
+ "rake_tasks/git.rake",
558
+ "rake_tasks/maintenance.rake",
559
+ "rake_tasks/metric.rake",
560
+ "rake_tasks/release.rake",
561
+ "rake_tasks/spec.rake",
562
+ "ramaze.gemspec",
563
+ "spec",
564
+ "spec/contrib",
565
+ "spec/contrib/profiling.rb",
566
+ "spec/contrib/sequel",
567
+ "spec/contrib/sequel/fill.rb",
568
+ "spec/examples",
569
+ "spec/examples/caching.rb",
570
+ "spec/examples/css.rb",
571
+ "spec/examples/element.rb",
572
+ "spec/examples/hello.rb",
573
+ "spec/examples/linking.rb",
574
+ "spec/examples/simple.rb",
575
+ "spec/examples/simple_auth.rb",
576
+ "spec/examples/templates",
577
+ "spec/examples/templates/template_amrita2.rb",
578
+ "spec/examples/templates/template_erubis.rb",
579
+ "spec/examples/templates/template_ezamar.rb",
580
+ "spec/examples/templates/template_haml.rb",
581
+ "spec/examples/templates/template_liquid.rb",
582
+ "spec/examples/templates/template_markaby.rb",
583
+ "spec/examples/templates/template_redcloth.rb",
584
+ "spec/examples/templates/template_remarkably.rb",
585
+ "spec/examples/templates/template_tenjin.rb",
586
+ "spec/helper.rb",
587
+ "spec/ramaze",
588
+ "spec/ramaze/action",
589
+ "spec/ramaze/action/basics.rb",
590
+ "spec/ramaze/action/cache.rb",
591
+ "spec/ramaze/action/file_cache.rb",
592
+ "spec/ramaze/action/layout.rb",
593
+ "spec/ramaze/action/render.rb",
594
+ "spec/ramaze/action/view",
595
+ "spec/ramaze/action/view/bar.xhtml",
596
+ "spec/ramaze/action/view/instancevars",
597
+ "spec/ramaze/action/view/instancevars/layout.xhtml",
598
+ "spec/ramaze/action/view/other_wrapper.xhtml",
599
+ "spec/ramaze/action/view/single_wrapper.xhtml",
600
+ "spec/ramaze/action/view/sub",
601
+ "spec/ramaze/action/view/sub/sub_wrapper.xhtml",
602
+ "spec/ramaze/adapter",
603
+ "spec/ramaze/adapter.rb",
604
+ "spec/ramaze/adapter/ebb.rb",
605
+ "spec/ramaze/adapter/mongrel.rb",
606
+ "spec/ramaze/adapter/record.rb",
607
+ "spec/ramaze/adapter/webrick.rb",
608
+ "spec/ramaze/cache.rb",
609
+ "spec/ramaze/controller",
610
+ "spec/ramaze/controller.rb",
611
+ "spec/ramaze/controller/actionless_templates.rb",
612
+ "spec/ramaze/controller/resolve.rb",
613
+ "spec/ramaze/controller/subclass.rb",
614
+ "spec/ramaze/controller/template_resolving.rb",
615
+ "spec/ramaze/controller/view",
616
+ "spec/ramaze/controller/view/bar.xhtml",
617
+ "spec/ramaze/controller/view/base",
618
+ "spec/ramaze/controller/view/base/another.xhtml",
619
+ "spec/ramaze/controller/view/greet.xhtml",
620
+ "spec/ramaze/controller/view/list.xhtml",
621
+ "spec/ramaze/controller/view/other",
622
+ "spec/ramaze/controller/view/other/greet",
623
+ "spec/ramaze/controller/view/other/greet/other.xhtml",
624
+ "spec/ramaze/controller/view/other_wrapper.xhtml",
625
+ "spec/ramaze/current",
626
+ "spec/ramaze/current/request.rb",
627
+ "spec/ramaze/current/session.rb",
628
+ "spec/ramaze/dispatcher",
629
+ "spec/ramaze/dispatcher.rb",
630
+ "spec/ramaze/dispatcher/directory.rb",
631
+ "spec/ramaze/dispatcher/file.rb",
632
+ "spec/ramaze/dispatcher/public",
633
+ "spec/ramaze/dispatcher/public/favicon.ico",
634
+ "spec/ramaze/dispatcher/public/file name.txt",
635
+ "spec/ramaze/dispatcher/public/test_download.css",
636
+ "spec/ramaze/element.rb",
637
+ "spec/ramaze/error.rb",
638
+ "spec/ramaze/gestalt.rb",
639
+ "spec/ramaze/helper",
640
+ "spec/ramaze/helper/aspect.rb",
641
+ "spec/ramaze/helper/auth.rb",
642
+ "spec/ramaze/helper/cache.rb",
643
+ "spec/ramaze/helper/cgi.rb",
644
+ "spec/ramaze/helper/file.rb",
645
+ "spec/ramaze/helper/flash.rb",
646
+ "spec/ramaze/helper/form.rb",
647
+ "spec/ramaze/helper/formatting.rb",
648
+ "spec/ramaze/helper/link.rb",
649
+ "spec/ramaze/helper/pager.rb",
650
+ "spec/ramaze/helper/partial.rb",
651
+ "spec/ramaze/helper/redirect.rb",
652
+ "spec/ramaze/helper/simple_captcha.rb",
653
+ "spec/ramaze/helper/stack.rb",
654
+ "spec/ramaze/helper/user.rb",
655
+ "spec/ramaze/helper/view",
656
+ "spec/ramaze/helper/view/locals.xhtml",
657
+ "spec/ramaze/helper/view/loop.xhtml",
658
+ "spec/ramaze/helper/view/num.xhtml",
659
+ "spec/ramaze/helper/view/partial.xhtml",
660
+ "spec/ramaze/helper/view/recursive.xhtml",
661
+ "spec/ramaze/helper/view/recursive_local_ivars.xhtml",
662
+ "spec/ramaze/helper/view/recursive_locals.xhtml",
663
+ "spec/ramaze/helper/view/test_template.xhtml",
664
+ "spec/ramaze/localize.rb",
665
+ "spec/ramaze/log",
666
+ "spec/ramaze/log/informer.rb",
667
+ "spec/ramaze/log/syslog.rb",
668
+ "spec/ramaze/morpher.rb",
669
+ "spec/ramaze/params.rb",
670
+ "spec/ramaze/public",
671
+ "spec/ramaze/public/error404.xhtml",
672
+ "spec/ramaze/public/favicon.ico",
673
+ "spec/ramaze/public/ramaze.png",
674
+ "spec/ramaze/public/test_download.css",
675
+ "spec/ramaze/request",
676
+ "spec/ramaze/request.rb",
677
+ "spec/ramaze/request/ebb.rb",
678
+ "spec/ramaze/request/mongrel.rb",
679
+ "spec/ramaze/request/thin.rb",
680
+ "spec/ramaze/request/webrick.rb",
681
+ "spec/ramaze/rewrite",
682
+ "spec/ramaze/rewrite.rb",
683
+ "spec/ramaze/rewrite/file.css",
684
+ "spec/ramaze/route.rb",
685
+ "spec/ramaze/session.rb",
686
+ "spec/ramaze/store",
687
+ "spec/ramaze/store/default.rb",
688
+ "spec/ramaze/struct.rb",
689
+ "spec/ramaze/template",
690
+ "spec/ramaze/template.rb",
691
+ "spec/ramaze/template/amrita2",
692
+ "spec/ramaze/template/amrita2.rb",
693
+ "spec/ramaze/template/amrita2/external.amrita",
694
+ "spec/ramaze/template/amrita2/sum.amrita",
695
+ "spec/ramaze/template/builder",
696
+ "spec/ramaze/template/builder.rb",
697
+ "spec/ramaze/template/builder/external.rxml",
698
+ "spec/ramaze/template/erubis",
699
+ "spec/ramaze/template/erubis.rb",
700
+ "spec/ramaze/template/erubis/sum.rhtml",
701
+ "spec/ramaze/template/ezamar",
702
+ "spec/ramaze/template/ezamar.rb",
703
+ "spec/ramaze/template/ezamar/another",
704
+ "spec/ramaze/template/ezamar/another/long",
705
+ "spec/ramaze/template/ezamar/another/long/action.zmr",
706
+ "spec/ramaze/template/ezamar/combined.zmr",
707
+ "spec/ramaze/template/ezamar/file_only.zmr",
708
+ "spec/ramaze/template/ezamar/index.zmr",
709
+ "spec/ramaze/template/ezamar/nested.zmr",
710
+ "spec/ramaze/template/ezamar/other__index.xhtml",
711
+ "spec/ramaze/template/ezamar/some__long__action.zmr",
712
+ "spec/ramaze/template/ezamar/sum.zmr",
713
+ "spec/ramaze/template/haml",
714
+ "spec/ramaze/template/haml.rb",
715
+ "spec/ramaze/template/haml/index.haml",
716
+ "spec/ramaze/template/haml/locals.haml",
717
+ "spec/ramaze/template/haml/with_vars.haml",
718
+ "spec/ramaze/template/liquid",
719
+ "spec/ramaze/template/liquid.rb",
720
+ "spec/ramaze/template/liquid/index.liquid",
721
+ "spec/ramaze/template/liquid/products.liquid",
722
+ "spec/ramaze/template/markaby",
723
+ "spec/ramaze/template/markaby.rb",
724
+ "spec/ramaze/template/markaby/external.mab",
725
+ "spec/ramaze/template/markaby/sum.mab",
726
+ "spec/ramaze/template/nagoro",
727
+ "spec/ramaze/template/nagoro.rb",
728
+ "spec/ramaze/template/nagoro/another",
729
+ "spec/ramaze/template/nagoro/another/long",
730
+ "spec/ramaze/template/nagoro/another/long/action.nag",
731
+ "spec/ramaze/template/nagoro/combined.nag",
732
+ "spec/ramaze/template/nagoro/file_only.nag",
733
+ "spec/ramaze/template/nagoro/index.nag",
734
+ "spec/ramaze/template/nagoro/nested.nag",
735
+ "spec/ramaze/template/nagoro/some__long__action.nag",
736
+ "spec/ramaze/template/nagoro/sum.nag",
737
+ "spec/ramaze/template/ramaze",
738
+ "spec/ramaze/template/ramaze/external.test",
739
+ "spec/ramaze/template/redcloth",
740
+ "spec/ramaze/template/redcloth.rb",
741
+ "spec/ramaze/template/redcloth/external.redcloth",
742
+ "spec/ramaze/template/remarkably",
743
+ "spec/ramaze/template/remarkably.rb",
744
+ "spec/ramaze/template/remarkably/external.rem",
745
+ "spec/ramaze/template/remarkably/sum.rem",
746
+ "spec/ramaze/template/sass",
747
+ "spec/ramaze/template/sass.rb",
748
+ "spec/ramaze/template/sass/file.css.sass",
749
+ "spec/ramaze/template/tagz",
750
+ "spec/ramaze/template/tagz.rb",
751
+ "spec/ramaze/template/tagz/external.tagz",
752
+ "spec/ramaze/template/tagz/sum.tagz",
753
+ "spec/ramaze/template/tenjin",
754
+ "spec/ramaze/template/tenjin.rb",
755
+ "spec/ramaze/template/tenjin/external.tenjin",
756
+ "spec/ramaze/template/xslt",
757
+ "spec/ramaze/template/xslt.rb",
758
+ "spec/ramaze/template/xslt/concat_words.xsl",
759
+ "spec/ramaze/template/xslt/index.xsl",
760
+ "spec/ramaze/template/xslt/products.xsl",
761
+ "spec/ramaze/template/xslt/ruby_version.xsl",
762
+ "spec/snippets",
763
+ "spec/snippets/array",
764
+ "spec/snippets/array/put_within.rb",
765
+ "spec/snippets/binding",
766
+ "spec/snippets/binding/locals.rb",
767
+ "spec/snippets/kernel",
768
+ "spec/snippets/kernel/constant.rb",
769
+ "spec/snippets/numeric",
770
+ "spec/snippets/numeric/filesize_format.rb",
771
+ "spec/snippets/numeric/time.rb",
772
+ "spec/snippets/object",
773
+ "spec/snippets/object/__dir__.rb",
774
+ "spec/snippets/ordered_set.rb",
775
+ "spec/snippets/ramaze",
776
+ "spec/snippets/ramaze/acquire.rb",
777
+ "spec/snippets/ramaze/caller_info.rb",
778
+ "spec/snippets/ramaze/caller_lines.rb",
779
+ "spec/snippets/string",
780
+ "spec/snippets/string/camel_case.rb",
781
+ "spec/snippets/string/color.rb",
782
+ "spec/snippets/string/snake_case.rb",
783
+ "spec/snippets/string/unindent.rb",
784
+ "spec/snippets/thread",
785
+ "spec/snippets/thread/into.rb"]
785
786
  end