ramaze 0.3.9.1 → 2023.01.06
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.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/README.md +125 -0
- data/Rakefile +13 -186
- data/bin/ramaze +4 -149
- data/examples/app/auth/layout/auth.xhtml +25 -0
- data/examples/app/auth/start.rb +25 -0
- data/examples/app/auth/view/index.xhtml +4 -0
- data/examples/app/auth/view/login.xhtml +20 -0
- data/examples/app/auth/view/secret.xhtml +1 -0
- data/examples/app/blog/app.rb +23 -0
- data/examples/app/blog/config.ru +19 -0
- data/examples/app/blog/controller/init.rb +30 -0
- data/examples/app/blog/controller/posts.rb +223 -0
- data/examples/app/blog/controller/users.rb +152 -0
- data/examples/app/blog/layout/default.xhtml +61 -0
- data/examples/app/blog/migrations/01_create_schema.rb +50 -0
- data/examples/app/blog/model/comment.rb +42 -0
- data/examples/app/blog/model/init.rb +44 -0
- data/examples/app/blog/model/post.rb +33 -0
- data/examples/app/blog/model/user.rb +100 -0
- data/examples/app/blog/public/css/grid.css +107 -0
- data/examples/app/blog/public/css/layout.css +203 -0
- data/examples/app/blog/public/css/reset.css +123 -0
- data/examples/app/blog/public/css/text.css +109 -0
- data/examples/app/blog/public/dispatch.fcgi +11 -0
- data/examples/app/blog/public/favicon.ico +0 -0
- data/examples/app/blog/public/images/bg.png +0 -0
- data/examples/app/blog/start.rb +20 -0
- data/examples/app/blog/view/feed.xhtml +23 -0
- data/examples/app/blog/view/form.xhtml +11 -0
- data/examples/app/blog/view/index.xhtml +44 -0
- data/examples/app/blog/view/users/form.xhtml +12 -0
- data/examples/app/blog/view/users/index.xhtml +30 -0
- data/examples/app/blog/view/users/login.xhtml +8 -0
- data/examples/app/blog/view/view.xhtml +68 -0
- data/examples/app/chat/layout/default.xhtml +13 -0
- data/examples/app/chat/model/history.rb +38 -0
- data/examples/app/chat/model/message.rb +7 -0
- data/examples/app/chat/public/css/chat.css +9 -0
- data/examples/app/chat/public/js/chat.js +28 -0
- data/{lib/proto → examples/app/chat}/public/js/jquery.js +75 -15
- data/examples/app/chat/start.rb +39 -0
- data/examples/app/chat/view/chat.xhtml +9 -0
- data/examples/app/chat/view/index.xhtml +7 -0
- data/examples/app/localization/locale/de.yaml +5 -0
- data/examples/app/localization/locale/en.yaml +5 -0
- data/examples/app/localization/locale/ja.yaml +5 -0
- data/examples/app/localization/start.rb +48 -0
- data/examples/app/todolist/controller/init.rb +11 -0
- data/examples/app/todolist/controller/task.rb +39 -0
- data/examples/app/todolist/layout/default.xhtml +14 -0
- data/examples/app/todolist/model/init.rb +14 -0
- data/examples/app/todolist/model/task.rb +39 -0
- data/examples/app/todolist/public/css/screen.css +63 -0
- data/examples/app/todolist/start.rb +7 -0
- data/examples/app/todolist/view/index.xhtml +29 -0
- data/examples/{upload → app/upload}/start.rb +7 -3
- data/examples/app/whywiki/spec/whywiki.rb +56 -0
- data/examples/{whywiki → app/whywiki}/start.rb +10 -9
- data/examples/{whywiki/template → app/whywiki/view}/edit.xhtml +2 -2
- data/examples/app/whywiki/view/show.xhtml +20 -0
- data/examples/{wikore → app/wikore}/spec/wikore.rb +7 -9
- data/examples/{wikore → app/wikore}/src/controller.rb +9 -11
- data/examples/{wikore → app/wikore}/src/model.rb +11 -13
- data/examples/app/wikore/start.rb +9 -0
- data/examples/{wiktacular/template/html_layout.xhtml → app/wiktacular/layout/application.xhtml} +1 -1
- data/examples/{wiktacular → app/wiktacular}/mkd/main/2007-07-20_19-21-12.mkd +1 -1
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
- data/examples/app/wiktacular/mkd/main/current.mkd +2 -0
- data/examples/{wiktacular → app/wiktacular}/mkd/markdown/current.mkd +2 -2
- data/examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
- data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-20_19-43-50.mkd +2 -2
- data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-46-01.mkd +11 -11
- data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-46-32.mkd +12 -12
- data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-47-08.mkd +16 -16
- data/examples/{wiktacular → app/wiktacular}/mkd/testing/2007-07-21_18-47-54.mkd +16 -16
- data/examples/{wiktacular → app/wiktacular}/mkd/testing/current.mkd +16 -16
- data/examples/{wiktacular → app/wiktacular}/spec/wiktacular.rb +39 -40
- data/examples/{wiktacular → app/wiktacular}/src/controller.rb +18 -18
- data/examples/{wiktacular → app/wiktacular}/src/model.rb +30 -14
- data/examples/{wiktacular → app/wiktacular}/start.rb +1 -1
- data/examples/{wiktacular/template → app/wiktacular/view}/edit.xhtml +2 -2
- data/examples/{wiktacular/template → app/wiktacular/view}/new.xhtml +1 -1
- data/examples/{element.rb → basic/element.rb} +5 -3
- data/examples/basic/gestalt.rb +26 -0
- data/examples/basic/hello.rb +14 -0
- data/examples/{layout.rb → basic/layout.rb} +2 -2
- data/examples/basic/linking.rb +29 -0
- data/examples/basic/partial.rb +26 -0
- data/examples/{simple.rb → basic/simple.rb} +9 -12
- data/examples/{caching.rb → helpers/cache.rb} +9 -7
- data/examples/helpers/paginate.rb +71 -0
- data/examples/helpers/rest.rb +28 -0
- data/examples/helpers/simple_captcha.rb +29 -0
- data/examples/{css.rb → misc/css.rb} +6 -12
- data/examples/misc/memleak_detector.rb +37 -0
- data/examples/misc/nagoro_element.rb +43 -0
- data/examples/{ramaise.rb → misc/ramaise.rb} +2 -2
- data/examples/misc/rapp.rb +56 -0
- data/examples/misc/sequel_scaffolding.rb +45 -0
- data/examples/misc/serve_directory.rb +6 -0
- data/examples/templates/template_erubis.rb +9 -10
- data/examples/templates/template_ezamar.rb +8 -7
- data/examples/templates/template_haml.rb +7 -8
- data/examples/templates/template_liquid.rb +20 -19
- data/examples/templates/template_markaby.rb +6 -7
- data/examples/templates/template_mustache.rb +70 -0
- data/examples/templates/template_nagoro.rb +6 -7
- data/examples/templates/template_redcloth.rb +8 -9
- data/examples/templates/template_remarkably.rb +8 -9
- data/examples/templates/template_tenjin.rb +10 -15
- data/examples/templates/{template → view}/external.haml +4 -4
- data/examples/templates/{template → view}/external.mab +4 -4
- data/examples/templates/view/external.mt +29 -0
- data/examples/templates/{template → view}/external.nag +4 -4
- data/examples/templates/{template → view}/external.redcloth +4 -4
- data/examples/templates/{template → view}/external.rem +4 -4
- data/examples/templates/{template → view}/external.rhtml +6 -6
- data/examples/templates/{template → view}/external.tenjin +4 -4
- data/examples/templates/{template → view}/external.zmr +6 -6
- data/guide/AUTHORS +80 -0
- data/guide/CHANGELOG +20210 -0
- data/guide/LICENSE +19 -0
- data/guide/_static/logo.png +0 -0
- data/guide/_static/logo.svg +49 -0
- data/guide/css/common.css +20 -0
- data/guide/general/cache.md +168 -0
- data/guide/general/configuration.md +169 -0
- data/guide/general/contributing.md +182 -0
- data/guide/general/controllers.md +210 -0
- data/guide/general/helpers.md +89 -0
- data/guide/general/installation.md +59 -0
- data/guide/general/logging.md +96 -0
- data/guide/general/middlewares.md +111 -0
- data/guide/general/models.md +79 -0
- data/{doc/readme_chunks/principles.txt → guide/general/principles.md} +15 -17
- data/guide/general/ramaze_command.md +110 -0
- data/guide/general/routes.md +82 -0
- data/guide/general/sessions.md +210 -0
- data/guide/general/special_thanks.md +69 -0
- data/guide/general/testing.md +228 -0
- data/guide/general/upgrading.md +85 -0
- data/guide/general/views.md +335 -0
- data/lib/proto/Gemfile +4 -0
- data/lib/proto/README.md +35 -0
- data/lib/proto/Rakefile +1 -0
- data/lib/proto/app.rb +9 -0
- data/lib/proto/config.ru +19 -0
- data/lib/proto/controller/init.rb +18 -0
- data/lib/proto/controller/main.rb +13 -10
- data/lib/proto/layout/default.xhtml +57 -0
- 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/favicon.ico +0 -0
- data/lib/proto/public/images/bg.png +0 -0
- data/lib/proto/spec/helper.rb +39 -0
- data/lib/proto/task/ramaze.rake +57 -0
- data/lib/proto/view/index.xhtml +36 -25
- data/lib/ramaze/app.rb +198 -0
- data/lib/ramaze/bin/create.rb +92 -0
- data/lib/ramaze/bin/runner.rb +127 -0
- data/lib/ramaze/cache/lru.rb +88 -0
- data/lib/ramaze/cache/memcache.rb +219 -0
- data/lib/ramaze/cache/moneta.rb +143 -0
- data/lib/ramaze/cache/redis.rb +163 -0
- data/lib/ramaze/cache/sequel.rb +373 -0
- data/lib/ramaze/cache.rb +42 -82
- data/lib/ramaze/controller/default.rb +25 -0
- data/lib/ramaze/controller.rb +184 -224
- data/lib/ramaze/current.rb +17 -68
- data/lib/ramaze/default_middleware.rb +24 -0
- data/lib/ramaze/files.rb +59 -0
- data/lib/ramaze/gestalt.rb +95 -63
- data/lib/ramaze/helper/auth.rb +107 -107
- data/lib/ramaze/helper/bench.rb +51 -0
- data/lib/ramaze/helper/blue_form.rb +683 -0
- data/lib/ramaze/helper/cache.rb +108 -130
- data/lib/ramaze/helper/csrf.rb +191 -0
- data/lib/ramaze/helper/email.rb +116 -0
- data/lib/ramaze/helper/erector.rb +113 -0
- data/lib/ramaze/helper/flash.rb +42 -39
- data/lib/ramaze/helper/formatting.rb +200 -35
- data/lib/ramaze/helper/gestalt.rb +49 -0
- data/lib/ramaze/helper/gravatar.rb +75 -0
- data/lib/ramaze/helper/identity.rb +93 -68
- data/lib/ramaze/helper/layout.rb +128 -0
- data/lib/ramaze/helper/link.rb +52 -119
- data/lib/ramaze/helper/localize.rb +143 -0
- data/lib/ramaze/helper/markaby.rb +26 -24
- data/lib/ramaze/helper/maruku.rb +15 -6
- data/lib/ramaze/helper/paginate.rb +315 -0
- data/lib/ramaze/helper/remarkably.rb +14 -0
- data/lib/ramaze/helper/request_accessor.rb +20 -0
- data/lib/ramaze/helper/send_file.rb +34 -0
- data/lib/ramaze/helper/simple_captcha.rb +61 -0
- data/lib/ramaze/helper/stack.rb +72 -62
- data/lib/ramaze/helper/tagz.rb +13 -12
- data/lib/ramaze/helper/thread.rb +25 -0
- data/lib/ramaze/helper/upload.rb +525 -0
- data/lib/ramaze/helper/user.rb +260 -39
- data/lib/ramaze/helper/xhtml.rb +122 -0
- data/lib/ramaze/helper.rb +8 -79
- data/lib/ramaze/log/hub.rb +41 -32
- data/lib/ramaze/log/informer.rb +128 -104
- data/lib/ramaze/log/logger.rb +25 -15
- data/lib/ramaze/log/logging.rb +46 -27
- data/lib/ramaze/log/rotatinginformer.rb +237 -0
- data/lib/ramaze/log/syslog.rb +57 -31
- data/lib/ramaze/log.rb +16 -15
- data/lib/ramaze/reloader/watch_inotify.rb +84 -0
- data/lib/ramaze/reloader/watch_stat.rb +58 -0
- data/lib/ramaze/reloader.rb +212 -0
- data/lib/ramaze/request.rb +126 -0
- data/lib/ramaze/response.rb +67 -0
- data/lib/ramaze/snippets/object/__dir__.rb +25 -0
- data/lib/ramaze/snippets/ramaze/deprecated.rb +23 -0
- data/lib/ramaze/snippets/string/camel_case.rb +17 -14
- data/lib/ramaze/snippets/string/color.rb +27 -24
- data/lib/ramaze/snippets/string/esc.rb +25 -25
- data/lib/ramaze/snippets/string/snake_case.rb +16 -13
- data/lib/ramaze/snippets/string/unindent.rb +24 -11
- data/lib/ramaze/snippets.rb +21 -6
- data/lib/ramaze/spec/bacon.rb +44 -0
- data/lib/ramaze/spec/helper/bacon.rb +4 -4
- data/lib/ramaze/spec/helper/pretty_output.rb +9 -1
- data/lib/ramaze/spec/helper/snippets.rb +11 -1
- data/lib/ramaze/spec/helper/template_examples.rb +22 -0
- data/lib/ramaze/version.rb +4 -13
- data/lib/ramaze/view/erector.rb +116 -0
- data/lib/ramaze/view/erubis.rb +26 -0
- data/lib/ramaze/view/ezamar.rb +27 -0
- data/lib/ramaze/view/gestalt.rb +20 -0
- data/lib/ramaze/view/haml.rb +27 -0
- data/lib/ramaze/view/liquid.rb +99 -0
- data/lib/ramaze/view/lokar.rb +18 -0
- data/lib/ramaze/view/mustache.rb +46 -0
- data/lib/ramaze/view/nagoro/render_partial.rb +32 -0
- data/lib/ramaze/view/nagoro.rb +44 -0
- data/lib/ramaze/view/remarkably.rb +22 -0
- data/lib/ramaze/view/sass.rb +22 -0
- data/lib/ramaze/view/slim.rb +43 -0
- data/lib/ramaze/view/slippers.rb +51 -0
- data/lib/ramaze/view/tagz.rb +67 -0
- data/lib/ramaze/view/tenjin.rb +32 -0
- data/lib/ramaze/view.rb +35 -0
- data/lib/ramaze.rb +60 -100
- data/lib/vendor/route_exceptions.rb +42 -0
- data/ramaze.gemspec +61 -0
- data/spec/examples/caching.rb +5 -8
- data/spec/examples/css.rb +3 -4
- data/spec/examples/element.rb +4 -4
- data/spec/examples/hello.rb +4 -5
- data/spec/examples/linking.rb +3 -4
- data/spec/examples/misc/sequel_scaffolding.rb +18 -0
- data/spec/examples/simple.rb +3 -8
- data/spec/examples/templates/template_erubis.rb +8 -18
- data/spec/examples/templates/template_ezamar.rb +9 -19
- data/spec/examples/templates/template_haml.rb +8 -20
- data/spec/examples/templates/template_liquid.rb +8 -24
- data/spec/examples/templates/template_markaby.rb +10 -19
- data/spec/examples/templates/template_mustache.rb +13 -0
- data/spec/examples/templates/template_nagoro.rb +13 -0
- data/spec/examples/templates/template_remarkably.rb +8 -18
- data/spec/examples/templates/template_tenjin.rb +8 -23
- data/spec/examples/todolist.rb +33 -0
- data/spec/helper.rb +14 -3
- data/spec/ramaze/action/render.rb +9 -17
- data/spec/ramaze/action/view/other_wrapper.erb +1 -0
- data/spec/ramaze/action/view/sub/sub_wrapper.xhtml +1 -0
- data/spec/ramaze/app/location.rb +43 -0
- data/spec/ramaze/app.rb +50 -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/cache/lru.rb +48 -0
- data/spec/ramaze/cache/memcache.rb +69 -0
- data/spec/ramaze/cache/moneta.rb +53 -0
- data/spec/ramaze/cache/redis.rb +58 -0
- data/spec/ramaze/cache/sequel.rb +60 -0
- data/spec/ramaze/controller/actionless_templates.rb +16 -12
- data/spec/ramaze/controller/lonely_mapping.rb +18 -0
- data/spec/ramaze/controller/mapping.rb +63 -0
- data/spec/ramaze/controller/provide_inheritance.rb +40 -0
- data/spec/ramaze/controller/resolve.rb +9 -11
- data/spec/ramaze/controller/subclass.rb +22 -7
- data/spec/ramaze/controller/template_resolving.rb +23 -61
- data/spec/ramaze/controller/view/bar.xhtml +1 -0
- data/spec/ramaze/controller/view/base/another.xhtml +1 -0
- data/spec/ramaze/dispatcher/directory.rb +61 -33
- data/spec/ramaze/dispatcher/file.rb +65 -47
- data/spec/ramaze/error.rb +54 -64
- data/spec/ramaze/files/public_1/plain.txt +1 -0
- data/spec/ramaze/files/public_2/rich.txt +1 -0
- data/spec/ramaze/files.rb +30 -0
- data/spec/ramaze/gestalt.rb +28 -21
- data/spec/ramaze/helper/auth.rb +47 -29
- data/spec/ramaze/helper/bench.rb +21 -0
- data/spec/ramaze/helper/blue_form.rb +807 -0
- data/spec/ramaze/helper/cache.rb +65 -84
- data/spec/ramaze/helper/csrf.rb +64 -0
- data/spec/ramaze/helper/email.rb +69 -0
- data/spec/ramaze/helper/flash.rb +22 -101
- data/spec/ramaze/helper/formatting.rb +100 -6
- data/spec/ramaze/helper/gestalt.rb +18 -0
- data/spec/ramaze/helper/gravatar.rb +43 -0
- data/spec/ramaze/helper/layout/alternative.xhtml +5 -0
- data/spec/ramaze/helper/layout/default.xhtml +5 -0
- data/spec/ramaze/helper/layout.rb +109 -0
- data/spec/ramaze/helper/link.rb +48 -102
- data/spec/ramaze/helper/localize.rb +65 -0
- data/spec/ramaze/helper/maruku.rb +22 -0
- data/spec/ramaze/helper/paginate.rb +304 -0
- data/spec/ramaze/helper/request_accessor.rb +22 -0
- data/spec/ramaze/helper/simple_captcha.rb +45 -0
- data/spec/ramaze/helper/stack.rb +54 -41
- data/spec/ramaze/helper/upload.rb +150 -0
- data/spec/ramaze/helper/uploads/text_1.txt +1 -0
- data/spec/ramaze/helper/uploads/text_2.txt +1 -0
- data/spec/ramaze/helper/user.rb +63 -20
- data/spec/ramaze/helper/xhtml.rb +54 -0
- data/spec/ramaze/log/informer.rb +30 -28
- data/spec/ramaze/log/logging.rb +66 -0
- data/spec/ramaze/log/syslog.rb +89 -4
- data/spec/ramaze/params.rb +12 -16
- data/spec/ramaze/request.rb +51 -160
- data/spec/ramaze/rewrite/file.css +1 -0
- data/spec/ramaze/session/lru.rb +58 -0
- data/spec/ramaze/session/memcache.rb +66 -0
- data/spec/ramaze/session/redis.rb +63 -0
- data/spec/ramaze/session/sequel.rb +62 -0
- data/spec/ramaze/view/erector/external_view.erector +5 -0
- data/spec/ramaze/view/erector/index.erector +5 -0
- data/spec/ramaze/view/erector/layout.erector +13 -0
- data/spec/ramaze/view/erector/tables.erector +23 -0
- data/spec/ramaze/view/erector/view.erector +6 -0
- data/spec/ramaze/view/erector.rb +68 -0
- data/spec/ramaze/view/erubis/external.rhtml +8 -0
- data/spec/ramaze/view/erubis/sum.rhtml +1 -0
- data/spec/ramaze/view/erubis.rb +73 -0
- data/spec/ramaze/view/ezamar/external.zmr +8 -0
- data/spec/ramaze/view/ezamar/sum.zmr +1 -0
- data/spec/ramaze/view/ezamar.rb +73 -0
- data/spec/ramaze/view/gestalt/external.ges +8 -0
- data/spec/ramaze/view/gestalt.rb +94 -0
- data/spec/ramaze/view/haml/external.haml +5 -0
- data/spec/ramaze/view/haml/sum.haml +2 -0
- data/spec/ramaze/view/haml.rb +114 -0
- data/spec/ramaze/view/liquid/external.liquid +8 -0
- data/spec/ramaze/view/liquid/sum.liquid +1 -0
- data/spec/ramaze/view/liquid.rb +73 -0
- data/spec/ramaze/view/lokar/external.lok +8 -0
- data/spec/ramaze/view/lokar/sum.lok +1 -0
- data/spec/ramaze/view/lokar.rb +78 -0
- data/spec/ramaze/view/mustache/external.mt +8 -0
- data/spec/ramaze/view/mustache/sum.mt +1 -0
- data/spec/ramaze/view/mustache.rb +77 -0
- data/spec/ramaze/view/nagoro/external.nag +8 -0
- data/spec/ramaze/view/nagoro/sum.nag +1 -0
- data/spec/ramaze/view/nagoro.rb +78 -0
- data/spec/ramaze/view/remarkably.rb +49 -0
- data/spec/ramaze/view/sass.rb +73 -0
- data/spec/ramaze/view/slim/external.slim +5 -0
- data/spec/ramaze/view/slim/external_vars.slim +5 -0
- data/spec/ramaze/view/slim.rb +49 -0
- data/spec/ramaze/view/slippers/external.st +8 -0
- data/spec/ramaze/view/slippers/sum.st +1 -0
- data/spec/ramaze/view/slippers.rb +49 -0
- data/spec/ramaze/{template → view}/tagz.rb +20 -31
- data/spec/ramaze/view/tenjin/external.rbhtml +8 -0
- data/spec/ramaze/view/tenjin/sum.rbhtml +1 -0
- data/spec/ramaze/view/tenjin.rb +57 -0
- data/spec/ramaze/view.rb +36 -0
- data/spec/snippets/object/__dir__.rb +17 -0
- data/spec/snippets/ramaze/lru_hash.rb +88 -0
- data/spec/snippets/string/camel_case.rb +4 -1
- data/spec/snippets/string/color.rb +4 -1
- data/spec/snippets/string/snake_case.rb +4 -1
- data/spec/snippets/string/unindent.rb +10 -1
- data/tasks/authors.rake +17 -0
- data/tasks/bacon.rake +81 -0
- data/tasks/changelog.rake +20 -0
- data/tasks/gems.rake +15 -0
- data/tasks/release.rake +38 -0
- data/tasks/todo.rake +31 -0
- data/tasks/yard.rake +13 -0
- metadata +813 -714
- data/doc/AUTHORS +0 -25
- data/doc/CHANGELOG +0 -5757
- data/doc/COPYING +0 -56
- data/doc/FAQ +0 -92
- data/doc/GPL +0 -339
- data/doc/INSTALL +0 -34
- data/doc/LEGAL +0 -26
- data/doc/ProjectInfo +0 -53
- data/doc/README +0 -435
- data/doc/TODO +0 -29
- data/doc/meta/announcement.txt +0 -126
- data/doc/meta/configuration.txt +0 -162
- data/doc/meta/internals.txt +0 -278
- data/doc/meta/users.kml +0 -64
- data/doc/migrate/1110_to_1111.txt +0 -131
- data/doc/readme_chunks/appendix.txt +0 -10
- data/doc/readme_chunks/examples.txt +0 -38
- data/doc/readme_chunks/features.txt +0 -148
- data/doc/readme_chunks/getting_help.txt +0 -5
- data/doc/readme_chunks/getting_started.txt +0 -18
- data/doc/readme_chunks/installing.txt +0 -46
- data/doc/readme_chunks/introduction.txt +0 -18
- data/doc/readme_chunks/thanks.txt +0 -59
- data/doc/tutorial/todolist.html +0 -816
- data/doc/tutorial/todolist.mkd +0 -736
- data/examples/auth/auth.rb +0 -54
- data/examples/auth/template/layout.haml +0 -20
- data/examples/auth/template/login.haml +0 -16
- data/examples/blog/README +0 -3
- data/examples/blog/controller/main.rb +0 -29
- data/examples/blog/model/entry.rb +0 -30
- data/examples/blog/public/styles/blog.css +0 -132
- data/examples/blog/spec/blog.rb +0 -87
- data/examples/blog/start.rb +0 -7
- data/examples/blog/view/edit.xhtml +0 -17
- data/examples/blog/view/index.xhtml +0 -17
- data/examples/blog/view/layout.xhtml +0 -11
- data/examples/blog/view/new.xhtml +0 -16
- data/examples/hello.rb +0 -15
- data/examples/linking.rb +0 -29
- data/examples/memleak_detector.rb +0 -32
- data/examples/nitro_form.rb +0 -23
- data/examples/rammit/spec/rammit.rb +0 -30
- data/examples/rammit/src/controller/main.rb +0 -3
- data/examples/rammit/src/controller/page.rb +0 -16
- data/examples/rammit/src/model.rb +0 -33
- data/examples/rammit/start.rb +0 -8
- data/examples/rammit/template/index.xhtml +0 -14
- data/examples/rammit/template/page/view.xhtml +0 -4
- data/examples/rapaste/Rakefile +0 -35
- data/examples/rapaste/controller/paste.rb +0 -94
- data/examples/rapaste/model/paste.rb +0 -55
- data/examples/rapaste/public/css/active4d.css +0 -114
- data/examples/rapaste/public/css/all_hallows_eve.css +0 -72
- data/examples/rapaste/public/css/amy.css +0 -147
- data/examples/rapaste/public/css/blackboard.css +0 -88
- data/examples/rapaste/public/css/brilliance_black.css +0 -605
- data/examples/rapaste/public/css/brilliance_dull.css +0 -599
- data/examples/rapaste/public/css/cobalt.css +0 -149
- data/examples/rapaste/public/css/dawn.css +0 -121
- data/examples/rapaste/public/css/display.css +0 -197
- data/examples/rapaste/public/css/eiffel.css +0 -121
- data/examples/rapaste/public/css/espresso_libre.css +0 -109
- data/examples/rapaste/public/css/idle.css +0 -62
- data/examples/rapaste/public/css/iplastic.css +0 -80
- data/examples/rapaste/public/css/lazy.css +0 -73
- data/examples/rapaste/public/css/mac_classic.css +0 -123
- data/examples/rapaste/public/css/magicwb_amiga.css +0 -104
- data/examples/rapaste/public/css/pastels_on_dark.css +0 -188
- data/examples/rapaste/public/css/slush_poppies.css +0 -85
- data/examples/rapaste/public/css/spacecadet.css +0 -51
- data/examples/rapaste/public/css/sunburst.css +0 -180
- data/examples/rapaste/public/css/twilight.css +0 -137
- data/examples/rapaste/public/css/zenburnesque.css +0 -91
- data/examples/rapaste/public/js/jquery.js +0 -11
- data/examples/rapaste/spec/rapaste.rb +0 -49
- data/examples/rapaste/start.rb +0 -24
- data/examples/rapaste/view/copy.xhtml +0 -10
- data/examples/rapaste/view/index.xhtml +0 -9
- data/examples/rapaste/view/layout.xhtml +0 -25
- data/examples/rapaste/view/list.xhtml +0 -29
- data/examples/rapaste/view/search.xhtml +0 -41
- data/examples/rapaste/view/view.xhtml +0 -37
- data/examples/simple_auth.rb +0 -23
- data/examples/sourceview/public/coderay.css +0 -104
- data/examples/sourceview/public/images/file.gif +0 -0
- data/examples/sourceview/public/images/folder.gif +0 -0
- data/examples/sourceview/public/images/tv-collapsable-last.gif +0 -0
- data/examples/sourceview/public/images/tv-collapsable.gif +0 -0
- data/examples/sourceview/public/images/tv-expandable-last.gif +0 -0
- data/examples/sourceview/public/images/tv-expandable.gif +0 -0
- data/examples/sourceview/public/images/tv-item-last.gif +0 -0
- data/examples/sourceview/public/images/tv-item.gif +0 -0
- data/examples/sourceview/public/jquery.js +0 -11
- data/examples/sourceview/public/jquery.treeview.css +0 -48
- data/examples/sourceview/public/jquery.treeview.js +0 -223
- data/examples/sourceview/public/sourceview.js +0 -52
- data/examples/sourceview/sourceview.rb +0 -77
- data/examples/sourceview/template/index.haml +0 -59
- data/examples/templates/template/external.amrita +0 -19
- data/examples/templates/template/external.xsl +0 -57
- data/examples/templates/template_amrita2.rb +0 -74
- data/examples/templates/template_xslt.rb +0 -49
- data/examples/todolist/README +0 -1
- data/examples/todolist/public/js/jquery.js +0 -1923
- data/examples/todolist/public/ramaze.png +0 -0
- data/examples/todolist/spec/todolist.rb +0 -132
- data/examples/todolist/src/controller/main.rb +0 -70
- data/examples/todolist/src/element/page.rb +0 -31
- data/examples/todolist/src/model.rb +0 -14
- data/examples/todolist/start.rb +0 -11
- data/examples/todolist/template/index.xhtml +0 -17
- data/examples/todolist/template/new.xhtml +0 -7
- data/examples/whywiki/spec/whywiki.rb +0 -58
- data/examples/whywiki/template/show.xhtml +0 -18
- data/examples/wikore/start.rb +0 -9
- data/examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +0 -2
- data/examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +0 -2
- data/examples/wiktacular/mkd/main/current.mkd +0 -2
- data/examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +0 -2
- data/lib/proto/public/css/ramaze_error.css +0 -90
- data/lib/proto/public/dispatch.fcgi +0 -11
- data/lib/proto/public/ramaze.png +0 -0
- data/lib/proto/spec/main.rb +0 -24
- data/lib/proto/start.rb +0 -8
- data/lib/proto/start.ru +0 -8
- data/lib/proto/view/error.xhtml +0 -64
- data/lib/proto/view/page.xhtml +0 -15
- data/lib/ramaze/action/render.rb +0 -163
- data/lib/ramaze/action.rb +0 -136
- data/lib/ramaze/adapter/base.rb +0 -59
- data/lib/ramaze/adapter/cgi.rb +0 -24
- data/lib/ramaze/adapter/ebb.rb +0 -32
- data/lib/ramaze/adapter/evented_mongrel.rb +0 -7
- data/lib/ramaze/adapter/fcgi.rb +0 -24
- data/lib/ramaze/adapter/lsws.rb +0 -23
- data/lib/ramaze/adapter/mongrel.rb +0 -25
- data/lib/ramaze/adapter/scgi.rb +0 -22
- data/lib/ramaze/adapter/swiftiplied_mongrel.rb +0 -7
- data/lib/ramaze/adapter/thin.rb +0 -22
- data/lib/ramaze/adapter/webrick.rb +0 -52
- data/lib/ramaze/adapter.rb +0 -101
- data/lib/ramaze/cache/memcached.rb +0 -70
- data/lib/ramaze/cache/memory.rb +0 -6
- data/lib/ramaze/cache/yaml_store.rb +0 -68
- data/lib/ramaze/contrib/auto_params/get_args.rb +0 -57
- data/lib/ramaze/contrib/auto_params.rb +0 -135
- data/lib/ramaze/contrib/email.rb +0 -84
- data/lib/ramaze/contrib/facebook/facebook.rb +0 -171
- data/lib/ramaze/contrib/facebook.rb +0 -23
- data/lib/ramaze/contrib/file_cache.rb +0 -65
- 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/gettext.rb +0 -113
- data/lib/ramaze/contrib/gzip_filter.rb +0 -56
- data/lib/ramaze/contrib/profiling.rb +0 -36
- data/lib/ramaze/contrib/route.rb +0 -22
- data/lib/ramaze/contrib/sequel/fill.rb +0 -12
- data/lib/ramaze/contrib/sequel_cache.rb +0 -92
- data/lib/ramaze/contrib.rb +0 -82
- data/lib/ramaze/controller/error.rb +0 -46
- data/lib/ramaze/controller/main.rb +0 -2
- data/lib/ramaze/controller/resolve.rb +0 -234
- data/lib/ramaze/current/request.rb +0 -181
- data/lib/ramaze/current/response.rb +0 -19
- data/lib/ramaze/current/session/flash.rb +0 -67
- data/lib/ramaze/current/session/hash.rb +0 -65
- data/lib/ramaze/current/session.rb +0 -153
- data/lib/ramaze/dispatcher/action.rb +0 -40
- data/lib/ramaze/dispatcher/directory.rb +0 -116
- data/lib/ramaze/dispatcher/error.rb +0 -108
- data/lib/ramaze/dispatcher/file.rb +0 -87
- data/lib/ramaze/dispatcher.rb +0 -124
- data/lib/ramaze/error.rb +0 -24
- data/lib/ramaze/global/dsl.rb +0 -39
- data/lib/ramaze/global/globalstruct.rb +0 -147
- data/lib/ramaze/global.rb +0 -116
- data/lib/ramaze/helper/aspect.rb +0 -100
- data/lib/ramaze/helper/cgi.rb +0 -43
- data/lib/ramaze/helper/inform.rb +0 -40
- data/lib/ramaze/helper/nitroform.rb +0 -14
- data/lib/ramaze/helper/pager.rb +0 -366
- data/lib/ramaze/helper/partial.rb +0 -96
- data/lib/ramaze/helper/redirect.rb +0 -73
- data/lib/ramaze/helper/sendfile.rb +0 -18
- data/lib/ramaze/helper/sequel.rb +0 -52
- data/lib/ramaze/inform.rb +0 -4
- data/lib/ramaze/log/analogger.rb +0 -37
- data/lib/ramaze/log/growl.rb +0 -35
- data/lib/ramaze/log/knotify.rb +0 -25
- data/lib/ramaze/log/xosd.rb +0 -88
- data/lib/ramaze/route.rb +0 -84
- data/lib/ramaze/snippets/array/put_within.rb +0 -37
- data/lib/ramaze/snippets/binding/locals.rb +0 -13
- data/lib/ramaze/snippets/dictionary.rb +0 -504
- data/lib/ramaze/snippets/divide.rb +0 -20
- data/lib/ramaze/snippets/kernel/__dir__.rb +0 -23
- data/lib/ramaze/snippets/kernel/acquire.rb +0 -39
- data/lib/ramaze/snippets/kernel/aquire.rb +0 -1
- data/lib/ramaze/snippets/kernel/constant.rb +0 -26
- data/lib/ramaze/snippets/kernel/pretty_inspect.rb +0 -15
- data/lib/ramaze/snippets/metaid.rb +0 -17
- data/lib/ramaze/snippets/numeric/filesize_format.rb +0 -19
- data/lib/ramaze/snippets/object/pretty.rb +0 -6
- data/lib/ramaze/snippets/object/scope.rb +0 -11
- data/lib/ramaze/snippets/object/thread_accessor.rb +0 -5
- data/lib/ramaze/snippets/object/traits.rb +0 -76
- data/lib/ramaze/snippets/ordered_set.rb +0 -36
- data/lib/ramaze/snippets/proc/locals.rb +0 -11
- data/lib/ramaze/snippets/ramaze/caller_info.rb +0 -30
- data/lib/ramaze/snippets/ramaze/caller_lines.rb +0 -51
- data/lib/ramaze/snippets/ramaze/thread_accessor.rb +0 -44
- data/lib/ramaze/snippets/string/each.rb +0 -8
- data/lib/ramaze/snippets/string/ord.rb +0 -15
- data/lib/ramaze/snippets/string/start_with.rb +0 -7
- data/lib/ramaze/snippets/struct/fill.rb +0 -23
- data/lib/ramaze/snippets/struct/values_at.rb +0 -23
- data/lib/ramaze/snippets/symbol/to_proc.rb +0 -24
- data/lib/ramaze/snippets/thread/into.rb +0 -18
- data/lib/ramaze/sourcereload.rb +0 -169
- data/lib/ramaze/spec/helper/browser.rb +0 -88
- data/lib/ramaze/spec/helper/mock_http.rb +0 -69
- data/lib/ramaze/spec/helper/requester.rb +0 -49
- data/lib/ramaze/spec/helper/simple_http.rb +0 -434
- data/lib/ramaze/spec/helper.rb +0 -122
- data/lib/ramaze/spec.rb +0 -1
- data/lib/ramaze/store/default.rb +0 -109
- data/lib/ramaze/template/amrita2.rb +0 -44
- data/lib/ramaze/template/builder.rb +0 -28
- data/lib/ramaze/template/erubis.rb +0 -35
- data/lib/ramaze/template/ezamar/element.rb +0 -169
- data/lib/ramaze/template/ezamar/engine.rb +0 -76
- data/lib/ramaze/template/ezamar/morpher.rb +0 -135
- data/lib/ramaze/template/ezamar/render_partial.rb +0 -31
- data/lib/ramaze/template/ezamar.rb +0 -42
- data/lib/ramaze/template/haml.rb +0 -37
- data/lib/ramaze/template/liquid.rb +0 -36
- data/lib/ramaze/template/markaby.rb +0 -52
- data/lib/ramaze/template/nagoro.rb +0 -51
- data/lib/ramaze/template/none.rb +0 -14
- data/lib/ramaze/template/redcloth.rb +0 -24
- data/lib/ramaze/template/remarkably.rb +0 -38
- data/lib/ramaze/template/sass.rb +0 -37
- data/lib/ramaze/template/tagz.rb +0 -79
- data/lib/ramaze/template/tenjin.rb +0 -34
- data/lib/ramaze/template/xslt.rb +0 -96
- data/lib/ramaze/template.rb +0 -81
- data/lib/ramaze/tool/create.rb +0 -74
- data/lib/ramaze/tool/localize.rb +0 -162
- data/lib/ramaze/tool/mime.rb +0 -25
- data/lib/ramaze/tool/mime_types.yaml +0 -615
- data/lib/ramaze/tool/record.rb +0 -6
- data/lib/ramaze/tool.rb +0 -9
- data/lib/ramaze/trinity.rb +0 -13
- data/lib/vendor/bacon.rb +0 -323
- data/rake_tasks/conf.rake +0 -73
- data/rake_tasks/coverage.rake +0 -46
- data/rake_tasks/darcs.rake +0 -5
- data/rake_tasks/gem.rake +0 -43
- data/rake_tasks/maintenance.rake +0 -384
- data/rake_tasks/spec.rake +0 -62
- data/spec/contrib/auto_params.rb +0 -121
- data/spec/contrib/profiling.rb +0 -26
- data/spec/contrib/route.rb +0 -36
- data/spec/contrib/sequel/fill.rb +0 -47
- data/spec/examples/simple_auth.rb +0 -32
- data/spec/examples/templates/template_amrita2.rb +0 -16
- data/spec/examples/templates/template_redcloth.rb +0 -28
- data/spec/ramaze/action/basics.rb +0 -36
- data/spec/ramaze/action/cache.rb +0 -43
- data/spec/ramaze/action/layout.rb +0 -190
- data/spec/ramaze/adapter/mongrel.rb +0 -12
- data/spec/ramaze/adapter/record.rb +0 -31
- data/spec/ramaze/adapter/webrick.rb +0 -12
- data/spec/ramaze/adapter.rb +0 -22
- data/spec/ramaze/cache.rb +0 -73
- data/spec/ramaze/controller.rb +0 -177
- data/spec/ramaze/current/request.rb +0 -30
- data/spec/ramaze/current/session.rb +0 -97
- data/spec/ramaze/dispatcher.rb +0 -31
- data/spec/ramaze/element.rb +0 -107
- data/spec/ramaze/helper/aspect.rb +0 -92
- data/spec/ramaze/helper/cgi.rb +0 -43
- data/spec/ramaze/helper/file.rb +0 -18
- data/spec/ramaze/helper/pager.rb +0 -99
- data/spec/ramaze/helper/partial.rb +0 -76
- data/spec/ramaze/helper/redirect.rb +0 -112
- data/spec/ramaze/localize.rb +0 -67
- data/spec/ramaze/morpher.rb +0 -111
- data/spec/ramaze/public/error404.xhtml +0 -1
- data/spec/ramaze/request/mongrel.rb +0 -9
- data/spec/ramaze/request/thin.rb +0 -9
- data/spec/ramaze/request/webrick.rb +0 -5
- data/spec/ramaze/route.rb +0 -130
- data/spec/ramaze/session.rb +0 -94
- data/spec/ramaze/store/default.rb +0 -71
- data/spec/ramaze/template/amrita2/external.amrita +0 -6
- data/spec/ramaze/template/amrita2/sum.amrita +0 -1
- data/spec/ramaze/template/amrita2.rb +0 -50
- data/spec/ramaze/template/builder/external.rxml +0 -3
- data/spec/ramaze/template/builder.rb +0 -55
- data/spec/ramaze/template/erubis/sum.rhtml +0 -1
- data/spec/ramaze/template/erubis.rb +0 -41
- data/spec/ramaze/template/ezamar/another/long/action.zmr +0 -1
- data/spec/ramaze/template/ezamar/combined.zmr +0 -1
- data/spec/ramaze/template/ezamar/file_only.zmr +0 -1
- data/spec/ramaze/template/ezamar/index.zmr +0 -1
- data/spec/ramaze/template/ezamar/nested.zmr +0 -1
- data/spec/ramaze/template/ezamar/other__index.xhtml +0 -1
- data/spec/ramaze/template/ezamar/some__long__action.zmr +0 -1
- data/spec/ramaze/template/ezamar/sum.zmr +0 -1
- data/spec/ramaze/template/ezamar.rb +0 -63
- data/spec/ramaze/template/haml/index.haml +0 -5
- data/spec/ramaze/template/haml/locals.haml +0 -2
- data/spec/ramaze/template/haml/with_vars.haml +0 -4
- data/spec/ramaze/template/haml.rb +0 -66
- data/spec/ramaze/template/liquid/index.liquid +0 -1
- data/spec/ramaze/template/liquid/products.liquid +0 -45
- data/spec/ramaze/template/liquid.rb +0 -99
- data/spec/ramaze/template/markaby/external.mab +0 -8
- data/spec/ramaze/template/markaby/sum.mab +0 -1
- data/spec/ramaze/template/markaby.rb +0 -61
- data/spec/ramaze/template/nagoro/another/long/action.nag +0 -1
- data/spec/ramaze/template/nagoro/combined.nag +0 -1
- data/spec/ramaze/template/nagoro/file_only.nag +0 -1
- data/spec/ramaze/template/nagoro/index.nag +0 -1
- data/spec/ramaze/template/nagoro/nested.nag +0 -1
- data/spec/ramaze/template/nagoro/some__long__action.nag +0 -1
- data/spec/ramaze/template/nagoro/sum.nag +0 -1
- data/spec/ramaze/template/nagoro.rb +0 -64
- data/spec/ramaze/template/redcloth/external.redcloth +0 -1
- data/spec/ramaze/template/redcloth.rb +0 -38
- data/spec/ramaze/template/remarkably.rb +0 -58
- data/spec/ramaze/template/sass.rb +0 -69
- data/spec/ramaze/template/tenjin/external.tenjin +0 -1
- data/spec/ramaze/template/tenjin.rb +0 -49
- data/spec/ramaze/template/xslt/concat_words.xsl +0 -16
- data/spec/ramaze/template/xslt/index.xsl +0 -14
- data/spec/ramaze/template/xslt/products.xsl +0 -32
- data/spec/ramaze/template/xslt/ruby_version.xsl +0 -14
- data/spec/ramaze/template/xslt.rb +0 -90
- data/spec/ramaze/template.rb +0 -128
- data/spec/snippets/array/put_within.rb +0 -33
- data/spec/snippets/divide.rb +0 -19
- data/spec/snippets/kernel/__dir__.rb +0 -8
- data/spec/snippets/kernel/acquire.rb +0 -71
- data/spec/snippets/kernel/constant.rb +0 -23
- data/spec/snippets/numeric/filesize_format.rb +0 -12
- data/spec/snippets/ordered_set.rb +0 -63
- data/spec/snippets/ramaze/caller_info.rb +0 -39
- data/spec/snippets/ramaze/caller_lines.rb +0 -30
- data/spec/snippets/struct/fill.rb +0 -26
- data/spec/snippets/struct/values_at.rb +0 -44
- data/spec/snippets/symbol/to_proc.rb +0 -13
- data/spec/snippets/thread/into.rb +0 -20
- /data/examples/{todolist → app/todolist}/public/favicon.ico +0 -0
- /data/examples/{upload → app/upload}/view/index.xhtml +0 -0
- /data/examples/{wikore/template → app/wikore/view}/index.xhtml +0 -0
- /data/examples/{wiktacular → app/wiktacular}/README +0 -0
- /data/examples/{wiktacular → app/wiktacular}/mkd/link/2007-07-20_19-45-51.mkd +0 -0
- /data/examples/{wiktacular → app/wiktacular}/mkd/link/current.mkd +0 -0
- /data/examples/{wiktacular → app/wiktacular}/mkd/main/2007-07-20_16-31-33.mkd +0 -0
- /data/examples/{wiktacular → app/wiktacular}/public/favicon.ico +0 -0
- /data/examples/{wiktacular → app/wiktacular}/public/screen.css +0 -0
- /data/examples/{wiktacular/template → app/wiktacular/view}/index.xhtml +0 -0
- /data/examples/{identity.rb → helpers/identity.rb} +0 -0
- /data/examples/{facebook.rb → misc/facebook.rb} +0 -0
- /data/examples/templates/{template → view}/external.liquid +0 -0
- /data/spec/ramaze/action/{template → view}/bar.xhtml +0 -0
- /data/spec/ramaze/action/{template → view}/instancevars/layout.xhtml +0 -0
- /data/spec/ramaze/action/{template → view}/other_wrapper.xhtml +0 -0
- /data/spec/ramaze/action/{template → view}/single_wrapper.xhtml +0 -0
- /data/spec/ramaze/action/{template/sub/sub_wrapper.xhtml → view/sub/sub_wrapper.erb} +0 -0
- /data/spec/ramaze/controller/{template → view}/greet.xhtml +0 -0
- /data/spec/ramaze/controller/{template → view}/list.xhtml +0 -0
- /data/spec/ramaze/controller/{template → view}/other/greet/other.xhtml +0 -0
- /data/spec/ramaze/controller/{template → view}/other_wrapper.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/locals.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/loop.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/num.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/partial.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/recursive.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/recursive_local_ivars.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/recursive_locals.xhtml +0 -0
- /data/spec/ramaze/helper/{template → view}/test_template.xhtml +0 -0
- /data/spec/ramaze/{template → view}/remarkably/external.rem +0 -0
- /data/spec/ramaze/{template → view}/remarkably/sum.rem +0 -0
- /data/spec/ramaze/{template → view}/sass/file.css.sass +0 -0
- /data/spec/ramaze/{template → view}/tagz/external.tagz +0 -0
- /data/spec/ramaze/{template → view}/tagz/sum.tagz +0 -0
metadata
CHANGED
@@ -1,783 +1,882 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ramaze
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2023.01.06
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
7
|
-
- manveru
|
8
|
-
|
6
|
+
authors:
|
7
|
+
- Michael 'manveru' Fellinger
|
8
|
+
- Yorick Peterse
|
9
|
+
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
12
|
+
date: 2023-01-16 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: innate
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 2023.01.05
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 2023.01.05
|
28
|
+
- !ruby/object:Gem::Dependency
|
16
29
|
name: rake
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: bacon
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: bluecloth
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: dalli
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: erector
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ">="
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0'
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: erubis
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: ezamar
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: haml
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
- !ruby/object:Gem::Dependency
|
141
|
+
name: liquid
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0'
|
147
|
+
type: :development
|
148
|
+
prerelease: false
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - ">="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '0'
|
154
|
+
- !ruby/object:Gem::Dependency
|
155
|
+
name: locale
|
156
|
+
requirement: !ruby/object:Gem::Requirement
|
157
|
+
requirements:
|
158
|
+
- - ">="
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '0'
|
161
|
+
type: :development
|
162
|
+
prerelease: false
|
163
|
+
version_requirements: !ruby/object:Gem::Requirement
|
164
|
+
requirements:
|
165
|
+
- - ">="
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: '0'
|
168
|
+
- !ruby/object:Gem::Dependency
|
169
|
+
name: maruku
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
type: :development
|
176
|
+
prerelease: false
|
177
|
+
version_requirements: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - ">="
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '0'
|
182
|
+
- !ruby/object:Gem::Dependency
|
183
|
+
name: moneta
|
184
|
+
requirement: !ruby/object:Gem::Requirement
|
185
|
+
requirements:
|
186
|
+
- - ">="
|
187
|
+
- !ruby/object:Gem::Version
|
188
|
+
version: '0'
|
189
|
+
type: :development
|
190
|
+
prerelease: false
|
191
|
+
version_requirements: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - ">="
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '0'
|
196
|
+
- !ruby/object:Gem::Dependency
|
197
|
+
name: mustache
|
198
|
+
requirement: !ruby/object:Gem::Requirement
|
199
|
+
requirements:
|
200
|
+
- - ">="
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: '0'
|
203
|
+
type: :development
|
204
|
+
prerelease: false
|
205
|
+
version_requirements: !ruby/object:Gem::Requirement
|
206
|
+
requirements:
|
207
|
+
- - ">="
|
208
|
+
- !ruby/object:Gem::Version
|
209
|
+
version: '0'
|
210
|
+
- !ruby/object:Gem::Dependency
|
211
|
+
name: rack-test
|
212
|
+
requirement: !ruby/object:Gem::Requirement
|
213
|
+
requirements:
|
214
|
+
- - ">="
|
215
|
+
- !ruby/object:Gem::Version
|
216
|
+
version: '0'
|
217
|
+
type: :development
|
218
|
+
prerelease: false
|
219
|
+
version_requirements: !ruby/object:Gem::Requirement
|
220
|
+
requirements:
|
221
|
+
- - ">="
|
222
|
+
- !ruby/object:Gem::Version
|
223
|
+
version: '0'
|
224
|
+
- !ruby/object:Gem::Dependency
|
225
|
+
name: redis-namespace
|
226
|
+
requirement: !ruby/object:Gem::Requirement
|
227
|
+
requirements:
|
228
|
+
- - ">="
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: '0'
|
231
|
+
type: :development
|
232
|
+
prerelease: false
|
233
|
+
version_requirements: !ruby/object:Gem::Requirement
|
234
|
+
requirements:
|
235
|
+
- - ">="
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
version: '0'
|
238
|
+
- !ruby/object:Gem::Dependency
|
239
|
+
name: Remarkably
|
240
|
+
requirement: !ruby/object:Gem::Requirement
|
241
|
+
requirements:
|
242
|
+
- - ">="
|
243
|
+
- !ruby/object:Gem::Version
|
244
|
+
version: '0'
|
245
|
+
type: :development
|
246
|
+
prerelease: false
|
247
|
+
version_requirements: !ruby/object:Gem::Requirement
|
248
|
+
requirements:
|
249
|
+
- - ">="
|
250
|
+
- !ruby/object:Gem::Version
|
251
|
+
version: '0'
|
252
|
+
- !ruby/object:Gem::Dependency
|
253
|
+
name: sass
|
254
|
+
requirement: !ruby/object:Gem::Requirement
|
255
|
+
requirements:
|
256
|
+
- - ">="
|
257
|
+
- !ruby/object:Gem::Version
|
258
|
+
version: '0'
|
259
|
+
type: :development
|
260
|
+
prerelease: false
|
261
|
+
version_requirements: !ruby/object:Gem::Requirement
|
262
|
+
requirements:
|
263
|
+
- - ">="
|
264
|
+
- !ruby/object:Gem::Version
|
265
|
+
version: '0'
|
266
|
+
- !ruby/object:Gem::Dependency
|
267
|
+
name: sequel
|
268
|
+
requirement: !ruby/object:Gem::Requirement
|
269
|
+
requirements:
|
270
|
+
- - ">="
|
271
|
+
- !ruby/object:Gem::Version
|
272
|
+
version: '0'
|
273
|
+
type: :development
|
274
|
+
prerelease: false
|
275
|
+
version_requirements: !ruby/object:Gem::Requirement
|
276
|
+
requirements:
|
277
|
+
- - ">="
|
278
|
+
- !ruby/object:Gem::Version
|
279
|
+
version: '0'
|
280
|
+
- !ruby/object:Gem::Dependency
|
281
|
+
name: slim
|
282
|
+
requirement: !ruby/object:Gem::Requirement
|
283
|
+
requirements:
|
284
|
+
- - ">="
|
285
|
+
- !ruby/object:Gem::Version
|
286
|
+
version: '0'
|
287
|
+
type: :development
|
288
|
+
prerelease: false
|
289
|
+
version_requirements: !ruby/object:Gem::Requirement
|
290
|
+
requirements:
|
291
|
+
- - ">="
|
292
|
+
- !ruby/object:Gem::Version
|
293
|
+
version: '0'
|
294
|
+
- !ruby/object:Gem::Dependency
|
295
|
+
name: slippers
|
296
|
+
requirement: !ruby/object:Gem::Requirement
|
297
|
+
requirements:
|
298
|
+
- - ">="
|
299
|
+
- !ruby/object:Gem::Version
|
300
|
+
version: '0'
|
301
|
+
type: :development
|
302
|
+
prerelease: false
|
303
|
+
version_requirements: !ruby/object:Gem::Requirement
|
304
|
+
requirements:
|
305
|
+
- - ">="
|
306
|
+
- !ruby/object:Gem::Version
|
307
|
+
version: '0'
|
308
|
+
- !ruby/object:Gem::Dependency
|
309
|
+
name: tagz
|
310
|
+
requirement: !ruby/object:Gem::Requirement
|
311
|
+
requirements:
|
312
|
+
- - ">="
|
313
|
+
- !ruby/object:Gem::Version
|
314
|
+
version: '0'
|
315
|
+
type: :development
|
316
|
+
prerelease: false
|
317
|
+
version_requirements: !ruby/object:Gem::Requirement
|
318
|
+
requirements:
|
319
|
+
- - ">="
|
320
|
+
- !ruby/object:Gem::Version
|
321
|
+
version: '0'
|
322
|
+
- !ruby/object:Gem::Dependency
|
323
|
+
name: tenjin
|
324
|
+
requirement: !ruby/object:Gem::Requirement
|
325
|
+
requirements:
|
326
|
+
- - ">="
|
327
|
+
- !ruby/object:Gem::Version
|
328
|
+
version: '0'
|
329
|
+
type: :development
|
330
|
+
prerelease: false
|
331
|
+
version_requirements: !ruby/object:Gem::Requirement
|
332
|
+
requirements:
|
333
|
+
- - ">="
|
334
|
+
- !ruby/object:Gem::Version
|
335
|
+
version: '0'
|
336
|
+
- !ruby/object:Gem::Dependency
|
337
|
+
name: yard
|
338
|
+
requirement: !ruby/object:Gem::Requirement
|
339
|
+
requirements:
|
340
|
+
- - ">="
|
341
|
+
- !ruby/object:Gem::Version
|
342
|
+
version: '0'
|
343
|
+
type: :development
|
344
|
+
prerelease: false
|
345
|
+
version_requirements: !ruby/object:Gem::Requirement
|
346
|
+
requirements:
|
347
|
+
- - ">="
|
348
|
+
- !ruby/object:Gem::Version
|
349
|
+
version: '0'
|
350
|
+
- !ruby/object:Gem::Dependency
|
351
|
+
name: lokar
|
352
|
+
requirement: !ruby/object:Gem::Requirement
|
353
|
+
requirements:
|
354
|
+
- - ">="
|
355
|
+
- !ruby/object:Gem::Version
|
356
|
+
version: '0'
|
357
|
+
type: :development
|
358
|
+
prerelease: false
|
359
|
+
version_requirements: !ruby/object:Gem::Requirement
|
360
|
+
requirements:
|
361
|
+
- - ">="
|
362
|
+
- !ruby/object:Gem::Version
|
363
|
+
version: '0'
|
364
|
+
- !ruby/object:Gem::Dependency
|
365
|
+
name: nokogiri
|
366
|
+
requirement: !ruby/object:Gem::Requirement
|
367
|
+
requirements:
|
368
|
+
- - ">="
|
369
|
+
- !ruby/object:Gem::Version
|
370
|
+
version: '0'
|
371
|
+
type: :development
|
372
|
+
prerelease: false
|
373
|
+
version_requirements: !ruby/object:Gem::Requirement
|
374
|
+
requirements:
|
375
|
+
- - ">="
|
376
|
+
- !ruby/object:Gem::Version
|
377
|
+
version: '0'
|
378
|
+
- !ruby/object:Gem::Dependency
|
379
|
+
name: rdiscount
|
380
|
+
requirement: !ruby/object:Gem::Requirement
|
381
|
+
requirements:
|
382
|
+
- - ">="
|
383
|
+
- !ruby/object:Gem::Version
|
384
|
+
version: '0'
|
385
|
+
type: :development
|
386
|
+
prerelease: false
|
387
|
+
version_requirements: !ruby/object:Gem::Requirement
|
388
|
+
requirements:
|
389
|
+
- - ">="
|
390
|
+
- !ruby/object:Gem::Version
|
391
|
+
version: '0'
|
392
|
+
- !ruby/object:Gem::Dependency
|
393
|
+
name: sqlite3
|
394
|
+
requirement: !ruby/object:Gem::Requirement
|
395
|
+
requirements:
|
396
|
+
- - ">="
|
397
|
+
- !ruby/object:Gem::Version
|
398
|
+
version: '0'
|
399
|
+
type: :development
|
400
|
+
prerelease: false
|
401
|
+
version_requirements: !ruby/object:Gem::Requirement
|
402
|
+
requirements:
|
403
|
+
- - ">="
|
404
|
+
- !ruby/object:Gem::Version
|
405
|
+
version: '0'
|
406
|
+
- !ruby/object:Gem::Dependency
|
407
|
+
name: nagoro
|
408
|
+
requirement: !ruby/object:Gem::Requirement
|
409
|
+
requirements:
|
410
|
+
- - ">="
|
411
|
+
- !ruby/object:Gem::Version
|
412
|
+
version: '0'
|
413
|
+
type: :development
|
414
|
+
prerelease: false
|
415
|
+
version_requirements: !ruby/object:Gem::Requirement
|
416
|
+
requirements:
|
417
|
+
- - ">="
|
418
|
+
- !ruby/object:Gem::Version
|
419
|
+
version: '0'
|
33
420
|
description: Ramaze is a simple and modular web framework
|
34
|
-
email:
|
35
|
-
|
421
|
+
email:
|
422
|
+
- m.fellinger@gmail.com
|
423
|
+
- yorickpeterse@gmail.com
|
424
|
+
executables:
|
36
425
|
- ramaze
|
37
426
|
extensions: []
|
38
|
-
|
39
|
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
- doc/README
|
43
|
-
- doc/FAQ
|
44
|
-
- doc/CHANGELOG
|
45
|
-
files:
|
46
|
-
- lib
|
47
|
-
- doc
|
48
|
-
- doc/README
|
49
|
-
- doc/FAQ
|
50
|
-
- doc/CHANGELOG
|
427
|
+
extra_rdoc_files: []
|
428
|
+
files:
|
429
|
+
- Gemfile
|
430
|
+
- README.md
|
51
431
|
- Rakefile
|
52
|
-
-
|
53
|
-
- examples/auth/auth.
|
54
|
-
- examples/auth/
|
55
|
-
- examples/auth/
|
56
|
-
- examples/auth/
|
57
|
-
- examples/
|
58
|
-
- examples/blog/
|
59
|
-
- examples/blog/
|
60
|
-
- examples/blog/
|
61
|
-
- examples/blog/
|
62
|
-
- examples/blog/
|
63
|
-
- examples/blog/
|
64
|
-
- examples/blog/
|
65
|
-
- examples/blog/
|
66
|
-
- examples/blog/
|
67
|
-
- examples/blog/
|
68
|
-
- examples/blog/
|
69
|
-
- examples/blog/
|
70
|
-
- examples/blog/
|
71
|
-
- examples/blog/
|
72
|
-
- examples/blog/
|
73
|
-
- examples/blog/
|
74
|
-
- examples/
|
75
|
-
- examples/
|
76
|
-
- examples/
|
77
|
-
- examples/
|
78
|
-
- examples/
|
79
|
-
- examples/
|
80
|
-
- examples/
|
81
|
-
- examples/
|
82
|
-
- examples/
|
83
|
-
- examples/
|
84
|
-
- examples/
|
85
|
-
- examples/
|
86
|
-
- examples/
|
87
|
-
- examples/
|
88
|
-
- examples/
|
89
|
-
- examples/
|
90
|
-
- examples/
|
91
|
-
- examples/
|
92
|
-
- examples/
|
93
|
-
- examples/
|
94
|
-
- examples/
|
95
|
-
- examples/
|
96
|
-
- examples/
|
97
|
-
- examples/
|
98
|
-
- examples/
|
99
|
-
- examples/
|
100
|
-
- examples/
|
101
|
-
- examples/
|
102
|
-
- examples/
|
103
|
-
- examples/
|
104
|
-
- examples/
|
105
|
-
- examples/
|
106
|
-
- examples/
|
107
|
-
- examples/
|
108
|
-
- examples/
|
109
|
-
- examples/
|
110
|
-
- examples/
|
111
|
-
- examples/
|
112
|
-
- examples/
|
113
|
-
- examples/
|
114
|
-
- examples/
|
115
|
-
- examples/
|
116
|
-
- examples/
|
117
|
-
- examples/
|
118
|
-
- examples/
|
119
|
-
- examples/
|
120
|
-
- examples/
|
121
|
-
- examples/
|
122
|
-
- examples/
|
123
|
-
- examples/
|
124
|
-
- examples/
|
125
|
-
- examples/
|
126
|
-
- examples/
|
127
|
-
- examples/
|
128
|
-
- examples/
|
129
|
-
- examples/
|
130
|
-
- examples/
|
131
|
-
- examples/
|
132
|
-
- examples/
|
133
|
-
- examples/
|
134
|
-
- examples/
|
135
|
-
- examples/
|
136
|
-
- examples/
|
137
|
-
- examples/
|
138
|
-
- examples/
|
139
|
-
- examples/
|
140
|
-
- examples/
|
141
|
-
- examples/
|
142
|
-
- examples/
|
143
|
-
- examples/
|
144
|
-
- examples/
|
145
|
-
- examples/
|
146
|
-
- examples/
|
147
|
-
- examples/
|
148
|
-
- examples/
|
149
|
-
- examples/
|
150
|
-
- examples/
|
151
|
-
- examples/
|
152
|
-
- examples/
|
153
|
-
- examples/
|
154
|
-
- examples/
|
155
|
-
- examples/
|
156
|
-
- examples/
|
157
|
-
- examples/
|
158
|
-
- examples/
|
159
|
-
- examples/
|
160
|
-
- examples/
|
161
|
-
- examples/
|
162
|
-
- examples/
|
163
|
-
- examples/templates/template/external.amrita
|
164
|
-
- examples/templates/template/external.haml
|
165
|
-
- examples/templates/template/external.liquid
|
166
|
-
- examples/templates/template/external.mab
|
167
|
-
- examples/templates/template/external.nag
|
168
|
-
- examples/templates/template/external.redcloth
|
169
|
-
- examples/templates/template/external.rem
|
170
|
-
- examples/templates/template/external.rhtml
|
171
|
-
- examples/templates/template/external.tenjin
|
172
|
-
- examples/templates/template/external.xsl
|
173
|
-
- examples/templates/template/external.zmr
|
174
|
-
- examples/templates/template_amrita2.rb
|
432
|
+
- bin/ramaze
|
433
|
+
- examples/app/auth/layout/auth.xhtml
|
434
|
+
- examples/app/auth/start.rb
|
435
|
+
- examples/app/auth/view/index.xhtml
|
436
|
+
- examples/app/auth/view/login.xhtml
|
437
|
+
- examples/app/auth/view/secret.xhtml
|
438
|
+
- examples/app/blog/app.rb
|
439
|
+
- examples/app/blog/config.ru
|
440
|
+
- examples/app/blog/controller/init.rb
|
441
|
+
- examples/app/blog/controller/posts.rb
|
442
|
+
- examples/app/blog/controller/users.rb
|
443
|
+
- examples/app/blog/layout/default.xhtml
|
444
|
+
- examples/app/blog/migrations/01_create_schema.rb
|
445
|
+
- examples/app/blog/model/comment.rb
|
446
|
+
- examples/app/blog/model/init.rb
|
447
|
+
- examples/app/blog/model/post.rb
|
448
|
+
- examples/app/blog/model/user.rb
|
449
|
+
- examples/app/blog/public/css/grid.css
|
450
|
+
- examples/app/blog/public/css/layout.css
|
451
|
+
- examples/app/blog/public/css/reset.css
|
452
|
+
- examples/app/blog/public/css/text.css
|
453
|
+
- examples/app/blog/public/dispatch.fcgi
|
454
|
+
- examples/app/blog/public/favicon.ico
|
455
|
+
- examples/app/blog/public/images/bg.png
|
456
|
+
- examples/app/blog/start.rb
|
457
|
+
- examples/app/blog/view/feed.xhtml
|
458
|
+
- examples/app/blog/view/form.xhtml
|
459
|
+
- examples/app/blog/view/index.xhtml
|
460
|
+
- examples/app/blog/view/users/form.xhtml
|
461
|
+
- examples/app/blog/view/users/index.xhtml
|
462
|
+
- examples/app/blog/view/users/login.xhtml
|
463
|
+
- examples/app/blog/view/view.xhtml
|
464
|
+
- examples/app/chat/layout/default.xhtml
|
465
|
+
- examples/app/chat/model/history.rb
|
466
|
+
- examples/app/chat/model/message.rb
|
467
|
+
- examples/app/chat/public/css/chat.css
|
468
|
+
- examples/app/chat/public/js/chat.js
|
469
|
+
- examples/app/chat/public/js/jquery.js
|
470
|
+
- examples/app/chat/start.rb
|
471
|
+
- examples/app/chat/view/chat.xhtml
|
472
|
+
- examples/app/chat/view/index.xhtml
|
473
|
+
- examples/app/localization/locale/de.yaml
|
474
|
+
- examples/app/localization/locale/en.yaml
|
475
|
+
- examples/app/localization/locale/ja.yaml
|
476
|
+
- examples/app/localization/start.rb
|
477
|
+
- examples/app/todolist/controller/init.rb
|
478
|
+
- examples/app/todolist/controller/task.rb
|
479
|
+
- examples/app/todolist/layout/default.xhtml
|
480
|
+
- examples/app/todolist/model/init.rb
|
481
|
+
- examples/app/todolist/model/task.rb
|
482
|
+
- examples/app/todolist/public/css/screen.css
|
483
|
+
- examples/app/todolist/public/favicon.ico
|
484
|
+
- examples/app/todolist/start.rb
|
485
|
+
- examples/app/todolist/view/index.xhtml
|
486
|
+
- examples/app/upload/start.rb
|
487
|
+
- examples/app/upload/view/index.xhtml
|
488
|
+
- examples/app/whywiki/spec/whywiki.rb
|
489
|
+
- examples/app/whywiki/start.rb
|
490
|
+
- examples/app/whywiki/view/edit.xhtml
|
491
|
+
- examples/app/whywiki/view/show.xhtml
|
492
|
+
- examples/app/wikore/spec/wikore.rb
|
493
|
+
- examples/app/wikore/src/controller.rb
|
494
|
+
- examples/app/wikore/src/model.rb
|
495
|
+
- examples/app/wikore/start.rb
|
496
|
+
- examples/app/wikore/view/index.xhtml
|
497
|
+
- examples/app/wiktacular/README
|
498
|
+
- examples/app/wiktacular/layout/application.xhtml
|
499
|
+
- examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
|
500
|
+
- examples/app/wiktacular/mkd/link/current.mkd
|
501
|
+
- examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
|
502
|
+
- examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
|
503
|
+
- examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
|
504
|
+
- examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
|
505
|
+
- examples/app/wiktacular/mkd/main/current.mkd
|
506
|
+
- examples/app/wiktacular/mkd/markdown/current.mkd
|
507
|
+
- examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
|
508
|
+
- examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
|
509
|
+
- examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
|
510
|
+
- examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
|
511
|
+
- examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
|
512
|
+
- examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
|
513
|
+
- examples/app/wiktacular/mkd/testing/current.mkd
|
514
|
+
- examples/app/wiktacular/public/favicon.ico
|
515
|
+
- examples/app/wiktacular/public/screen.css
|
516
|
+
- examples/app/wiktacular/spec/wiktacular.rb
|
517
|
+
- examples/app/wiktacular/src/controller.rb
|
518
|
+
- examples/app/wiktacular/src/model.rb
|
519
|
+
- examples/app/wiktacular/start.rb
|
520
|
+
- examples/app/wiktacular/view/edit.xhtml
|
521
|
+
- examples/app/wiktacular/view/index.xhtml
|
522
|
+
- examples/app/wiktacular/view/new.xhtml
|
523
|
+
- examples/basic/element.rb
|
524
|
+
- examples/basic/gestalt.rb
|
525
|
+
- examples/basic/hello.rb
|
526
|
+
- examples/basic/layout.rb
|
527
|
+
- examples/basic/linking.rb
|
528
|
+
- examples/basic/partial.rb
|
529
|
+
- examples/basic/simple.rb
|
530
|
+
- examples/helpers/cache.rb
|
531
|
+
- examples/helpers/identity.rb
|
532
|
+
- examples/helpers/paginate.rb
|
533
|
+
- examples/helpers/rest.rb
|
534
|
+
- examples/helpers/simple_captcha.rb
|
535
|
+
- examples/misc/css.rb
|
536
|
+
- examples/misc/facebook.rb
|
537
|
+
- examples/misc/memleak_detector.rb
|
538
|
+
- examples/misc/nagoro_element.rb
|
539
|
+
- examples/misc/ramaise.rb
|
540
|
+
- examples/misc/rapp.rb
|
541
|
+
- examples/misc/sequel_scaffolding.rb
|
542
|
+
- examples/misc/serve_directory.rb
|
175
543
|
- examples/templates/template_erubis.rb
|
176
544
|
- examples/templates/template_ezamar.rb
|
177
545
|
- examples/templates/template_haml.rb
|
178
546
|
- examples/templates/template_liquid.rb
|
179
547
|
- examples/templates/template_markaby.rb
|
548
|
+
- examples/templates/template_mustache.rb
|
180
549
|
- examples/templates/template_nagoro.rb
|
181
550
|
- examples/templates/template_redcloth.rb
|
182
551
|
- examples/templates/template_remarkably.rb
|
183
552
|
- examples/templates/template_tenjin.rb
|
184
|
-
- examples/templates/
|
185
|
-
- examples/
|
186
|
-
- examples/
|
187
|
-
- examples/
|
188
|
-
- examples/
|
189
|
-
- examples/
|
190
|
-
- examples/
|
191
|
-
- examples/
|
192
|
-
- examples/
|
193
|
-
- examples/
|
194
|
-
-
|
195
|
-
-
|
196
|
-
-
|
197
|
-
-
|
198
|
-
-
|
199
|
-
-
|
200
|
-
-
|
201
|
-
-
|
202
|
-
-
|
203
|
-
-
|
204
|
-
-
|
205
|
-
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
-
|
209
|
-
-
|
210
|
-
-
|
211
|
-
-
|
212
|
-
-
|
213
|
-
-
|
214
|
-
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
-
|
219
|
-
-
|
220
|
-
-
|
221
|
-
-
|
222
|
-
-
|
223
|
-
-
|
224
|
-
-
|
225
|
-
-
|
226
|
-
-
|
227
|
-
-
|
228
|
-
-
|
229
|
-
-
|
230
|
-
-
|
231
|
-
-
|
232
|
-
-
|
233
|
-
-
|
234
|
-
-
|
235
|
-
-
|
236
|
-
-
|
237
|
-
-
|
238
|
-
-
|
239
|
-
-
|
240
|
-
-
|
241
|
-
-
|
242
|
-
-
|
243
|
-
-
|
244
|
-
-
|
245
|
-
-
|
246
|
-
-
|
247
|
-
-
|
248
|
-
-
|
249
|
-
-
|
250
|
-
-
|
251
|
-
-
|
252
|
-
-
|
253
|
-
-
|
254
|
-
-
|
255
|
-
-
|
256
|
-
-
|
257
|
-
-
|
258
|
-
-
|
259
|
-
-
|
260
|
-
-
|
261
|
-
-
|
262
|
-
-
|
263
|
-
-
|
264
|
-
-
|
265
|
-
-
|
266
|
-
-
|
267
|
-
-
|
268
|
-
-
|
269
|
-
-
|
270
|
-
-
|
271
|
-
-
|
272
|
-
-
|
273
|
-
-
|
274
|
-
-
|
275
|
-
-
|
276
|
-
-
|
277
|
-
-
|
278
|
-
-
|
279
|
-
-
|
280
|
-
-
|
281
|
-
-
|
282
|
-
-
|
283
|
-
-
|
284
|
-
-
|
285
|
-
-
|
286
|
-
-
|
287
|
-
-
|
288
|
-
-
|
289
|
-
-
|
290
|
-
-
|
291
|
-
-
|
292
|
-
-
|
293
|
-
-
|
294
|
-
-
|
295
|
-
-
|
296
|
-
-
|
297
|
-
-
|
553
|
+
- examples/templates/view/external.haml
|
554
|
+
- examples/templates/view/external.liquid
|
555
|
+
- examples/templates/view/external.mab
|
556
|
+
- examples/templates/view/external.mt
|
557
|
+
- examples/templates/view/external.nag
|
558
|
+
- examples/templates/view/external.redcloth
|
559
|
+
- examples/templates/view/external.rem
|
560
|
+
- examples/templates/view/external.rhtml
|
561
|
+
- examples/templates/view/external.tenjin
|
562
|
+
- examples/templates/view/external.zmr
|
563
|
+
- guide/AUTHORS
|
564
|
+
- guide/CHANGELOG
|
565
|
+
- guide/LICENSE
|
566
|
+
- guide/_static/logo.png
|
567
|
+
- guide/_static/logo.svg
|
568
|
+
- guide/css/common.css
|
569
|
+
- guide/general/cache.md
|
570
|
+
- guide/general/configuration.md
|
571
|
+
- guide/general/contributing.md
|
572
|
+
- guide/general/controllers.md
|
573
|
+
- guide/general/helpers.md
|
574
|
+
- guide/general/installation.md
|
575
|
+
- guide/general/logging.md
|
576
|
+
- guide/general/middlewares.md
|
577
|
+
- guide/general/models.md
|
578
|
+
- guide/general/principles.md
|
579
|
+
- guide/general/ramaze_command.md
|
580
|
+
- guide/general/routes.md
|
581
|
+
- guide/general/sessions.md
|
582
|
+
- guide/general/special_thanks.md
|
583
|
+
- guide/general/testing.md
|
584
|
+
- guide/general/upgrading.md
|
585
|
+
- guide/general/views.md
|
586
|
+
- lib/proto/Gemfile
|
587
|
+
- lib/proto/README.md
|
588
|
+
- lib/proto/Rakefile
|
589
|
+
- lib/proto/app.rb
|
590
|
+
- lib/proto/config.ru
|
591
|
+
- lib/proto/controller/init.rb
|
592
|
+
- lib/proto/controller/main.rb
|
593
|
+
- lib/proto/layout/default.xhtml
|
594
|
+
- lib/proto/public/css/grid.css
|
595
|
+
- lib/proto/public/css/layout.css
|
596
|
+
- lib/proto/public/css/reset.css
|
597
|
+
- lib/proto/public/css/text.css
|
598
|
+
- lib/proto/public/favicon.ico
|
599
|
+
- lib/proto/public/images/bg.png
|
600
|
+
- lib/proto/spec/helper.rb
|
601
|
+
- lib/proto/task/ramaze.rake
|
602
|
+
- lib/proto/view/index.xhtml
|
603
|
+
- lib/ramaze.rb
|
604
|
+
- lib/ramaze/app.rb
|
605
|
+
- lib/ramaze/bin/create.rb
|
606
|
+
- lib/ramaze/bin/runner.rb
|
607
|
+
- lib/ramaze/cache.rb
|
608
|
+
- lib/ramaze/cache/lru.rb
|
609
|
+
- lib/ramaze/cache/memcache.rb
|
610
|
+
- lib/ramaze/cache/moneta.rb
|
611
|
+
- lib/ramaze/cache/redis.rb
|
612
|
+
- lib/ramaze/cache/sequel.rb
|
613
|
+
- lib/ramaze/controller.rb
|
614
|
+
- lib/ramaze/controller/default.rb
|
615
|
+
- lib/ramaze/current.rb
|
616
|
+
- lib/ramaze/default_middleware.rb
|
617
|
+
- lib/ramaze/files.rb
|
618
|
+
- lib/ramaze/gestalt.rb
|
619
|
+
- lib/ramaze/helper.rb
|
620
|
+
- lib/ramaze/helper/auth.rb
|
621
|
+
- lib/ramaze/helper/bench.rb
|
622
|
+
- lib/ramaze/helper/blue_form.rb
|
623
|
+
- lib/ramaze/helper/cache.rb
|
624
|
+
- lib/ramaze/helper/csrf.rb
|
625
|
+
- lib/ramaze/helper/email.rb
|
626
|
+
- lib/ramaze/helper/erector.rb
|
627
|
+
- lib/ramaze/helper/flash.rb
|
628
|
+
- lib/ramaze/helper/formatting.rb
|
629
|
+
- lib/ramaze/helper/gestalt.rb
|
630
|
+
- lib/ramaze/helper/gravatar.rb
|
631
|
+
- lib/ramaze/helper/identity.rb
|
632
|
+
- lib/ramaze/helper/layout.rb
|
633
|
+
- lib/ramaze/helper/link.rb
|
634
|
+
- lib/ramaze/helper/localize.rb
|
635
|
+
- lib/ramaze/helper/markaby.rb
|
636
|
+
- lib/ramaze/helper/maruku.rb
|
637
|
+
- lib/ramaze/helper/paginate.rb
|
638
|
+
- lib/ramaze/helper/remarkably.rb
|
639
|
+
- lib/ramaze/helper/request_accessor.rb
|
640
|
+
- lib/ramaze/helper/send_file.rb
|
641
|
+
- lib/ramaze/helper/simple_captcha.rb
|
642
|
+
- lib/ramaze/helper/stack.rb
|
643
|
+
- lib/ramaze/helper/tagz.rb
|
644
|
+
- lib/ramaze/helper/thread.rb
|
645
|
+
- lib/ramaze/helper/upload.rb
|
646
|
+
- lib/ramaze/helper/user.rb
|
647
|
+
- lib/ramaze/helper/xhtml.rb
|
648
|
+
- lib/ramaze/log.rb
|
649
|
+
- lib/ramaze/log/hub.rb
|
650
|
+
- lib/ramaze/log/informer.rb
|
651
|
+
- lib/ramaze/log/logger.rb
|
652
|
+
- lib/ramaze/log/logging.rb
|
653
|
+
- lib/ramaze/log/rotatinginformer.rb
|
654
|
+
- lib/ramaze/log/syslog.rb
|
655
|
+
- lib/ramaze/reloader.rb
|
656
|
+
- lib/ramaze/reloader/watch_inotify.rb
|
657
|
+
- lib/ramaze/reloader/watch_stat.rb
|
658
|
+
- lib/ramaze/request.rb
|
659
|
+
- lib/ramaze/response.rb
|
660
|
+
- lib/ramaze/snippets.rb
|
661
|
+
- lib/ramaze/snippets/blankslate.rb
|
662
|
+
- lib/ramaze/snippets/object/__dir__.rb
|
663
|
+
- lib/ramaze/snippets/ramaze/deprecated.rb
|
664
|
+
- lib/ramaze/snippets/string/camel_case.rb
|
665
|
+
- lib/ramaze/snippets/string/color.rb
|
666
|
+
- lib/ramaze/snippets/string/esc.rb
|
667
|
+
- lib/ramaze/snippets/string/snake_case.rb
|
668
|
+
- lib/ramaze/snippets/string/unindent.rb
|
669
|
+
- lib/ramaze/spec/bacon.rb
|
670
|
+
- lib/ramaze/spec/helper/bacon.rb
|
671
|
+
- lib/ramaze/spec/helper/pretty_output.rb
|
672
|
+
- lib/ramaze/spec/helper/snippets.rb
|
673
|
+
- lib/ramaze/spec/helper/template_examples.rb
|
674
|
+
- lib/ramaze/version.rb
|
675
|
+
- lib/ramaze/view.rb
|
676
|
+
- lib/ramaze/view/erector.rb
|
677
|
+
- lib/ramaze/view/erubis.rb
|
678
|
+
- lib/ramaze/view/ezamar.rb
|
679
|
+
- lib/ramaze/view/gestalt.rb
|
680
|
+
- lib/ramaze/view/haml.rb
|
681
|
+
- lib/ramaze/view/liquid.rb
|
682
|
+
- lib/ramaze/view/lokar.rb
|
683
|
+
- lib/ramaze/view/mustache.rb
|
684
|
+
- lib/ramaze/view/nagoro.rb
|
685
|
+
- lib/ramaze/view/nagoro/render_partial.rb
|
686
|
+
- lib/ramaze/view/remarkably.rb
|
687
|
+
- lib/ramaze/view/sass.rb
|
688
|
+
- lib/ramaze/view/slim.rb
|
689
|
+
- lib/ramaze/view/slippers.rb
|
690
|
+
- lib/ramaze/view/tagz.rb
|
691
|
+
- lib/ramaze/view/tenjin.rb
|
692
|
+
- lib/vendor/route_exceptions.rb
|
693
|
+
- ramaze.gemspec
|
298
694
|
- spec/examples/caching.rb
|
299
695
|
- spec/examples/css.rb
|
300
696
|
- spec/examples/element.rb
|
301
697
|
- spec/examples/hello.rb
|
302
698
|
- spec/examples/linking.rb
|
699
|
+
- spec/examples/misc/sequel_scaffolding.rb
|
303
700
|
- spec/examples/simple.rb
|
304
|
-
- spec/examples/simple_auth.rb
|
305
|
-
- spec/examples/templates
|
306
|
-
- spec/examples/templates/template_amrita2.rb
|
307
701
|
- spec/examples/templates/template_erubis.rb
|
308
702
|
- spec/examples/templates/template_ezamar.rb
|
309
703
|
- spec/examples/templates/template_haml.rb
|
310
704
|
- spec/examples/templates/template_liquid.rb
|
311
705
|
- spec/examples/templates/template_markaby.rb
|
312
|
-
- spec/examples/templates/
|
706
|
+
- spec/examples/templates/template_mustache.rb
|
707
|
+
- spec/examples/templates/template_nagoro.rb
|
313
708
|
- spec/examples/templates/template_remarkably.rb
|
314
709
|
- spec/examples/templates/template_tenjin.rb
|
710
|
+
- spec/examples/todolist.rb
|
315
711
|
- spec/helper.rb
|
316
|
-
- spec/ramaze
|
317
|
-
- spec/ramaze/action
|
318
|
-
- spec/ramaze/action/basics.rb
|
319
|
-
- spec/ramaze/action/cache.rb
|
320
|
-
- spec/ramaze/action/layout.rb
|
321
712
|
- spec/ramaze/action/render.rb
|
322
|
-
- spec/ramaze/action/
|
323
|
-
- spec/ramaze/action/
|
324
|
-
- spec/ramaze/action/
|
325
|
-
- spec/ramaze/action/
|
326
|
-
- spec/ramaze/action/
|
327
|
-
- spec/ramaze/action/
|
328
|
-
- spec/ramaze/action/
|
329
|
-
- spec/ramaze/
|
330
|
-
- spec/ramaze/
|
331
|
-
- spec/ramaze/
|
332
|
-
- spec/ramaze/
|
333
|
-
- spec/ramaze/
|
334
|
-
- spec/ramaze/
|
335
|
-
- spec/ramaze/cache.rb
|
336
|
-
- spec/ramaze/
|
713
|
+
- spec/ramaze/action/view/bar.xhtml
|
714
|
+
- spec/ramaze/action/view/instancevars/layout.xhtml
|
715
|
+
- spec/ramaze/action/view/other_wrapper.erb
|
716
|
+
- spec/ramaze/action/view/other_wrapper.xhtml
|
717
|
+
- spec/ramaze/action/view/single_wrapper.xhtml
|
718
|
+
- spec/ramaze/action/view/sub/sub_wrapper.erb
|
719
|
+
- spec/ramaze/action/view/sub/sub_wrapper.xhtml
|
720
|
+
- spec/ramaze/app.rb
|
721
|
+
- spec/ramaze/app/location.rb
|
722
|
+
- spec/ramaze/bin/app/config.ru
|
723
|
+
- spec/ramaze/bin/create.rb
|
724
|
+
- spec/ramaze/bin/runner.rb
|
725
|
+
- spec/ramaze/cache/lru.rb
|
726
|
+
- spec/ramaze/cache/memcache.rb
|
727
|
+
- spec/ramaze/cache/moneta.rb
|
728
|
+
- spec/ramaze/cache/redis.rb
|
729
|
+
- spec/ramaze/cache/sequel.rb
|
337
730
|
- spec/ramaze/controller/actionless_templates.rb
|
731
|
+
- spec/ramaze/controller/lonely_mapping.rb
|
732
|
+
- spec/ramaze/controller/mapping.rb
|
733
|
+
- spec/ramaze/controller/provide_inheritance.rb
|
338
734
|
- spec/ramaze/controller/resolve.rb
|
339
735
|
- spec/ramaze/controller/subclass.rb
|
340
|
-
- spec/ramaze/controller/template
|
341
|
-
- spec/ramaze/controller/template/greet.xhtml
|
342
|
-
- spec/ramaze/controller/template/list.xhtml
|
343
|
-
- spec/ramaze/controller/template/other
|
344
|
-
- spec/ramaze/controller/template/other/greet
|
345
|
-
- spec/ramaze/controller/template/other/greet/other.xhtml
|
346
|
-
- spec/ramaze/controller/template/other_wrapper.xhtml
|
347
736
|
- spec/ramaze/controller/template_resolving.rb
|
348
|
-
- spec/ramaze/controller.
|
349
|
-
- spec/ramaze/
|
350
|
-
- spec/ramaze/
|
351
|
-
- spec/ramaze/
|
352
|
-
- spec/ramaze/
|
737
|
+
- spec/ramaze/controller/view/bar.xhtml
|
738
|
+
- spec/ramaze/controller/view/base/another.xhtml
|
739
|
+
- spec/ramaze/controller/view/greet.xhtml
|
740
|
+
- spec/ramaze/controller/view/list.xhtml
|
741
|
+
- spec/ramaze/controller/view/other/greet/other.xhtml
|
742
|
+
- spec/ramaze/controller/view/other_wrapper.xhtml
|
353
743
|
- spec/ramaze/dispatcher/directory.rb
|
354
744
|
- spec/ramaze/dispatcher/file.rb
|
355
|
-
- spec/ramaze/dispatcher/public
|
356
745
|
- spec/ramaze/dispatcher/public/favicon.ico
|
357
746
|
- spec/ramaze/dispatcher/public/file name.txt
|
358
747
|
- spec/ramaze/dispatcher/public/test_download.css
|
359
|
-
- spec/ramaze/dispatcher.rb
|
360
|
-
- spec/ramaze/element.rb
|
361
748
|
- spec/ramaze/error.rb
|
749
|
+
- spec/ramaze/files.rb
|
750
|
+
- spec/ramaze/files/public_1/plain.txt
|
751
|
+
- spec/ramaze/files/public_2/rich.txt
|
362
752
|
- spec/ramaze/gestalt.rb
|
363
|
-
- spec/ramaze/helper
|
364
|
-
- spec/ramaze/helper/aspect.rb
|
365
753
|
- spec/ramaze/helper/auth.rb
|
754
|
+
- spec/ramaze/helper/bench.rb
|
755
|
+
- spec/ramaze/helper/blue_form.rb
|
366
756
|
- spec/ramaze/helper/cache.rb
|
367
|
-
- spec/ramaze/helper/
|
368
|
-
- spec/ramaze/helper/
|
757
|
+
- spec/ramaze/helper/csrf.rb
|
758
|
+
- spec/ramaze/helper/email.rb
|
369
759
|
- spec/ramaze/helper/flash.rb
|
370
760
|
- spec/ramaze/helper/formatting.rb
|
761
|
+
- spec/ramaze/helper/gestalt.rb
|
762
|
+
- spec/ramaze/helper/gravatar.rb
|
763
|
+
- spec/ramaze/helper/layout.rb
|
764
|
+
- spec/ramaze/helper/layout/alternative.xhtml
|
765
|
+
- spec/ramaze/helper/layout/default.xhtml
|
371
766
|
- spec/ramaze/helper/link.rb
|
372
|
-
- spec/ramaze/helper/
|
373
|
-
- spec/ramaze/helper/
|
374
|
-
- spec/ramaze/helper/
|
767
|
+
- spec/ramaze/helper/localize.rb
|
768
|
+
- spec/ramaze/helper/maruku.rb
|
769
|
+
- spec/ramaze/helper/paginate.rb
|
770
|
+
- spec/ramaze/helper/request_accessor.rb
|
771
|
+
- spec/ramaze/helper/simple_captcha.rb
|
375
772
|
- spec/ramaze/helper/stack.rb
|
376
|
-
- spec/ramaze/helper/
|
377
|
-
- spec/ramaze/helper/
|
378
|
-
- spec/ramaze/helper/
|
379
|
-
- spec/ramaze/helper/template/num.xhtml
|
380
|
-
- spec/ramaze/helper/template/partial.xhtml
|
381
|
-
- spec/ramaze/helper/template/recursive.xhtml
|
382
|
-
- spec/ramaze/helper/template/recursive_local_ivars.xhtml
|
383
|
-
- spec/ramaze/helper/template/recursive_locals.xhtml
|
384
|
-
- spec/ramaze/helper/template/test_template.xhtml
|
773
|
+
- spec/ramaze/helper/upload.rb
|
774
|
+
- spec/ramaze/helper/uploads/text_1.txt
|
775
|
+
- spec/ramaze/helper/uploads/text_2.txt
|
385
776
|
- spec/ramaze/helper/user.rb
|
386
|
-
- spec/ramaze/
|
387
|
-
- spec/ramaze/
|
777
|
+
- spec/ramaze/helper/view/locals.xhtml
|
778
|
+
- spec/ramaze/helper/view/loop.xhtml
|
779
|
+
- spec/ramaze/helper/view/num.xhtml
|
780
|
+
- spec/ramaze/helper/view/partial.xhtml
|
781
|
+
- spec/ramaze/helper/view/recursive.xhtml
|
782
|
+
- spec/ramaze/helper/view/recursive_local_ivars.xhtml
|
783
|
+
- spec/ramaze/helper/view/recursive_locals.xhtml
|
784
|
+
- spec/ramaze/helper/view/test_template.xhtml
|
785
|
+
- spec/ramaze/helper/xhtml.rb
|
388
786
|
- spec/ramaze/log/informer.rb
|
787
|
+
- spec/ramaze/log/logging.rb
|
389
788
|
- spec/ramaze/log/syslog.rb
|
390
|
-
- spec/ramaze/morpher.rb
|
391
789
|
- spec/ramaze/params.rb
|
392
|
-
- spec/ramaze/public
|
393
|
-
- spec/ramaze/public/error404.xhtml
|
394
790
|
- spec/ramaze/public/favicon.ico
|
395
791
|
- spec/ramaze/public/ramaze.png
|
396
792
|
- spec/ramaze/public/test_download.css
|
397
|
-
- spec/ramaze/request
|
398
|
-
- spec/ramaze/request/mongrel.rb
|
399
|
-
- spec/ramaze/request/thin.rb
|
400
|
-
- spec/ramaze/request/webrick.rb
|
401
793
|
- spec/ramaze/request.rb
|
402
|
-
- spec/ramaze/
|
403
|
-
- spec/ramaze/session.rb
|
404
|
-
- spec/ramaze/
|
405
|
-
- spec/ramaze/
|
406
|
-
- spec/ramaze/
|
407
|
-
- spec/ramaze/template/amrita2
|
408
|
-
- spec/ramaze/template/amrita2/external.amrita
|
409
|
-
- spec/ramaze/template/amrita2/sum.amrita
|
410
|
-
- spec/ramaze/template/amrita2.rb
|
411
|
-
- spec/ramaze/template/builder
|
412
|
-
- spec/ramaze/template/builder/external.rxml
|
413
|
-
- spec/ramaze/template/builder.rb
|
414
|
-
- spec/ramaze/template/erubis
|
415
|
-
- spec/ramaze/template/erubis/sum.rhtml
|
416
|
-
- spec/ramaze/template/erubis.rb
|
417
|
-
- spec/ramaze/template/ezamar
|
418
|
-
- spec/ramaze/template/ezamar/another
|
419
|
-
- spec/ramaze/template/ezamar/another/long
|
420
|
-
- spec/ramaze/template/ezamar/another/long/action.zmr
|
421
|
-
- spec/ramaze/template/ezamar/combined.zmr
|
422
|
-
- spec/ramaze/template/ezamar/file_only.zmr
|
423
|
-
- spec/ramaze/template/ezamar/index.zmr
|
424
|
-
- spec/ramaze/template/ezamar/nested.zmr
|
425
|
-
- spec/ramaze/template/ezamar/other__index.xhtml
|
426
|
-
- spec/ramaze/template/ezamar/some__long__action.zmr
|
427
|
-
- spec/ramaze/template/ezamar/sum.zmr
|
428
|
-
- spec/ramaze/template/ezamar.rb
|
429
|
-
- spec/ramaze/template/haml
|
430
|
-
- spec/ramaze/template/haml/index.haml
|
431
|
-
- spec/ramaze/template/haml/locals.haml
|
432
|
-
- spec/ramaze/template/haml/with_vars.haml
|
433
|
-
- spec/ramaze/template/haml.rb
|
434
|
-
- spec/ramaze/template/liquid
|
435
|
-
- spec/ramaze/template/liquid/index.liquid
|
436
|
-
- spec/ramaze/template/liquid/products.liquid
|
437
|
-
- spec/ramaze/template/liquid.rb
|
438
|
-
- spec/ramaze/template/markaby
|
439
|
-
- spec/ramaze/template/markaby/external.mab
|
440
|
-
- spec/ramaze/template/markaby/sum.mab
|
441
|
-
- spec/ramaze/template/markaby.rb
|
442
|
-
- spec/ramaze/template/nagoro
|
443
|
-
- spec/ramaze/template/nagoro/another
|
444
|
-
- spec/ramaze/template/nagoro/another/long
|
445
|
-
- spec/ramaze/template/nagoro/another/long/action.nag
|
446
|
-
- spec/ramaze/template/nagoro/combined.nag
|
447
|
-
- spec/ramaze/template/nagoro/file_only.nag
|
448
|
-
- spec/ramaze/template/nagoro/index.nag
|
449
|
-
- spec/ramaze/template/nagoro/nested.nag
|
450
|
-
- spec/ramaze/template/nagoro/some__long__action.nag
|
451
|
-
- spec/ramaze/template/nagoro/sum.nag
|
452
|
-
- spec/ramaze/template/nagoro.rb
|
453
|
-
- spec/ramaze/template/ramaze
|
794
|
+
- spec/ramaze/rewrite/file.css
|
795
|
+
- spec/ramaze/session/lru.rb
|
796
|
+
- spec/ramaze/session/memcache.rb
|
797
|
+
- spec/ramaze/session/redis.rb
|
798
|
+
- spec/ramaze/session/sequel.rb
|
454
799
|
- spec/ramaze/template/ramaze/external.test
|
455
|
-
- spec/ramaze/
|
456
|
-
- spec/ramaze/
|
457
|
-
- spec/ramaze/
|
458
|
-
- spec/ramaze/
|
459
|
-
- spec/ramaze/
|
460
|
-
- spec/ramaze/
|
461
|
-
- spec/ramaze/
|
462
|
-
- spec/ramaze/
|
463
|
-
- spec/ramaze/
|
464
|
-
- spec/ramaze/
|
465
|
-
- spec/ramaze/
|
466
|
-
- spec/ramaze/
|
467
|
-
- spec/ramaze/
|
468
|
-
- spec/ramaze/
|
469
|
-
- spec/ramaze/
|
470
|
-
- spec/ramaze/
|
471
|
-
- spec/ramaze/
|
472
|
-
- spec/ramaze/
|
473
|
-
- spec/ramaze/
|
474
|
-
- spec/ramaze/
|
475
|
-
- spec/ramaze/
|
476
|
-
- spec/ramaze/
|
477
|
-
- spec/ramaze/
|
478
|
-
- spec/ramaze/
|
479
|
-
- spec/
|
480
|
-
- spec/
|
481
|
-
- spec/
|
482
|
-
- spec/
|
483
|
-
- spec/
|
484
|
-
- spec/
|
485
|
-
- spec/
|
486
|
-
- spec/
|
487
|
-
- spec/
|
488
|
-
- spec/
|
489
|
-
- spec/
|
490
|
-
- spec/
|
491
|
-
- spec/
|
492
|
-
- spec/
|
493
|
-
- spec/
|
800
|
+
- spec/ramaze/view.rb
|
801
|
+
- spec/ramaze/view/erector.rb
|
802
|
+
- spec/ramaze/view/erector/external_view.erector
|
803
|
+
- spec/ramaze/view/erector/index.erector
|
804
|
+
- spec/ramaze/view/erector/layout.erector
|
805
|
+
- spec/ramaze/view/erector/tables.erector
|
806
|
+
- spec/ramaze/view/erector/view.erector
|
807
|
+
- spec/ramaze/view/erubis.rb
|
808
|
+
- spec/ramaze/view/erubis/external.rhtml
|
809
|
+
- spec/ramaze/view/erubis/sum.rhtml
|
810
|
+
- spec/ramaze/view/ezamar.rb
|
811
|
+
- spec/ramaze/view/ezamar/external.zmr
|
812
|
+
- spec/ramaze/view/ezamar/sum.zmr
|
813
|
+
- spec/ramaze/view/gestalt.rb
|
814
|
+
- spec/ramaze/view/gestalt/external.ges
|
815
|
+
- spec/ramaze/view/haml.rb
|
816
|
+
- spec/ramaze/view/haml/external.haml
|
817
|
+
- spec/ramaze/view/haml/sum.haml
|
818
|
+
- spec/ramaze/view/liquid.rb
|
819
|
+
- spec/ramaze/view/liquid/external.liquid
|
820
|
+
- spec/ramaze/view/liquid/sum.liquid
|
821
|
+
- spec/ramaze/view/lokar.rb
|
822
|
+
- spec/ramaze/view/lokar/external.lok
|
823
|
+
- spec/ramaze/view/lokar/sum.lok
|
824
|
+
- spec/ramaze/view/mustache.rb
|
825
|
+
- spec/ramaze/view/mustache/external.mt
|
826
|
+
- spec/ramaze/view/mustache/sum.mt
|
827
|
+
- spec/ramaze/view/nagoro.rb
|
828
|
+
- spec/ramaze/view/nagoro/external.nag
|
829
|
+
- spec/ramaze/view/nagoro/sum.nag
|
830
|
+
- spec/ramaze/view/remarkably.rb
|
831
|
+
- spec/ramaze/view/remarkably/external.rem
|
832
|
+
- spec/ramaze/view/remarkably/sum.rem
|
833
|
+
- spec/ramaze/view/sass.rb
|
834
|
+
- spec/ramaze/view/sass/file.css.sass
|
835
|
+
- spec/ramaze/view/slim.rb
|
836
|
+
- spec/ramaze/view/slim/external.slim
|
837
|
+
- spec/ramaze/view/slim/external_vars.slim
|
838
|
+
- spec/ramaze/view/slippers.rb
|
839
|
+
- spec/ramaze/view/slippers/external.st
|
840
|
+
- spec/ramaze/view/slippers/sum.st
|
841
|
+
- spec/ramaze/view/tagz.rb
|
842
|
+
- spec/ramaze/view/tagz/external.tagz
|
843
|
+
- spec/ramaze/view/tagz/sum.tagz
|
844
|
+
- spec/ramaze/view/tenjin.rb
|
845
|
+
- spec/ramaze/view/tenjin/external.rbhtml
|
846
|
+
- spec/ramaze/view/tenjin/sum.rbhtml
|
847
|
+
- spec/snippets/object/__dir__.rb
|
848
|
+
- spec/snippets/ramaze/lru_hash.rb
|
494
849
|
- spec/snippets/string/camel_case.rb
|
495
850
|
- spec/snippets/string/color.rb
|
496
851
|
- spec/snippets/string/snake_case.rb
|
497
852
|
- spec/snippets/string/unindent.rb
|
498
|
-
-
|
499
|
-
-
|
500
|
-
-
|
501
|
-
-
|
502
|
-
-
|
503
|
-
-
|
504
|
-
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
- lib/proto/public/css/ramaze_error.css
|
512
|
-
- lib/proto/public/dispatch.fcgi
|
513
|
-
- lib/proto/public/favicon.ico
|
514
|
-
- lib/proto/public/js
|
515
|
-
- lib/proto/public/js/jquery.js
|
516
|
-
- lib/proto/public/ramaze.png
|
517
|
-
- lib/proto/spec
|
518
|
-
- lib/proto/spec/main.rb
|
519
|
-
- lib/proto/start.rb
|
520
|
-
- lib/proto/start.ru
|
521
|
-
- lib/proto/view
|
522
|
-
- lib/proto/view/error.xhtml
|
523
|
-
- lib/proto/view/index.xhtml
|
524
|
-
- lib/proto/view/page.xhtml
|
525
|
-
- lib/ramaze
|
526
|
-
- lib/ramaze/action
|
527
|
-
- lib/ramaze/action/render.rb
|
528
|
-
- lib/ramaze/action.rb
|
529
|
-
- lib/ramaze/adapter
|
530
|
-
- lib/ramaze/adapter/base.rb
|
531
|
-
- lib/ramaze/adapter/cgi.rb
|
532
|
-
- lib/ramaze/adapter/ebb.rb
|
533
|
-
- lib/ramaze/adapter/evented_mongrel.rb
|
534
|
-
- lib/ramaze/adapter/fcgi.rb
|
535
|
-
- lib/ramaze/adapter/lsws.rb
|
536
|
-
- lib/ramaze/adapter/mongrel.rb
|
537
|
-
- lib/ramaze/adapter/scgi.rb
|
538
|
-
- lib/ramaze/adapter/swiftiplied_mongrel.rb
|
539
|
-
- lib/ramaze/adapter/thin.rb
|
540
|
-
- lib/ramaze/adapter/webrick.rb
|
541
|
-
- lib/ramaze/adapter.rb
|
542
|
-
- lib/ramaze/cache
|
543
|
-
- lib/ramaze/cache/memcached.rb
|
544
|
-
- lib/ramaze/cache/memory.rb
|
545
|
-
- lib/ramaze/cache/yaml_store.rb
|
546
|
-
- lib/ramaze/cache.rb
|
547
|
-
- lib/ramaze/contrib
|
548
|
-
- lib/ramaze/contrib/auto_params
|
549
|
-
- lib/ramaze/contrib/auto_params/get_args.rb
|
550
|
-
- lib/ramaze/contrib/auto_params.rb
|
551
|
-
- lib/ramaze/contrib/email.rb
|
552
|
-
- lib/ramaze/contrib/facebook
|
553
|
-
- lib/ramaze/contrib/facebook/facebook.rb
|
554
|
-
- lib/ramaze/contrib/facebook.rb
|
555
|
-
- lib/ramaze/contrib/file_cache.rb
|
556
|
-
- lib/ramaze/contrib/gettext
|
557
|
-
- lib/ramaze/contrib/gettext/mo.rb
|
558
|
-
- lib/ramaze/contrib/gettext/parser.rb
|
559
|
-
- lib/ramaze/contrib/gettext/po.rb
|
560
|
-
- lib/ramaze/contrib/gettext.rb
|
561
|
-
- lib/ramaze/contrib/gzip_filter.rb
|
562
|
-
- lib/ramaze/contrib/profiling.rb
|
563
|
-
- lib/ramaze/contrib/route.rb
|
564
|
-
- lib/ramaze/contrib/sequel
|
565
|
-
- lib/ramaze/contrib/sequel/fill.rb
|
566
|
-
- lib/ramaze/contrib/sequel_cache.rb
|
567
|
-
- lib/ramaze/contrib.rb
|
568
|
-
- lib/ramaze/controller
|
569
|
-
- lib/ramaze/controller/error.rb
|
570
|
-
- lib/ramaze/controller/main.rb
|
571
|
-
- lib/ramaze/controller/resolve.rb
|
572
|
-
- lib/ramaze/controller.rb
|
573
|
-
- lib/ramaze/current
|
574
|
-
- lib/ramaze/current/request.rb
|
575
|
-
- lib/ramaze/current/response.rb
|
576
|
-
- lib/ramaze/current/session
|
577
|
-
- lib/ramaze/current/session/flash.rb
|
578
|
-
- lib/ramaze/current/session/hash.rb
|
579
|
-
- lib/ramaze/current/session.rb
|
580
|
-
- lib/ramaze/current.rb
|
581
|
-
- lib/ramaze/dispatcher
|
582
|
-
- lib/ramaze/dispatcher/action.rb
|
583
|
-
- lib/ramaze/dispatcher/directory.rb
|
584
|
-
- lib/ramaze/dispatcher/error.rb
|
585
|
-
- lib/ramaze/dispatcher/file.rb
|
586
|
-
- lib/ramaze/dispatcher.rb
|
587
|
-
- lib/ramaze/error.rb
|
588
|
-
- lib/ramaze/gestalt.rb
|
589
|
-
- lib/ramaze/global
|
590
|
-
- lib/ramaze/global/dsl.rb
|
591
|
-
- lib/ramaze/global/globalstruct.rb
|
592
|
-
- lib/ramaze/global.rb
|
593
|
-
- lib/ramaze/helper
|
594
|
-
- lib/ramaze/helper/aspect.rb
|
595
|
-
- lib/ramaze/helper/auth.rb
|
596
|
-
- lib/ramaze/helper/cache.rb
|
597
|
-
- lib/ramaze/helper/cgi.rb
|
598
|
-
- lib/ramaze/helper/flash.rb
|
599
|
-
- lib/ramaze/helper/formatting.rb
|
600
|
-
- lib/ramaze/helper/identity.rb
|
601
|
-
- lib/ramaze/helper/inform.rb
|
602
|
-
- lib/ramaze/helper/link.rb
|
603
|
-
- lib/ramaze/helper/markaby.rb
|
604
|
-
- lib/ramaze/helper/maruku.rb
|
605
|
-
- lib/ramaze/helper/nitroform.rb
|
606
|
-
- lib/ramaze/helper/pager.rb
|
607
|
-
- lib/ramaze/helper/partial.rb
|
608
|
-
- lib/ramaze/helper/redirect.rb
|
609
|
-
- lib/ramaze/helper/sendfile.rb
|
610
|
-
- lib/ramaze/helper/sequel.rb
|
611
|
-
- lib/ramaze/helper/stack.rb
|
612
|
-
- lib/ramaze/helper/tagz.rb
|
613
|
-
- lib/ramaze/helper/user.rb
|
614
|
-
- lib/ramaze/helper.rb
|
615
|
-
- lib/ramaze/inform.rb
|
616
|
-
- lib/ramaze/log
|
617
|
-
- lib/ramaze/log/analogger.rb
|
618
|
-
- lib/ramaze/log/growl.rb
|
619
|
-
- lib/ramaze/log/hub.rb
|
620
|
-
- lib/ramaze/log/informer.rb
|
621
|
-
- lib/ramaze/log/knotify.rb
|
622
|
-
- lib/ramaze/log/logger.rb
|
623
|
-
- lib/ramaze/log/logging.rb
|
624
|
-
- lib/ramaze/log/syslog.rb
|
625
|
-
- lib/ramaze/log/xosd.rb
|
626
|
-
- lib/ramaze/log.rb
|
627
|
-
- lib/ramaze/route.rb
|
628
|
-
- lib/ramaze/snippets
|
629
|
-
- lib/ramaze/snippets/array
|
630
|
-
- lib/ramaze/snippets/array/put_within.rb
|
631
|
-
- lib/ramaze/snippets/binding
|
632
|
-
- lib/ramaze/snippets/binding/locals.rb
|
633
|
-
- lib/ramaze/snippets/blankslate.rb
|
634
|
-
- lib/ramaze/snippets/dictionary.rb
|
635
|
-
- lib/ramaze/snippets/divide.rb
|
636
|
-
- lib/ramaze/snippets/kernel
|
637
|
-
- lib/ramaze/snippets/kernel/__dir__.rb
|
638
|
-
- lib/ramaze/snippets/kernel/acquire.rb
|
639
|
-
- lib/ramaze/snippets/kernel/aquire.rb
|
640
|
-
- lib/ramaze/snippets/kernel/constant.rb
|
641
|
-
- lib/ramaze/snippets/kernel/pretty_inspect.rb
|
642
|
-
- lib/ramaze/snippets/metaid.rb
|
643
|
-
- lib/ramaze/snippets/numeric
|
644
|
-
- lib/ramaze/snippets/numeric/filesize_format.rb
|
645
|
-
- lib/ramaze/snippets/object
|
646
|
-
- lib/ramaze/snippets/object/pretty.rb
|
647
|
-
- lib/ramaze/snippets/object/scope.rb
|
648
|
-
- lib/ramaze/snippets/object/thread_accessor.rb
|
649
|
-
- lib/ramaze/snippets/object/traits.rb
|
650
|
-
- lib/ramaze/snippets/ordered_set.rb
|
651
|
-
- lib/ramaze/snippets/proc
|
652
|
-
- lib/ramaze/snippets/proc/locals.rb
|
653
|
-
- lib/ramaze/snippets/ramaze
|
654
|
-
- lib/ramaze/snippets/ramaze/caller_info.rb
|
655
|
-
- lib/ramaze/snippets/ramaze/caller_lines.rb
|
656
|
-
- lib/ramaze/snippets/ramaze/thread_accessor.rb
|
657
|
-
- lib/ramaze/snippets/string
|
658
|
-
- lib/ramaze/snippets/string/camel_case.rb
|
659
|
-
- lib/ramaze/snippets/string/color.rb
|
660
|
-
- lib/ramaze/snippets/string/each.rb
|
661
|
-
- lib/ramaze/snippets/string/esc.rb
|
662
|
-
- lib/ramaze/snippets/string/ord.rb
|
663
|
-
- lib/ramaze/snippets/string/snake_case.rb
|
664
|
-
- lib/ramaze/snippets/string/start_with.rb
|
665
|
-
- lib/ramaze/snippets/string/unindent.rb
|
666
|
-
- lib/ramaze/snippets/struct
|
667
|
-
- lib/ramaze/snippets/struct/fill.rb
|
668
|
-
- lib/ramaze/snippets/struct/values_at.rb
|
669
|
-
- lib/ramaze/snippets/symbol
|
670
|
-
- lib/ramaze/snippets/symbol/to_proc.rb
|
671
|
-
- lib/ramaze/snippets/thread
|
672
|
-
- lib/ramaze/snippets/thread/into.rb
|
673
|
-
- lib/ramaze/snippets.rb
|
674
|
-
- lib/ramaze/sourcereload.rb
|
675
|
-
- lib/ramaze/spec
|
676
|
-
- lib/ramaze/spec/helper
|
677
|
-
- lib/ramaze/spec/helper/bacon.rb
|
678
|
-
- lib/ramaze/spec/helper/browser.rb
|
679
|
-
- lib/ramaze/spec/helper/mock_http.rb
|
680
|
-
- lib/ramaze/spec/helper/pretty_output.rb
|
681
|
-
- lib/ramaze/spec/helper/requester.rb
|
682
|
-
- lib/ramaze/spec/helper/simple_http.rb
|
683
|
-
- lib/ramaze/spec/helper/snippets.rb
|
684
|
-
- lib/ramaze/spec/helper.rb
|
685
|
-
- lib/ramaze/spec.rb
|
686
|
-
- lib/ramaze/store
|
687
|
-
- lib/ramaze/store/default.rb
|
688
|
-
- lib/ramaze/template
|
689
|
-
- lib/ramaze/template/amrita2.rb
|
690
|
-
- lib/ramaze/template/builder.rb
|
691
|
-
- lib/ramaze/template/erubis.rb
|
692
|
-
- lib/ramaze/template/ezamar
|
693
|
-
- lib/ramaze/template/ezamar/element.rb
|
694
|
-
- lib/ramaze/template/ezamar/engine.rb
|
695
|
-
- lib/ramaze/template/ezamar/morpher.rb
|
696
|
-
- lib/ramaze/template/ezamar/render_partial.rb
|
697
|
-
- lib/ramaze/template/ezamar.rb
|
698
|
-
- lib/ramaze/template/haml.rb
|
699
|
-
- lib/ramaze/template/liquid.rb
|
700
|
-
- lib/ramaze/template/markaby.rb
|
701
|
-
- lib/ramaze/template/nagoro.rb
|
702
|
-
- lib/ramaze/template/none.rb
|
703
|
-
- lib/ramaze/template/redcloth.rb
|
704
|
-
- lib/ramaze/template/remarkably.rb
|
705
|
-
- lib/ramaze/template/sass.rb
|
706
|
-
- lib/ramaze/template/tagz.rb
|
707
|
-
- lib/ramaze/template/tenjin.rb
|
708
|
-
- lib/ramaze/template/xslt.rb
|
709
|
-
- lib/ramaze/template.rb
|
710
|
-
- lib/ramaze/tool
|
711
|
-
- lib/ramaze/tool/create.rb
|
712
|
-
- lib/ramaze/tool/localize.rb
|
713
|
-
- lib/ramaze/tool/mime.rb
|
714
|
-
- lib/ramaze/tool/mime_types.yaml
|
715
|
-
- lib/ramaze/tool/record.rb
|
716
|
-
- lib/ramaze/tool.rb
|
717
|
-
- lib/ramaze/trinity.rb
|
718
|
-
- lib/ramaze/version.rb
|
719
|
-
- lib/ramaze.rb
|
720
|
-
- lib/vendor
|
721
|
-
- lib/vendor/bacon.rb
|
722
|
-
- rake_tasks/conf.rake
|
723
|
-
- rake_tasks/coverage.rake
|
724
|
-
- rake_tasks/darcs.rake
|
725
|
-
- rake_tasks/gem.rake
|
726
|
-
- rake_tasks/maintenance.rake
|
727
|
-
- rake_tasks/spec.rake
|
728
|
-
has_rdoc: true
|
729
|
-
homepage: http://ramaze.rubyforge.org
|
730
|
-
post_install_message: |-
|
731
|
-
============================================================
|
732
|
-
|
733
|
-
Thank you for installing Ramaze!
|
734
|
-
You can now do following:
|
735
|
-
|
736
|
-
* Create a new project using the `ramaze' command:
|
737
|
-
ramaze --create yourproject
|
738
|
-
|
739
|
-
============================================================
|
740
|
-
rdoc_options:
|
741
|
-
- --all
|
742
|
-
- --quiet
|
743
|
-
- --op
|
744
|
-
- rdoc
|
745
|
-
- --line-numbers
|
746
|
-
- --inline-source
|
747
|
-
- --main
|
748
|
-
- doc/README
|
749
|
-
- --opname
|
750
|
-
- index.html
|
751
|
-
- --title
|
752
|
-
- "\"Ramaze documentation\""
|
753
|
-
- --exclude
|
754
|
-
- "\"^(_darcs|spec|examples|bin|pkg)/\""
|
755
|
-
- --exclude
|
756
|
-
- "\"lib/proto\""
|
757
|
-
- --include
|
758
|
-
- "\"doc\""
|
759
|
-
- --accessor
|
760
|
-
- "\"trait\""
|
761
|
-
require_paths:
|
853
|
+
- tasks/authors.rake
|
854
|
+
- tasks/bacon.rake
|
855
|
+
- tasks/changelog.rake
|
856
|
+
- tasks/gems.rake
|
857
|
+
- tasks/release.rake
|
858
|
+
- tasks/todo.rake
|
859
|
+
- tasks/yard.rake
|
860
|
+
homepage: http://ramaze.net/
|
861
|
+
licenses: []
|
862
|
+
metadata: {}
|
863
|
+
post_install_message:
|
864
|
+
rdoc_options: []
|
865
|
+
require_paths:
|
762
866
|
- lib
|
763
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
764
|
-
requirements:
|
867
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
868
|
+
requirements:
|
765
869
|
- - ">="
|
766
|
-
- !ruby/object:Gem::Version
|
767
|
-
version:
|
768
|
-
|
769
|
-
|
770
|
-
requirements:
|
870
|
+
- !ruby/object:Gem::Version
|
871
|
+
version: '0'
|
872
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
873
|
+
requirements:
|
771
874
|
- - ">="
|
772
|
-
- !ruby/object:Gem::Version
|
773
|
-
version:
|
774
|
-
version:
|
875
|
+
- !ruby/object:Gem::Version
|
876
|
+
version: 1.3.5
|
775
877
|
requirements: []
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
signing_key:
|
780
|
-
specification_version: 2
|
878
|
+
rubygems_version: 3.3.20
|
879
|
+
signing_key:
|
880
|
+
specification_version: 4
|
781
881
|
summary: Ramaze is a simple and modular web framework
|
782
882
|
test_files: []
|
783
|
-
|