ramaze 2011.01.30 → 2011.07.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -1
- data/.mailmap +2 -0
- data/.rvmrc +1 -0
- data/README.md +119 -197
- data/Rakefile +14 -97
- data/bin/ramaze +6 -14
- data/doc/AUTHORS +8 -4
- data/doc/CHANGELOG +3784 -3339
- data/examples/app/chat/start.rb +2 -2
- data/lib/proto/app.rb +2 -3
- data/lib/proto/config.ru +4 -5
- data/lib/proto/controller/init.rb +11 -4
- data/lib/proto/controller/main.rb +12 -7
- data/lib/proto/layout/default.xhtml +56 -23
- data/lib/proto/model/init.rb +3 -1
- data/lib/proto/public/css/grid.css +107 -0
- data/lib/proto/public/css/layout.css +81 -0
- data/lib/proto/public/css/reset.css +123 -0
- data/lib/proto/public/css/text.css +109 -0
- data/lib/proto/public/images/bg.png +0 -0
- data/lib/proto/spec/main.rb +2 -2
- data/lib/proto/start.rb +11 -1
- data/lib/proto/view/index.xhtml +27 -23
- data/lib/ramaze.rb +0 -1
- data/lib/ramaze/app.rb +85 -12
- data/lib/ramaze/app_graph.rb +107 -0
- data/lib/ramaze/bin/console.rb +87 -0
- data/lib/ramaze/bin/create.rb +94 -0
- data/lib/ramaze/bin/helper.rb +107 -0
- data/lib/ramaze/bin/restart.rb +95 -0
- data/lib/ramaze/bin/runner.rb +141 -0
- data/lib/ramaze/bin/start.rb +206 -0
- data/lib/ramaze/bin/status.rb +152 -0
- data/lib/ramaze/bin/stop.rb +112 -0
- data/lib/ramaze/cache.rb +9 -4
- data/lib/ramaze/cache/localmemcache.rb +10 -13
- data/lib/ramaze/cache/lru.rb +49 -7
- data/lib/ramaze/cache/memcache.rb +170 -92
- data/lib/ramaze/cache/sequel.rb +301 -118
- data/lib/ramaze/controller.rb +108 -9
- data/lib/ramaze/controller/default.rb +15 -2
- data/lib/ramaze/current.rb +14 -2
- data/lib/ramaze/dependencies.rb +46 -0
- data/lib/ramaze/files.rb +38 -3
- data/lib/ramaze/gestalt.rb +12 -12
- data/lib/ramaze/helper.rb +0 -2
- data/lib/ramaze/helper/auth.rb +30 -23
- data/lib/ramaze/helper/blue_form.rb +175 -126
- data/lib/ramaze/helper/csrf.rb +76 -91
- data/lib/ramaze/helper/email.rb +105 -0
- data/lib/ramaze/helper/erector.rb +16 -15
- data/lib/ramaze/helper/gestalt.rb +2 -2
- data/lib/ramaze/helper/layout.rb +89 -73
- data/lib/ramaze/helper/link.rb +7 -6
- data/lib/ramaze/helper/localize.rb +6 -5
- data/lib/ramaze/helper/markaby.rb +25 -23
- data/lib/ramaze/helper/maruku.rb +3 -3
- data/lib/ramaze/helper/paginate.rb +19 -27
- data/lib/ramaze/helper/remarkably.rb +3 -3
- data/lib/ramaze/helper/request_accessor.rb +3 -3
- data/lib/ramaze/helper/send_file.rb +12 -8
- data/lib/ramaze/helper/simple_captcha.rb +5 -6
- data/lib/ramaze/helper/stack.rb +7 -4
- data/lib/ramaze/helper/tagz.rb +10 -11
- data/lib/ramaze/helper/thread.rb +19 -16
- data/lib/ramaze/helper/ultraviolet.rb +7 -4
- data/lib/ramaze/helper/user.rb +40 -21
- data/lib/ramaze/helper/xhtml.rb +29 -20
- data/lib/ramaze/log.rb +3 -11
- data/lib/ramaze/log/analogger.rb +5 -4
- data/lib/ramaze/log/growl.rb +9 -7
- data/lib/ramaze/log/hub.rb +3 -5
- data/lib/ramaze/log/informer.rb +15 -12
- data/lib/ramaze/log/knotify.rb +3 -5
- data/lib/ramaze/log/logger.rb +3 -5
- data/lib/ramaze/log/logging.rb +6 -8
- data/lib/ramaze/log/rotatinginformer.rb +27 -17
- data/lib/ramaze/log/syslog.rb +7 -7
- data/lib/ramaze/log/xosd.rb +3 -5
- data/lib/ramaze/middleware_compiler.rb +27 -4
- data/lib/ramaze/reloader.rb +50 -12
- data/lib/ramaze/reloader/watch_inotify.rb +4 -5
- data/lib/ramaze/reloader/watch_stat.rb +3 -3
- data/lib/ramaze/request.rb +18 -8
- data/lib/ramaze/response.rb +38 -7
- data/lib/ramaze/rest.rb +36 -0
- data/lib/ramaze/setup.rb +101 -31
- data/lib/ramaze/spec.rb +1 -1
- data/lib/ramaze/spec/bacon.rb +6 -3
- data/lib/ramaze/spec/helper/bacon.rb +0 -1
- data/lib/ramaze/version.rb +1 -1
- data/lib/ramaze/view.rb +2 -11
- data/lib/ramaze/view/erector.rb +46 -31
- data/lib/ramaze/view/erubis.rb +7 -3
- data/lib/ramaze/view/ezamar.rb +7 -3
- data/lib/ramaze/view/gestalt.rb +9 -3
- data/lib/ramaze/view/haml.rb +7 -3
- data/lib/ramaze/view/liquid.rb +3 -3
- data/lib/ramaze/view/lokar.rb +7 -3
- data/lib/ramaze/view/mustache.rb +11 -5
- data/lib/ramaze/view/nagoro.rb +3 -3
- data/lib/ramaze/view/sass.rb +1 -1
- data/lib/ramaze/view/slippers.rb +40 -13
- data/lib/ramaze/view/tagz.rb +9 -5
- data/ramaze.gemspec +23 -128
- data/spec/helper.rb +5 -0
- data/spec/ramaze/bin/app/config.ru +11 -0
- data/spec/ramaze/bin/create.rb +28 -0
- data/spec/ramaze/bin/runner.rb +30 -0
- data/spec/ramaze/bin/start.rb +38 -0
- data/spec/ramaze/cache/memcache.rb +10 -3
- data/spec/ramaze/cache/sequel.rb +7 -0
- data/spec/ramaze/controller/provide_inheritance.rb +0 -10
- data/spec/ramaze/dispatcher/file.rb +19 -15
- data/spec/ramaze/helper/auth.rb +10 -9
- data/spec/ramaze/helper/blue_form.rb +121 -68
- data/spec/ramaze/helper/email.rb +69 -0
- data/spec/ramaze/helper/layout.rb +12 -15
- data/spec/ramaze/helper/layout/alternative.xhtml +5 -0
- data/spec/ramaze/helper/user.rb +2 -0
- data/spec/ramaze/log/growl.rb +14 -1
- data/spec/{contrib → ramaze}/rest.rb +1 -1
- data/spec/ramaze/session/memcache.rb +2 -2
- data/spec/ramaze/view/sass.rb +1 -1
- data/tasks/bacon.rake +3 -3
- data/tasks/gem.rake +17 -18
- data/tasks/rcov.rake +2 -3
- data/tasks/release.rake +8 -65
- data/tasks/setup.rake +10 -8
- data/tasks/todo.rake +9 -5
- data/tasks/yard.rake +3 -2
- metadata +105 -397
- data/MANIFEST +0 -532
- data/TODO.md +0 -19
- data/benchmark/bench_templates/bench.rb +0 -67
- data/benchmark/bench_templates/view/large.erb +0 -79
- data/benchmark/bench_templates/view/large.haml +0 -41
- data/benchmark/bench_templates/view/large.lok +0 -79
- data/benchmark/bench_templates/view/large.xhtml +0 -79
- data/benchmark/bench_templates/view/small.erb +0 -21
- data/benchmark/bench_templates/view/small.haml +0 -12
- data/benchmark/bench_templates/view/small.lok +0 -21
- data/benchmark/bench_templates/view/small.xhtml +0 -21
- data/benchmark/results.txt +0 -131
- data/benchmark/run.rb +0 -355
- data/benchmark/suite/minimal.rb +0 -11
- data/benchmark/suite/no_informer.rb +0 -7
- data/benchmark/suite/no_sessions.rb +0 -9
- data/benchmark/suite/no_template.rb +0 -7
- data/benchmark/suite/simple.rb +0 -5
- data/benchmark/suite/template_erubis.rb +0 -8
- data/benchmark/suite/template_etanni.rb +0 -8
- data/benchmark/suite/template_ezamar.rb +0 -8
- data/benchmark/suite/template_haml.rb +0 -13
- data/benchmark/suite/template_liquid.rb +0 -11
- data/benchmark/suite/template_markaby.rb +0 -9
- data/benchmark/suite/template_nagoro.rb +0 -8
- data/benchmark/suite/template_redcloth.rb +0 -13
- data/benchmark/suite/template_tenjin.rb +0 -8
- data/benchmark/test.rb +0 -35
- data/doc/FAQ +0 -92
- data/doc/INSTALL +0 -92
- data/doc/TODO +0 -29
- data/doc/meta/announcement.txt +0 -119
- data/doc/meta/configuration.txt +0 -163
- data/doc/meta/internals.txt +0 -278
- data/doc/meta/users.kml +0 -64
- data/doc/tutorial/todolist.html +0 -1512
- data/doc/tutorial/todolist.txt +0 -920
- data/examples/app/sourceview/public/coderay.css +0 -104
- data/examples/app/sourceview/public/images/file.gif +0 -0
- data/examples/app/sourceview/public/images/folder.gif +0 -0
- data/examples/app/sourceview/public/images/tv-collapsable-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-collapsable.gif +0 -0
- data/examples/app/sourceview/public/images/tv-expandable-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-expandable.gif +0 -0
- data/examples/app/sourceview/public/images/tv-item-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-item.gif +0 -0
- data/examples/app/sourceview/public/jquery.js +0 -11
- data/examples/app/sourceview/public/jquery.treeview.css +0 -48
- data/examples/app/sourceview/public/jquery.treeview.js +0 -223
- data/examples/app/sourceview/public/sourceview.js +0 -52
- data/examples/app/sourceview/start.rb +0 -79
- data/examples/app/sourceview/view/index.haml +0 -59
- data/examples/helpers/httpdigest.rb +0 -107
- data/lib/proto/public/css/screen.css +0 -30
- data/lib/proto/public/js/jquery.js +0 -7179
- data/lib/ramaze/contrib/addressable_route.rb +0 -56
- data/lib/ramaze/contrib/app_graph.rb +0 -64
- data/lib/ramaze/contrib/email.rb +0 -88
- data/lib/ramaze/contrib/facebook.rb +0 -23
- data/lib/ramaze/contrib/facebook/facebook.rb +0 -171
- data/lib/ramaze/contrib/gettext.rb +0 -113
- data/lib/ramaze/contrib/gettext/mo.rb +0 -155
- data/lib/ramaze/contrib/gettext/parser.rb +0 -46
- data/lib/ramaze/contrib/gettext/po.rb +0 -109
- data/lib/ramaze/contrib/gzip_filter.rb +0 -1
- data/lib/ramaze/contrib/maruku_uv.rb +0 -59
- data/lib/ramaze/contrib/profiling.rb +0 -36
- data/lib/ramaze/contrib/rest.rb +0 -23
- data/lib/ramaze/contrib/sequel/create_join.rb +0 -26
- data/lib/ramaze/contrib/sequel/form_field.rb +0 -129
- data/lib/ramaze/contrib/sequel/image.rb +0 -196
- data/lib/ramaze/contrib/sequel/relation.rb +0 -98
- data/lib/ramaze/helper/httpdigest.rb +0 -96
- data/lib/ramaze/tool/bin.rb +0 -340
- data/lib/ramaze/tool/create.rb +0 -48
- data/lib/ramaze/tool/project_creator.rb +0 -120
- data/lib/ramaze/view/less.rb +0 -12
- data/lib/ramaze/view/maruku.rb +0 -15
- data/lib/ramaze/view/redcloth.rb +0 -21
- data/spec/contrib/addressable_route.rb +0 -30
- data/spec/examples/helpers/httpdigest.rb +0 -64
- data/spec/examples/templates/template_redcloth.rb +0 -13
- data/spec/ramaze/bin/ramaze.rb +0 -96
- data/spec/ramaze/helper/httpdigest.rb +0 -176
- data/spec/ramaze/view/less.rb +0 -60
- data/spec/ramaze/view/less/file.css.less +0 -8
- data/spec/ramaze/view/redcloth.rb +0 -66
- data/spec/ramaze/view/redcloth/external.redcloth +0 -8
- data/tasks/copyright.rake +0 -21
- data/tasks/gem_setup.rake +0 -112
- data/tasks/git.rake +0 -46
- data/tasks/grancher.rake +0 -12
- data/tasks/jquery.rake +0 -15
- data/tasks/manifest.rake +0 -4
- data/tasks/metric_changes.rake +0 -24
- data/tasks/reversion.rake +0 -8
- data/tasks/traits.rake +0 -21
data/MANIFEST
DELETED
|
@@ -1,532 +0,0 @@
|
|
|
1
|
-
.gitignore
|
|
2
|
-
.mailmap
|
|
3
|
-
MANIFEST
|
|
4
|
-
README.md
|
|
5
|
-
Rakefile
|
|
6
|
-
TODO.md
|
|
7
|
-
benchmark/bench_templates/bench.rb
|
|
8
|
-
benchmark/bench_templates/view/large.erb
|
|
9
|
-
benchmark/bench_templates/view/large.haml
|
|
10
|
-
benchmark/bench_templates/view/large.lok
|
|
11
|
-
benchmark/bench_templates/view/large.xhtml
|
|
12
|
-
benchmark/bench_templates/view/small.erb
|
|
13
|
-
benchmark/bench_templates/view/small.haml
|
|
14
|
-
benchmark/bench_templates/view/small.lok
|
|
15
|
-
benchmark/bench_templates/view/small.xhtml
|
|
16
|
-
benchmark/results.txt
|
|
17
|
-
benchmark/run.rb
|
|
18
|
-
benchmark/suite/minimal.rb
|
|
19
|
-
benchmark/suite/no_informer.rb
|
|
20
|
-
benchmark/suite/no_sessions.rb
|
|
21
|
-
benchmark/suite/no_template.rb
|
|
22
|
-
benchmark/suite/simple.rb
|
|
23
|
-
benchmark/suite/template_erubis.rb
|
|
24
|
-
benchmark/suite/template_etanni.rb
|
|
25
|
-
benchmark/suite/template_ezamar.rb
|
|
26
|
-
benchmark/suite/template_haml.rb
|
|
27
|
-
benchmark/suite/template_liquid.rb
|
|
28
|
-
benchmark/suite/template_markaby.rb
|
|
29
|
-
benchmark/suite/template_nagoro.rb
|
|
30
|
-
benchmark/suite/template_redcloth.rb
|
|
31
|
-
benchmark/suite/template_tenjin.rb
|
|
32
|
-
benchmark/test.rb
|
|
33
|
-
bin/ramaze
|
|
34
|
-
doc/AUTHORS
|
|
35
|
-
doc/CHANGELOG
|
|
36
|
-
doc/COPYING
|
|
37
|
-
doc/FAQ
|
|
38
|
-
doc/GPL
|
|
39
|
-
doc/INSTALL
|
|
40
|
-
doc/LEGAL
|
|
41
|
-
doc/TODO
|
|
42
|
-
doc/meta/announcement.txt
|
|
43
|
-
doc/meta/configuration.txt
|
|
44
|
-
doc/meta/internals.txt
|
|
45
|
-
doc/meta/users.kml
|
|
46
|
-
doc/tutorial/todolist.html
|
|
47
|
-
doc/tutorial/todolist.txt
|
|
48
|
-
examples/app/auth/layout/auth.xhtml
|
|
49
|
-
examples/app/auth/start.rb
|
|
50
|
-
examples/app/auth/view/index.xhtml
|
|
51
|
-
examples/app/auth/view/login.xhtml
|
|
52
|
-
examples/app/auth/view/secret.xhtml
|
|
53
|
-
examples/app/blog/README
|
|
54
|
-
examples/app/blog/app.rb
|
|
55
|
-
examples/app/blog/config.ru
|
|
56
|
-
examples/app/blog/controller/comment.rb
|
|
57
|
-
examples/app/blog/controller/entry.rb
|
|
58
|
-
examples/app/blog/controller/init.rb
|
|
59
|
-
examples/app/blog/controller/main.rb
|
|
60
|
-
examples/app/blog/controller/tag.rb
|
|
61
|
-
examples/app/blog/layout/default.nag
|
|
62
|
-
examples/app/blog/model/comment.rb
|
|
63
|
-
examples/app/blog/model/entry.rb
|
|
64
|
-
examples/app/blog/model/init.rb
|
|
65
|
-
examples/app/blog/model/tag.rb
|
|
66
|
-
examples/app/blog/public/css/screen.css
|
|
67
|
-
examples/app/blog/spec/blog.rb
|
|
68
|
-
examples/app/blog/start.rb
|
|
69
|
-
examples/app/blog/view/comment/form.nag
|
|
70
|
-
examples/app/blog/view/comment/show.nag
|
|
71
|
-
examples/app/blog/view/entry/edit.nag
|
|
72
|
-
examples/app/blog/view/entry/feed.atom.nag
|
|
73
|
-
examples/app/blog/view/entry/feed.rss.nag
|
|
74
|
-
examples/app/blog/view/entry/index.nag
|
|
75
|
-
examples/app/blog/view/entry/new.nag
|
|
76
|
-
examples/app/blog/view/entry/show.nag
|
|
77
|
-
examples/app/blog/view/feed.atom.nag
|
|
78
|
-
examples/app/blog/view/feed.rss.nag
|
|
79
|
-
examples/app/blog/view/index.nag
|
|
80
|
-
examples/app/blog/view/tag/index.nag
|
|
81
|
-
examples/app/chat/layout/default.xhtml
|
|
82
|
-
examples/app/chat/model/history.rb
|
|
83
|
-
examples/app/chat/model/message.rb
|
|
84
|
-
examples/app/chat/public/css/chat.css
|
|
85
|
-
examples/app/chat/public/js/chat.js
|
|
86
|
-
examples/app/chat/public/js/jquery.js
|
|
87
|
-
examples/app/chat/start.rb
|
|
88
|
-
examples/app/chat/view/chat.xhtml
|
|
89
|
-
examples/app/chat/view/index.xhtml
|
|
90
|
-
examples/app/localization/locale/de.yaml
|
|
91
|
-
examples/app/localization/locale/en.yaml
|
|
92
|
-
examples/app/localization/locale/ja.yaml
|
|
93
|
-
examples/app/localization/start.rb
|
|
94
|
-
examples/app/sourceview/public/coderay.css
|
|
95
|
-
examples/app/sourceview/public/images/file.gif
|
|
96
|
-
examples/app/sourceview/public/images/folder.gif
|
|
97
|
-
examples/app/sourceview/public/images/tv-collapsable-last.gif
|
|
98
|
-
examples/app/sourceview/public/images/tv-collapsable.gif
|
|
99
|
-
examples/app/sourceview/public/images/tv-expandable-last.gif
|
|
100
|
-
examples/app/sourceview/public/images/tv-expandable.gif
|
|
101
|
-
examples/app/sourceview/public/images/tv-item-last.gif
|
|
102
|
-
examples/app/sourceview/public/images/tv-item.gif
|
|
103
|
-
examples/app/sourceview/public/jquery.js
|
|
104
|
-
examples/app/sourceview/public/jquery.treeview.css
|
|
105
|
-
examples/app/sourceview/public/jquery.treeview.js
|
|
106
|
-
examples/app/sourceview/public/sourceview.js
|
|
107
|
-
examples/app/sourceview/start.rb
|
|
108
|
-
examples/app/sourceview/view/index.haml
|
|
109
|
-
examples/app/todolist/controller/init.rb
|
|
110
|
-
examples/app/todolist/controller/task.rb
|
|
111
|
-
examples/app/todolist/layout/default.xhtml
|
|
112
|
-
examples/app/todolist/model/init.rb
|
|
113
|
-
examples/app/todolist/model/task.rb
|
|
114
|
-
examples/app/todolist/public/css/screen.css
|
|
115
|
-
examples/app/todolist/public/favicon.ico
|
|
116
|
-
examples/app/todolist/start.rb
|
|
117
|
-
examples/app/todolist/view/index.xhtml
|
|
118
|
-
examples/app/upload/start.rb
|
|
119
|
-
examples/app/upload/view/index.xhtml
|
|
120
|
-
examples/app/whywiki/spec/whywiki.rb
|
|
121
|
-
examples/app/whywiki/start.rb
|
|
122
|
-
examples/app/whywiki/template/edit.xhtml
|
|
123
|
-
examples/app/whywiki/template/show.xhtml
|
|
124
|
-
examples/app/wikore/spec/wikore.rb
|
|
125
|
-
examples/app/wikore/src/controller.rb
|
|
126
|
-
examples/app/wikore/src/model.rb
|
|
127
|
-
examples/app/wikore/start.rb
|
|
128
|
-
examples/app/wikore/view/index.xhtml
|
|
129
|
-
examples/app/wiktacular/README
|
|
130
|
-
examples/app/wiktacular/layout/application.xhtml
|
|
131
|
-
examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
|
|
132
|
-
examples/app/wiktacular/mkd/link/current.mkd
|
|
133
|
-
examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
|
|
134
|
-
examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
|
|
135
|
-
examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
|
|
136
|
-
examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
|
|
137
|
-
examples/app/wiktacular/mkd/main/current.mkd
|
|
138
|
-
examples/app/wiktacular/mkd/markdown/current.mkd
|
|
139
|
-
examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
|
|
140
|
-
examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
|
|
141
|
-
examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
|
|
142
|
-
examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
|
|
143
|
-
examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
|
|
144
|
-
examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
|
|
145
|
-
examples/app/wiktacular/mkd/testing/current.mkd
|
|
146
|
-
examples/app/wiktacular/public/favicon.ico
|
|
147
|
-
examples/app/wiktacular/public/screen.css
|
|
148
|
-
examples/app/wiktacular/spec/wiktacular.rb
|
|
149
|
-
examples/app/wiktacular/src/controller.rb
|
|
150
|
-
examples/app/wiktacular/src/model.rb
|
|
151
|
-
examples/app/wiktacular/start.rb
|
|
152
|
-
examples/app/wiktacular/view/edit.xhtml
|
|
153
|
-
examples/app/wiktacular/view/index.xhtml
|
|
154
|
-
examples/app/wiktacular/view/new.xhtml
|
|
155
|
-
examples/basic/element.rb
|
|
156
|
-
examples/basic/gestalt.rb
|
|
157
|
-
examples/basic/hello.rb
|
|
158
|
-
examples/basic/layout.rb
|
|
159
|
-
examples/basic/linking.rb
|
|
160
|
-
examples/basic/partial.rb
|
|
161
|
-
examples/basic/simple.rb
|
|
162
|
-
examples/helpers/cache.rb
|
|
163
|
-
examples/helpers/httpdigest.rb
|
|
164
|
-
examples/helpers/identity.rb
|
|
165
|
-
examples/helpers/paginate.rb
|
|
166
|
-
examples/helpers/rest.rb
|
|
167
|
-
examples/helpers/simple_captcha.rb
|
|
168
|
-
examples/misc/css.rb
|
|
169
|
-
examples/misc/facebook.rb
|
|
170
|
-
examples/misc/memleak_detector.rb
|
|
171
|
-
examples/misc/nagoro_element.rb
|
|
172
|
-
examples/misc/ramaise.rb
|
|
173
|
-
examples/misc/rapp.rb
|
|
174
|
-
examples/misc/sequel_scaffolding.rb
|
|
175
|
-
examples/misc/serve_directory.rb
|
|
176
|
-
examples/templates/template_erubis.rb
|
|
177
|
-
examples/templates/template_ezamar.rb
|
|
178
|
-
examples/templates/template_haml.rb
|
|
179
|
-
examples/templates/template_liquid.rb
|
|
180
|
-
examples/templates/template_markaby.rb
|
|
181
|
-
examples/templates/template_mustache.rb
|
|
182
|
-
examples/templates/template_nagoro.rb
|
|
183
|
-
examples/templates/template_redcloth.rb
|
|
184
|
-
examples/templates/template_remarkably.rb
|
|
185
|
-
examples/templates/template_tenjin.rb
|
|
186
|
-
examples/templates/view/external.haml
|
|
187
|
-
examples/templates/view/external.liquid
|
|
188
|
-
examples/templates/view/external.mab
|
|
189
|
-
examples/templates/view/external.mt
|
|
190
|
-
examples/templates/view/external.nag
|
|
191
|
-
examples/templates/view/external.redcloth
|
|
192
|
-
examples/templates/view/external.rem
|
|
193
|
-
examples/templates/view/external.rhtml
|
|
194
|
-
examples/templates/view/external.tenjin
|
|
195
|
-
examples/templates/view/external.zmr
|
|
196
|
-
lib/proto/app.rb
|
|
197
|
-
lib/proto/config.ru
|
|
198
|
-
lib/proto/controller/init.rb
|
|
199
|
-
lib/proto/controller/main.rb
|
|
200
|
-
lib/proto/layout/default.xhtml
|
|
201
|
-
lib/proto/model/init.rb
|
|
202
|
-
lib/proto/public/.htaccess
|
|
203
|
-
lib/proto/public/css/screen.css
|
|
204
|
-
lib/proto/public/dispatch.fcgi
|
|
205
|
-
lib/proto/public/favicon.ico
|
|
206
|
-
lib/proto/public/js/jquery.js
|
|
207
|
-
lib/proto/public/ramaze.png
|
|
208
|
-
lib/proto/spec/main.rb
|
|
209
|
-
lib/proto/start.rb
|
|
210
|
-
lib/proto/view/index.xhtml
|
|
211
|
-
lib/ramaze.rb
|
|
212
|
-
lib/ramaze/app.rb
|
|
213
|
-
lib/ramaze/cache.rb
|
|
214
|
-
lib/ramaze/cache/localmemcache.rb
|
|
215
|
-
lib/ramaze/cache/lru.rb
|
|
216
|
-
lib/ramaze/cache/memcache.rb
|
|
217
|
-
lib/ramaze/cache/sequel.rb
|
|
218
|
-
lib/ramaze/contrib/addressable_route.rb
|
|
219
|
-
lib/ramaze/contrib/app_graph.rb
|
|
220
|
-
lib/ramaze/contrib/email.rb
|
|
221
|
-
lib/ramaze/contrib/facebook.rb
|
|
222
|
-
lib/ramaze/contrib/facebook/facebook.rb
|
|
223
|
-
lib/ramaze/contrib/gettext.rb
|
|
224
|
-
lib/ramaze/contrib/gettext/mo.rb
|
|
225
|
-
lib/ramaze/contrib/gettext/parser.rb
|
|
226
|
-
lib/ramaze/contrib/gettext/po.rb
|
|
227
|
-
lib/ramaze/contrib/gzip_filter.rb
|
|
228
|
-
lib/ramaze/contrib/maruku_uv.rb
|
|
229
|
-
lib/ramaze/contrib/profiling.rb
|
|
230
|
-
lib/ramaze/contrib/rest.rb
|
|
231
|
-
lib/ramaze/contrib/sequel/create_join.rb
|
|
232
|
-
lib/ramaze/contrib/sequel/form_field.rb
|
|
233
|
-
lib/ramaze/contrib/sequel/image.rb
|
|
234
|
-
lib/ramaze/contrib/sequel/relation.rb
|
|
235
|
-
lib/ramaze/controller.rb
|
|
236
|
-
lib/ramaze/controller/default.rb
|
|
237
|
-
lib/ramaze/current.rb
|
|
238
|
-
lib/ramaze/files.rb
|
|
239
|
-
lib/ramaze/gestalt.rb
|
|
240
|
-
lib/ramaze/helper.rb
|
|
241
|
-
lib/ramaze/helper/auth.rb
|
|
242
|
-
lib/ramaze/helper/bench.rb
|
|
243
|
-
lib/ramaze/helper/blue_form.rb
|
|
244
|
-
lib/ramaze/helper/cache.rb
|
|
245
|
-
lib/ramaze/helper/csrf.rb
|
|
246
|
-
lib/ramaze/helper/disqus.rb
|
|
247
|
-
lib/ramaze/helper/erector.rb
|
|
248
|
-
lib/ramaze/helper/flash.rb
|
|
249
|
-
lib/ramaze/helper/formatting.rb
|
|
250
|
-
lib/ramaze/helper/gestalt.rb
|
|
251
|
-
lib/ramaze/helper/gravatar.rb
|
|
252
|
-
lib/ramaze/helper/httpdigest.rb
|
|
253
|
-
lib/ramaze/helper/identity.rb
|
|
254
|
-
lib/ramaze/helper/layout.rb
|
|
255
|
-
lib/ramaze/helper/link.rb
|
|
256
|
-
lib/ramaze/helper/localize.rb
|
|
257
|
-
lib/ramaze/helper/markaby.rb
|
|
258
|
-
lib/ramaze/helper/maruku.rb
|
|
259
|
-
lib/ramaze/helper/paginate.rb
|
|
260
|
-
lib/ramaze/helper/remarkably.rb
|
|
261
|
-
lib/ramaze/helper/request_accessor.rb
|
|
262
|
-
lib/ramaze/helper/send_file.rb
|
|
263
|
-
lib/ramaze/helper/simple_captcha.rb
|
|
264
|
-
lib/ramaze/helper/stack.rb
|
|
265
|
-
lib/ramaze/helper/tagz.rb
|
|
266
|
-
lib/ramaze/helper/thread.rb
|
|
267
|
-
lib/ramaze/helper/ultraviolet.rb
|
|
268
|
-
lib/ramaze/helper/user.rb
|
|
269
|
-
lib/ramaze/helper/xhtml.rb
|
|
270
|
-
lib/ramaze/log.rb
|
|
271
|
-
lib/ramaze/log/analogger.rb
|
|
272
|
-
lib/ramaze/log/growl.rb
|
|
273
|
-
lib/ramaze/log/hub.rb
|
|
274
|
-
lib/ramaze/log/informer.rb
|
|
275
|
-
lib/ramaze/log/knotify.rb
|
|
276
|
-
lib/ramaze/log/logger.rb
|
|
277
|
-
lib/ramaze/log/logging.rb
|
|
278
|
-
lib/ramaze/log/rotatinginformer.rb
|
|
279
|
-
lib/ramaze/log/syslog.rb
|
|
280
|
-
lib/ramaze/log/xosd.rb
|
|
281
|
-
lib/ramaze/middleware_compiler.rb
|
|
282
|
-
lib/ramaze/plugin.rb
|
|
283
|
-
lib/ramaze/reloader.rb
|
|
284
|
-
lib/ramaze/reloader/watch_inotify.rb
|
|
285
|
-
lib/ramaze/reloader/watch_stat.rb
|
|
286
|
-
lib/ramaze/request.rb
|
|
287
|
-
lib/ramaze/response.rb
|
|
288
|
-
lib/ramaze/setup.rb
|
|
289
|
-
lib/ramaze/snippets.rb
|
|
290
|
-
lib/ramaze/snippets/array/put_within.rb
|
|
291
|
-
lib/ramaze/snippets/binding/locals.rb
|
|
292
|
-
lib/ramaze/snippets/blankslate.rb
|
|
293
|
-
lib/ramaze/snippets/fiber.rb
|
|
294
|
-
lib/ramaze/snippets/kernel/pretty_inspect.rb
|
|
295
|
-
lib/ramaze/snippets/metaid.rb
|
|
296
|
-
lib/ramaze/snippets/numeric/filesize_format.rb
|
|
297
|
-
lib/ramaze/snippets/numeric/time.rb
|
|
298
|
-
lib/ramaze/snippets/object/__dir__.rb
|
|
299
|
-
lib/ramaze/snippets/object/instance_variable_defined.rb
|
|
300
|
-
lib/ramaze/snippets/object/pretty.rb
|
|
301
|
-
lib/ramaze/snippets/object/scope.rb
|
|
302
|
-
lib/ramaze/snippets/ordered_set.rb
|
|
303
|
-
lib/ramaze/snippets/proc/locals.rb
|
|
304
|
-
lib/ramaze/snippets/ramaze/acquire.rb
|
|
305
|
-
lib/ramaze/snippets/ramaze/deprecated.rb
|
|
306
|
-
lib/ramaze/snippets/ramaze/dictionary.rb
|
|
307
|
-
lib/ramaze/snippets/ramaze/fiber.rb
|
|
308
|
-
lib/ramaze/snippets/ramaze/lru_hash.rb
|
|
309
|
-
lib/ramaze/snippets/ramaze/struct.rb
|
|
310
|
-
lib/ramaze/snippets/string/camel_case.rb
|
|
311
|
-
lib/ramaze/snippets/string/color.rb
|
|
312
|
-
lib/ramaze/snippets/string/end_with.rb
|
|
313
|
-
lib/ramaze/snippets/string/esc.rb
|
|
314
|
-
lib/ramaze/snippets/string/ord.rb
|
|
315
|
-
lib/ramaze/snippets/string/snake_case.rb
|
|
316
|
-
lib/ramaze/snippets/string/start_with.rb
|
|
317
|
-
lib/ramaze/snippets/string/unindent.rb
|
|
318
|
-
lib/ramaze/snippets/thread/into.rb
|
|
319
|
-
lib/ramaze/spec.rb
|
|
320
|
-
lib/ramaze/spec/bacon.rb
|
|
321
|
-
lib/ramaze/spec/helper/bacon.rb
|
|
322
|
-
lib/ramaze/spec/helper/pretty_output.rb
|
|
323
|
-
lib/ramaze/spec/helper/snippets.rb
|
|
324
|
-
lib/ramaze/spec/helper/template_examples.rb
|
|
325
|
-
lib/ramaze/tool/bin.rb
|
|
326
|
-
lib/ramaze/tool/create.rb
|
|
327
|
-
lib/ramaze/tool/project_creator.rb
|
|
328
|
-
lib/ramaze/version.rb
|
|
329
|
-
lib/ramaze/view.rb
|
|
330
|
-
lib/ramaze/view/erector.rb
|
|
331
|
-
lib/ramaze/view/erubis.rb
|
|
332
|
-
lib/ramaze/view/ezamar.rb
|
|
333
|
-
lib/ramaze/view/gestalt.rb
|
|
334
|
-
lib/ramaze/view/haml.rb
|
|
335
|
-
lib/ramaze/view/less.rb
|
|
336
|
-
lib/ramaze/view/liquid.rb
|
|
337
|
-
lib/ramaze/view/lokar.rb
|
|
338
|
-
lib/ramaze/view/maruku.rb
|
|
339
|
-
lib/ramaze/view/mustache.rb
|
|
340
|
-
lib/ramaze/view/nagoro.rb
|
|
341
|
-
lib/ramaze/view/nagoro/render_partial.rb
|
|
342
|
-
lib/ramaze/view/redcloth.rb
|
|
343
|
-
lib/ramaze/view/remarkably.rb
|
|
344
|
-
lib/ramaze/view/sass.rb
|
|
345
|
-
lib/ramaze/view/slippers.rb
|
|
346
|
-
lib/ramaze/view/tagz.rb
|
|
347
|
-
lib/ramaze/view/tenjin.rb
|
|
348
|
-
lib/vendor/route_exceptions.rb
|
|
349
|
-
ramaze.gemspec
|
|
350
|
-
spec/contrib/addressable_route.rb
|
|
351
|
-
spec/contrib/rest.rb
|
|
352
|
-
spec/examples/caching.rb
|
|
353
|
-
spec/examples/css.rb
|
|
354
|
-
spec/examples/element.rb
|
|
355
|
-
spec/examples/hello.rb
|
|
356
|
-
spec/examples/helpers/httpdigest.rb
|
|
357
|
-
spec/examples/linking.rb
|
|
358
|
-
spec/examples/misc/sequel_scaffolding.rb
|
|
359
|
-
spec/examples/simple.rb
|
|
360
|
-
spec/examples/templates/template_erubis.rb
|
|
361
|
-
spec/examples/templates/template_ezamar.rb
|
|
362
|
-
spec/examples/templates/template_haml.rb
|
|
363
|
-
spec/examples/templates/template_liquid.rb
|
|
364
|
-
spec/examples/templates/template_markaby.rb
|
|
365
|
-
spec/examples/templates/template_mustache.rb
|
|
366
|
-
spec/examples/templates/template_nagoro.rb
|
|
367
|
-
spec/examples/templates/template_redcloth.rb
|
|
368
|
-
spec/examples/templates/template_remarkably.rb
|
|
369
|
-
spec/examples/templates/template_tenjin.rb
|
|
370
|
-
spec/examples/todolist.rb
|
|
371
|
-
spec/helper.rb
|
|
372
|
-
spec/ramaze/action/render.rb
|
|
373
|
-
spec/ramaze/action/view/bar.xhtml
|
|
374
|
-
spec/ramaze/action/view/instancevars/layout.xhtml
|
|
375
|
-
spec/ramaze/action/view/other_wrapper.erb
|
|
376
|
-
spec/ramaze/action/view/other_wrapper.xhtml
|
|
377
|
-
spec/ramaze/action/view/single_wrapper.xhtml
|
|
378
|
-
spec/ramaze/action/view/sub/sub_wrapper.erb
|
|
379
|
-
spec/ramaze/action/view/sub/sub_wrapper.xhtml
|
|
380
|
-
spec/ramaze/app.rb
|
|
381
|
-
spec/ramaze/app/location.rb
|
|
382
|
-
spec/ramaze/bin/ramaze.rb
|
|
383
|
-
spec/ramaze/cache/localmemcache.rb
|
|
384
|
-
spec/ramaze/cache/lru.rb
|
|
385
|
-
spec/ramaze/cache/memcache.rb
|
|
386
|
-
spec/ramaze/cache/sequel.rb
|
|
387
|
-
spec/ramaze/controller/actionless_templates.rb
|
|
388
|
-
spec/ramaze/controller/lonely_mapping.rb
|
|
389
|
-
spec/ramaze/controller/mapping.rb
|
|
390
|
-
spec/ramaze/controller/provide_inheritance.rb
|
|
391
|
-
spec/ramaze/controller/resolve.rb
|
|
392
|
-
spec/ramaze/controller/subclass.rb
|
|
393
|
-
spec/ramaze/controller/template_resolving.rb
|
|
394
|
-
spec/ramaze/controller/view/bar.xhtml
|
|
395
|
-
spec/ramaze/controller/view/base/another.xhtml
|
|
396
|
-
spec/ramaze/controller/view/greet.xhtml
|
|
397
|
-
spec/ramaze/controller/view/list.xhtml
|
|
398
|
-
spec/ramaze/controller/view/other/greet/other.xhtml
|
|
399
|
-
spec/ramaze/controller/view/other_wrapper.xhtml
|
|
400
|
-
spec/ramaze/dispatcher/directory.rb
|
|
401
|
-
spec/ramaze/dispatcher/file.rb
|
|
402
|
-
spec/ramaze/dispatcher/public/favicon.ico
|
|
403
|
-
spec/ramaze/dispatcher/public/file name.txt
|
|
404
|
-
spec/ramaze/dispatcher/public/test_download.css
|
|
405
|
-
spec/ramaze/error.rb
|
|
406
|
-
spec/ramaze/files.rb
|
|
407
|
-
spec/ramaze/files/public_1/plain.txt
|
|
408
|
-
spec/ramaze/files/public_2/rich.txt
|
|
409
|
-
spec/ramaze/gestalt.rb
|
|
410
|
-
spec/ramaze/helper/auth.rb
|
|
411
|
-
spec/ramaze/helper/bench.rb
|
|
412
|
-
spec/ramaze/helper/blue_form.rb
|
|
413
|
-
spec/ramaze/helper/cache.rb
|
|
414
|
-
spec/ramaze/helper/csrf.rb
|
|
415
|
-
spec/ramaze/helper/flash.rb
|
|
416
|
-
spec/ramaze/helper/formatting.rb
|
|
417
|
-
spec/ramaze/helper/gestalt.rb
|
|
418
|
-
spec/ramaze/helper/gravatar.rb
|
|
419
|
-
spec/ramaze/helper/httpdigest.rb
|
|
420
|
-
spec/ramaze/helper/layout.rb
|
|
421
|
-
spec/ramaze/helper/layout/default.xhtml
|
|
422
|
-
spec/ramaze/helper/link.rb
|
|
423
|
-
spec/ramaze/helper/localize.rb
|
|
424
|
-
spec/ramaze/helper/maruku.rb
|
|
425
|
-
spec/ramaze/helper/paginate.rb
|
|
426
|
-
spec/ramaze/helper/request_accessor.rb
|
|
427
|
-
spec/ramaze/helper/simple_captcha.rb
|
|
428
|
-
spec/ramaze/helper/stack.rb
|
|
429
|
-
spec/ramaze/helper/user.rb
|
|
430
|
-
spec/ramaze/helper/view/locals.xhtml
|
|
431
|
-
spec/ramaze/helper/view/loop.xhtml
|
|
432
|
-
spec/ramaze/helper/view/num.xhtml
|
|
433
|
-
spec/ramaze/helper/view/partial.xhtml
|
|
434
|
-
spec/ramaze/helper/view/recursive.xhtml
|
|
435
|
-
spec/ramaze/helper/view/recursive_local_ivars.xhtml
|
|
436
|
-
spec/ramaze/helper/view/recursive_locals.xhtml
|
|
437
|
-
spec/ramaze/helper/view/test_template.xhtml
|
|
438
|
-
spec/ramaze/helper/xhtml.rb
|
|
439
|
-
spec/ramaze/log/growl.rb
|
|
440
|
-
spec/ramaze/log/informer.rb
|
|
441
|
-
spec/ramaze/log/logging.rb
|
|
442
|
-
spec/ramaze/log/syslog.rb
|
|
443
|
-
spec/ramaze/params.rb
|
|
444
|
-
spec/ramaze/public/favicon.ico
|
|
445
|
-
spec/ramaze/public/ramaze.png
|
|
446
|
-
spec/ramaze/public/test_download.css
|
|
447
|
-
spec/ramaze/request.rb
|
|
448
|
-
spec/ramaze/rewrite/file.css
|
|
449
|
-
spec/ramaze/session/memcache.rb
|
|
450
|
-
spec/ramaze/struct.rb
|
|
451
|
-
spec/ramaze/template/ramaze/external.test
|
|
452
|
-
spec/ramaze/view.rb
|
|
453
|
-
spec/ramaze/view/erector.rb
|
|
454
|
-
spec/ramaze/view/erector/external_view.erector
|
|
455
|
-
spec/ramaze/view/erector/index.erector
|
|
456
|
-
spec/ramaze/view/erector/layout.erector
|
|
457
|
-
spec/ramaze/view/erector/tables.erector
|
|
458
|
-
spec/ramaze/view/erector/view.erector
|
|
459
|
-
spec/ramaze/view/erubis.rb
|
|
460
|
-
spec/ramaze/view/erubis/external.rhtml
|
|
461
|
-
spec/ramaze/view/erubis/sum.rhtml
|
|
462
|
-
spec/ramaze/view/ezamar.rb
|
|
463
|
-
spec/ramaze/view/ezamar/external.zmr
|
|
464
|
-
spec/ramaze/view/ezamar/sum.zmr
|
|
465
|
-
spec/ramaze/view/gestalt.rb
|
|
466
|
-
spec/ramaze/view/gestalt/external.ges
|
|
467
|
-
spec/ramaze/view/haml.rb
|
|
468
|
-
spec/ramaze/view/haml/external.haml
|
|
469
|
-
spec/ramaze/view/haml/sum.haml
|
|
470
|
-
spec/ramaze/view/less.rb
|
|
471
|
-
spec/ramaze/view/less/file.css.less
|
|
472
|
-
spec/ramaze/view/liquid.rb
|
|
473
|
-
spec/ramaze/view/liquid/external.liquid
|
|
474
|
-
spec/ramaze/view/liquid/sum.liquid
|
|
475
|
-
spec/ramaze/view/lokar.rb
|
|
476
|
-
spec/ramaze/view/lokar/external.lok
|
|
477
|
-
spec/ramaze/view/lokar/sum.lok
|
|
478
|
-
spec/ramaze/view/mustache.rb
|
|
479
|
-
spec/ramaze/view/mustache/external.mt
|
|
480
|
-
spec/ramaze/view/mustache/sum.mt
|
|
481
|
-
spec/ramaze/view/nagoro.rb
|
|
482
|
-
spec/ramaze/view/nagoro/external.nag
|
|
483
|
-
spec/ramaze/view/nagoro/sum.nag
|
|
484
|
-
spec/ramaze/view/redcloth.rb
|
|
485
|
-
spec/ramaze/view/redcloth/external.redcloth
|
|
486
|
-
spec/ramaze/view/remarkably.rb
|
|
487
|
-
spec/ramaze/view/remarkably/external.rem
|
|
488
|
-
spec/ramaze/view/remarkably/sum.rem
|
|
489
|
-
spec/ramaze/view/sass.rb
|
|
490
|
-
spec/ramaze/view/sass/file.css.sass
|
|
491
|
-
spec/ramaze/view/slippers.rb
|
|
492
|
-
spec/ramaze/view/slippers/external.st
|
|
493
|
-
spec/ramaze/view/slippers/sum.st
|
|
494
|
-
spec/ramaze/view/tagz.rb
|
|
495
|
-
spec/ramaze/view/tagz/external.tagz
|
|
496
|
-
spec/ramaze/view/tagz/sum.tagz
|
|
497
|
-
spec/ramaze/view/tenjin.rb
|
|
498
|
-
spec/ramaze/view/tenjin/external.rbhtml
|
|
499
|
-
spec/ramaze/view/tenjin/sum.rbhtml
|
|
500
|
-
spec/snippets/array/put_within.rb
|
|
501
|
-
spec/snippets/binding/locals.rb
|
|
502
|
-
spec/snippets/numeric/filesize_format.rb
|
|
503
|
-
spec/snippets/numeric/time.rb
|
|
504
|
-
spec/snippets/object/__dir__.rb
|
|
505
|
-
spec/snippets/ordered_set.rb
|
|
506
|
-
spec/snippets/ramaze/acquire.rb
|
|
507
|
-
spec/snippets/ramaze/dictionary.rb
|
|
508
|
-
spec/snippets/ramaze/lru_hash.rb
|
|
509
|
-
spec/snippets/ramaze/struct.rb
|
|
510
|
-
spec/snippets/string/camel_case.rb
|
|
511
|
-
spec/snippets/string/color.rb
|
|
512
|
-
spec/snippets/string/snake_case.rb
|
|
513
|
-
spec/snippets/string/unindent.rb
|
|
514
|
-
spec/snippets/thread/into.rb
|
|
515
|
-
tasks/authors.rake
|
|
516
|
-
tasks/bacon.rake
|
|
517
|
-
tasks/changelog.rake
|
|
518
|
-
tasks/copyright.rake
|
|
519
|
-
tasks/gem.rake
|
|
520
|
-
tasks/gem_setup.rake
|
|
521
|
-
tasks/git.rake
|
|
522
|
-
tasks/grancher.rake
|
|
523
|
-
tasks/jquery.rake
|
|
524
|
-
tasks/manifest.rake
|
|
525
|
-
tasks/metric_changes.rake
|
|
526
|
-
tasks/rcov.rake
|
|
527
|
-
tasks/release.rake
|
|
528
|
-
tasks/reversion.rake
|
|
529
|
-
tasks/setup.rake
|
|
530
|
-
tasks/todo.rake
|
|
531
|
-
tasks/traits.rake
|
|
532
|
-
tasks/yard.rake
|