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
data/spec/ramaze/helper/cache.rb
CHANGED
@@ -1,37 +1,31 @@
|
|
1
|
-
# Copyright (c)
|
2
|
-
# All files in this distribution are subject to the terms of the
|
1
|
+
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the MIT license.
|
3
3
|
|
4
|
-
require 'spec/helper'
|
5
|
-
|
6
|
-
class TCCacheHelperController < Ramaze::Controller
|
7
|
-
map :/
|
4
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
8
5
|
|
6
|
+
class SpecHelperCache < Ramaze::Controller
|
7
|
+
map '/'
|
9
8
|
helper :cache
|
10
|
-
cache :cached_action
|
11
9
|
|
12
|
-
|
13
|
-
|
14
|
-
|
10
|
+
cache_action(:method => :cached_action)
|
11
|
+
cache_action(:method => :with_params)
|
12
|
+
cache_action(:method => :with_type)
|
15
13
|
|
16
14
|
def cached_value
|
17
|
-
|
15
|
+
cache_value[:time] ||= random
|
18
16
|
end
|
19
17
|
|
20
|
-
def
|
21
|
-
|
22
|
-
end
|
23
|
-
|
24
|
-
def uncache_values
|
25
|
-
value_cache.delete :time
|
26
|
-
cache.delete :rand
|
18
|
+
def cached_action
|
19
|
+
random.to_s
|
27
20
|
end
|
28
21
|
|
29
|
-
def
|
30
|
-
random
|
22
|
+
def with_params(foo, bar)
|
23
|
+
"foo: #{foo}, bar: #{bar}, random: #{random}"
|
31
24
|
end
|
32
25
|
|
33
|
-
def
|
34
|
-
|
26
|
+
def with_type
|
27
|
+
response['Content-Type'] = 'text/plain'
|
28
|
+
random.to_s
|
35
29
|
end
|
36
30
|
|
37
31
|
private
|
@@ -41,103 +35,90 @@ class TCCacheHelperController < Ramaze::Controller
|
|
41
35
|
end
|
42
36
|
end
|
43
37
|
|
44
|
-
class
|
38
|
+
class SpecHelperCacheTTL < Ramaze::Controller
|
45
39
|
map '/ttl'
|
46
|
-
|
47
40
|
helper :cache
|
48
|
-
|
49
|
-
|
50
|
-
def cached_list
|
51
|
-
actions_cached.inspect
|
52
|
-
end
|
41
|
+
cache_action(:method => :index, :ttl => 1)
|
53
42
|
|
54
43
|
def index
|
55
|
-
rand
|
44
|
+
rand.to_s
|
56
45
|
end
|
57
46
|
end
|
58
47
|
|
59
|
-
class
|
48
|
+
class SpecHelperCacheKey < Ramaze::Controller
|
60
49
|
map '/key'
|
61
|
-
|
62
50
|
helper :cache
|
63
|
-
|
64
|
-
|
65
|
-
def cached_list
|
66
|
-
actions_cached.inspect
|
67
|
-
end
|
51
|
+
cache_action(:method => :index){ request[:name] }
|
68
52
|
|
69
|
-
def
|
53
|
+
def index
|
70
54
|
"hi #{request['name']} #{rand}"
|
71
55
|
end
|
72
56
|
end
|
73
57
|
|
74
|
-
|
75
|
-
|
58
|
+
describe Ramaze::Helper::Cache do
|
59
|
+
behaves_like :rack_test
|
76
60
|
|
77
|
-
|
78
|
-
|
61
|
+
it 'caches actions' do
|
62
|
+
got = get('/cached_action')
|
63
|
+
got.status.should == 200
|
64
|
+
got['Content-Type'].should == 'text/html'
|
65
|
+
got.body.should.not.be.empty
|
79
66
|
|
80
|
-
|
81
|
-
rand
|
82
|
-
end
|
67
|
+
cached_body = got.body
|
83
68
|
|
84
|
-
|
85
|
-
|
69
|
+
got = get('/cached_action')
|
70
|
+
got.status.should == 200
|
71
|
+
got['Content-Type'].should == 'text/html'
|
72
|
+
got.body.should == cached_body
|
86
73
|
end
|
87
|
-
end
|
88
74
|
|
89
|
-
|
90
|
-
|
91
|
-
|
75
|
+
it 'caches values' do
|
76
|
+
got = get('/cached_value')
|
77
|
+
got.status.should == 200
|
78
|
+
got['Content-Type'].should == 'text/html'
|
79
|
+
got.body.should.not.be.empty
|
92
80
|
|
93
|
-
|
81
|
+
cached_body = got.body
|
94
82
|
|
95
|
-
|
96
|
-
|
83
|
+
got = get('/cached_value')
|
84
|
+
got.status.should == 200
|
85
|
+
got['Content-Type'].should == 'text/html'
|
86
|
+
got.body.should == cached_body
|
97
87
|
end
|
98
88
|
|
99
|
-
it
|
100
|
-
|
101
|
-
lambda{
|
102
|
-
end
|
103
|
-
|
104
|
-
3.times do
|
105
|
-
lambda{ req('/uncache_values') }.should.change{ req('/cached_value') }
|
89
|
+
it 'caches actions with params' do
|
90
|
+
2.times do
|
91
|
+
lambda{ get('/with_params/foo/bar').body }.should.not.change{ get('/with_params/foo/bar').body }
|
106
92
|
end
|
107
93
|
|
108
|
-
|
94
|
+
get('/with_params/foo/bar').body.should.not == get('/with_params/baz/quux').body
|
109
95
|
end
|
110
96
|
|
111
|
-
it
|
112
|
-
|
113
|
-
lambda{
|
97
|
+
it 'preserves the Content-Type' do
|
98
|
+
2.times do
|
99
|
+
lambda{ get('/with_type').body }.should.not.change{ get('/with_type').body }
|
114
100
|
end
|
115
101
|
|
116
|
-
|
117
|
-
lambda{ req('/uncache_actions') }.should.change{ req('/cached_action') }
|
118
|
-
end
|
102
|
+
get('/with_type')['Content-Type'].should == 'text/plain'
|
119
103
|
end
|
120
104
|
|
121
|
-
it
|
122
|
-
|
123
|
-
|
124
|
-
|
105
|
+
it 'caches actions with ttl' do
|
106
|
+
2.times do
|
107
|
+
lambda{ get('/ttl').body }.should.not.change{ get('/ttl').body }
|
108
|
+
end
|
125
109
|
|
126
|
-
|
127
|
-
orig_value = req('/ttl')
|
128
|
-
req('/ttl').should == orig_value
|
129
|
-
sleep 1
|
130
|
-
req('/ttl').should.not == orig_value
|
110
|
+
lambda{ sleep 1.5; get('/ttl').body }.should.change{ get('/ttl').body }
|
131
111
|
end
|
132
112
|
|
133
|
-
it
|
134
|
-
|
135
|
-
|
113
|
+
it 'caches actions with block keys' do
|
114
|
+
2.times do
|
115
|
+
lambda{ get('/key?name=foo').body }.should.not.change{ get('/key?name=foo').body }
|
116
|
+
end
|
117
|
+
|
118
|
+
get('/key?name=foo').body.should.not == get('/key?name=bar').body
|
136
119
|
end
|
137
120
|
|
138
|
-
it
|
139
|
-
|
140
|
-
lambda{ req('/old/action/two/three') }.should.not.change{ req('/old/action/one/two') }
|
141
|
-
req('/old/action/two/three').should =~ /^twothree/
|
121
|
+
it 'caches actions on a per-controller basis' do
|
122
|
+
get('/ttl').body.should.not == get('/key').body
|
142
123
|
end
|
143
124
|
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
2
|
+
require 'ramaze/helper/csrf'
|
3
|
+
|
4
|
+
class SpecHelperCSRF < Ramaze::Controller
|
5
|
+
|
6
|
+
engine :none
|
7
|
+
helper :csrf
|
8
|
+
|
9
|
+
before_all do
|
10
|
+
csrf_protection :check_post, :protect_me do
|
11
|
+
respond("The specified CSRF token is incorrect.", 401)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def index
|
16
|
+
generate_csrf_token
|
17
|
+
end
|
18
|
+
|
19
|
+
def get
|
20
|
+
return get_csrf_token
|
21
|
+
end
|
22
|
+
|
23
|
+
def check_post
|
24
|
+
"POST allowed."
|
25
|
+
end
|
26
|
+
|
27
|
+
def get_token
|
28
|
+
get_csrf_token
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
describe Ramaze::Helper::CSRF do
|
33
|
+
behaves_like :rack_test
|
34
|
+
|
35
|
+
it 'generate a new csrf token' do
|
36
|
+
got = get '/'
|
37
|
+
|
38
|
+
got.status.should.equal 200
|
39
|
+
got.body.should.equal ''
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'retrieve the current CSRF token' do
|
43
|
+
got = get '/get'
|
44
|
+
|
45
|
+
got.status.should.equal 200
|
46
|
+
got.body.length.should.equal 128
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'validate all HTTP requests' do
|
50
|
+
methods = [:get, :post, :put, :delete]
|
51
|
+
|
52
|
+
methods.each do |method|
|
53
|
+
token = get('/get_token').body
|
54
|
+
got_invalid = self.send(method, '/check_post', :name => "Yorick Peterse")
|
55
|
+
got_valid = self.send(method, '/check_post', :csrf_token => token)
|
56
|
+
|
57
|
+
got_invalid.status.should.equal 401
|
58
|
+
got_invalid.body.should.equal "The specified CSRF token is incorrect."
|
59
|
+
|
60
|
+
got_valid.status.should.equal 200
|
61
|
+
got_valid.body.should.equal "POST allowed."
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
2
|
+
require 'ramaze/helper/email'
|
3
|
+
|
4
|
+
include Ramaze::Helper::Email
|
5
|
+
|
6
|
+
# Modify Net::SMTP so it doesn't actually send the Emails
|
7
|
+
class Net::SMTP
|
8
|
+
MockData = {
|
9
|
+
:email => nil,
|
10
|
+
:sender => nil,
|
11
|
+
:receivers => [],
|
12
|
+
:helo => nil,
|
13
|
+
:user => nil,
|
14
|
+
:secret => nil,
|
15
|
+
:auth_type => nil
|
16
|
+
}
|
17
|
+
|
18
|
+
def start(helo = 'localhost', user = nil, secret = nil, auth_type = nil)
|
19
|
+
MockData[:helo], MockData[:user], MockData[:secret], MockData[:auth_type] = helo, \
|
20
|
+
user, secret, auth_type
|
21
|
+
|
22
|
+
if block_given?
|
23
|
+
return yield(self)
|
24
|
+
else
|
25
|
+
return self
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# Rather than sending the Email we'll store them in a variable
|
30
|
+
def send_message(email, sender, *to_addrs)
|
31
|
+
MockData[:email], MockData[:sender], MockData[:receivers] = email, sender, to_addrs
|
32
|
+
end
|
33
|
+
end # Net::SMTP
|
34
|
+
|
35
|
+
describe Ramaze::Helper::Email do
|
36
|
+
|
37
|
+
it('The options should be available') do
|
38
|
+
Ramaze::Helper::Email.options.host.should.equal ''
|
39
|
+
Ramaze::Helper::Email.options.auth_type.should.equal :login
|
40
|
+
end
|
41
|
+
|
42
|
+
it('The options should be editable') do
|
43
|
+
Ramaze::Helper::Email.options.host = 'smtp.awesome.tld'
|
44
|
+
Ramaze::Helper::Email.options.host.should.equal 'smtp.awesome.tld'
|
45
|
+
end
|
46
|
+
|
47
|
+
it('Send an Email') do
|
48
|
+
Ramaze::Helper::Email.options.host = 'smtp_host'
|
49
|
+
Ramaze::Helper::Email.options.username = 'smtp_user'
|
50
|
+
Ramaze::Helper::Email.options.password = 'smtp_pass'
|
51
|
+
Ramaze::Helper::Email.options.sender = 'email@domain.tld'
|
52
|
+
|
53
|
+
send_email('email@domain.tld', 'simple', 'This is a simple email')
|
54
|
+
|
55
|
+
Net::SMTP::MockData[:helo].should.empty
|
56
|
+
Net::SMTP::MockData[:sender].should.equal 'email@domain.tld'
|
57
|
+
Net::SMTP::MockData[:user].should.equal 'smtp_user'
|
58
|
+
Net::SMTP::MockData[:secret].should.equal 'smtp_pass'
|
59
|
+
Net::SMTP::MockData[:auth_type].should.equal :login
|
60
|
+
|
61
|
+
# Right, time to validate the actual Email itself
|
62
|
+
[
|
63
|
+
/From: email@domain\.tld/, /To: <email@domain\.tld>/, /Subject: simple/, /\r\n/
|
64
|
+
].each do |regex|
|
65
|
+
Net::SMTP::MockData[:email].should.match regex
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
data/spec/ramaze/helper/flash.rb
CHANGED
@@ -1,120 +1,41 @@
|
|
1
|
-
# Copyright (c)
|
2
|
-
# All files in this distribution are subject to the terms of the
|
1
|
+
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the MIT license.
|
3
3
|
|
4
|
-
require 'spec/helper'
|
4
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
5
5
|
|
6
|
-
class
|
7
|
-
map
|
6
|
+
class SpecHelperFlash < Ramaze::Controller
|
7
|
+
map '/'
|
8
8
|
helper :flash
|
9
|
-
|
10
|
-
def index
|
11
|
-
self.class.name
|
12
|
-
end
|
13
|
-
|
14
|
-
def first_here
|
15
|
-
flash[:first] = 'hey'
|
16
|
-
end
|
17
|
-
|
18
|
-
def then_here
|
19
|
-
flash[:first].to_s
|
20
|
-
end
|
21
|
-
|
22
|
-
def set(*hash)
|
23
|
-
Hash[*hash].each do |key, value|
|
24
|
-
flash[key] = value
|
25
|
-
end
|
26
|
-
hash.inspect
|
27
|
-
end
|
9
|
+
trait :flashbox => "%key : %value"
|
28
10
|
|
29
11
|
def box
|
30
12
|
flashbox
|
31
13
|
end
|
32
|
-
end
|
33
|
-
|
34
|
-
class TCFlashHelperSecondController < Ramaze::Controller
|
35
|
-
map '/second'
|
36
|
-
helper :flash
|
37
|
-
|
38
|
-
def index
|
39
|
-
self.class.name
|
40
|
-
end
|
41
14
|
|
42
|
-
def
|
43
|
-
flash[:
|
15
|
+
def populate_one
|
16
|
+
flash[:one] = 'for starters'
|
44
17
|
end
|
45
18
|
|
46
|
-
def
|
47
|
-
flash[:
|
48
|
-
|
49
|
-
end
|
50
|
-
|
51
|
-
class TCFlashHelperThirdController < Ramaze::Controller
|
52
|
-
map '/third'
|
53
|
-
helper :flash
|
54
|
-
|
55
|
-
def index
|
56
|
-
end
|
57
|
-
|
58
|
-
def noop
|
59
|
-
'noop'
|
60
|
-
end
|
61
|
-
|
62
|
-
def set par
|
63
|
-
flash[:e] = par
|
64
|
-
end
|
65
|
-
|
66
|
-
def retrieve
|
67
|
-
flash[:e]
|
19
|
+
def populate_two
|
20
|
+
flash[:one] = 'this one'
|
21
|
+
flash[:two] = 'and this'
|
68
22
|
end
|
69
23
|
end
|
70
24
|
|
71
25
|
describe Ramaze::Helper::Flash do
|
72
|
-
behaves_like
|
73
|
-
ramaze :adapter => :webrick
|
26
|
+
behaves_like :rack_test
|
74
27
|
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
get('/first_here')
|
81
|
-
get('/then_here').should == 'hey'
|
82
|
-
get('/then_here').should.be.empty
|
83
|
-
end
|
28
|
+
it 'displays a flashbox with one item' do
|
29
|
+
get('/populate_one')
|
30
|
+
get('/box')
|
31
|
+
last_response.status.should == 200
|
32
|
+
last_response.body.should == 'one : for starters'
|
84
33
|
end
|
85
34
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
get('/second/then_here').should.be.empty
|
92
|
-
get('/second/first_here')
|
93
|
-
get('/then_here').should == 'hey'
|
94
|
-
get('/second/then_here').should.be.empty
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
should "set and retrieve custom value" do
|
99
|
-
Browser.new do
|
100
|
-
get('/third/set/foo').should == 'foo'
|
101
|
-
get('/third/retrieve').should == 'foo'
|
102
|
-
2.times{ get('/third/retrieve').should.be.empty }
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
should "show a flashbox" do
|
107
|
-
Browser.new do
|
108
|
-
error_div = "<div class='flash' id='flash_error'>stuff failed</div>"
|
109
|
-
success_div = "<div class='flash' id='flash_success'>other things worked</div>"
|
110
|
-
|
111
|
-
get('/set/error/stuff%20failed')
|
112
|
-
get('/box').should == error_div
|
113
|
-
|
114
|
-
get('/set/error/stuff%20failed/success/other%20things%20worked')
|
115
|
-
get('/box').should == [error_div, success_div].join("\n")
|
116
|
-
|
117
|
-
get('/box').should.be.empty
|
118
|
-
end
|
35
|
+
it 'displays a flashbox with two items' do
|
36
|
+
get('/populate_two')
|
37
|
+
get('/box')
|
38
|
+
last_response.status.should == 200
|
39
|
+
last_response.body.split("\n").sort.should == ['one : this one', 'two : and this']
|
119
40
|
end
|
120
41
|
end
|
@@ -1,10 +1,43 @@
|
|
1
|
-
|
1
|
+
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the MIT license.
|
3
|
+
|
4
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
2
5
|
require 'ramaze/helper/formatting'
|
3
6
|
|
4
7
|
describe 'Helper::Formatting' do
|
5
8
|
extend Ramaze::Helper::Formatting
|
6
9
|
|
7
|
-
|
10
|
+
describe '#number_counter' do
|
11
|
+
extend Ramaze::Helper::Formatting
|
12
|
+
|
13
|
+
it 'gives a correct plural counter' do
|
14
|
+
number_counter(0, 'comment').should == 'no comments'
|
15
|
+
number_counter(1, 'comment').should == 'one comment'
|
16
|
+
number_counter(2, 'comment').should == 'two comments'
|
17
|
+
number_counter(3, 'comment').should == 'three comments'
|
18
|
+
number_counter(4, 'comment').should == 'four comments'
|
19
|
+
number_counter(5, 'comment').should == 'five comments'
|
20
|
+
number_counter(6, 'comment').should == 'six comments'
|
21
|
+
number_counter(7, 'comment').should == 'seven comments'
|
22
|
+
number_counter(8, 'comment').should == 'eight comments'
|
23
|
+
number_counter(9, 'comment').should == 'nine comments'
|
24
|
+
number_counter(10, 'comment').should == 'ten comments'
|
25
|
+
number_counter(11, 'comment').should == '11 comments'
|
26
|
+
number_counter(12, 'comment').should == '12 comments'
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'uses +items+ as plural version' do
|
30
|
+
number_counter(0, 'pants', 'pants').should == 'no pants'
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'tries using the pluralize method on +item+ if no +items+ given' do
|
34
|
+
item = 'person'
|
35
|
+
def item.pluralize; 'people'; end
|
36
|
+
number_counter(0, item).should == 'no people'
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'formats numbers' do
|
8
41
|
number_format(2_123_456).should == '2,123,456'
|
9
42
|
number_format(1234.567).should == '1,234.567'
|
10
43
|
number_format(123456.789, '.').should == '123.456,789'
|
@@ -12,9 +45,70 @@ describe 'Helper::Formatting' do
|
|
12
45
|
number_format(132123456.789123, '.').should == '132.123.456,789123'
|
13
46
|
end
|
14
47
|
|
15
|
-
it '
|
16
|
-
time_diff(Time.now-
|
17
|
-
|
18
|
-
|
48
|
+
it 'returns difference in time as a string' do
|
49
|
+
check = lambda{|diff, string| time_diff(Time.now - diff).should == string }
|
50
|
+
|
51
|
+
check[1, 'less than a minute']
|
52
|
+
check[60, '1 minute']
|
53
|
+
check[60 * 50, 'about 1 hour']
|
54
|
+
check[60 * 120, 'about 2 hours']
|
55
|
+
check[60 * 60 * 24, '1 day']
|
56
|
+
check[60 * 60 * 48, '2 days']
|
57
|
+
check[60 * 60 * 24 * 30, 'about 1 month']
|
58
|
+
check[60 * 60 * 24 * 60, '2 months']
|
59
|
+
check[60 * 60 * 24 * 30 * 20, 'about 1 year']
|
60
|
+
check[60 * 60 * 24 * 30 * 42, 'over 3 years']
|
61
|
+
|
62
|
+
time_diff(Time.now, Time.now + 4, true).should == 'less than 5 seconds'
|
63
|
+
time_diff(Time.now, Time.now + 6, true).should == 'less than 10 seconds'
|
64
|
+
time_diff(Time.now, Time.now + 29, true).should == 'half a minute'
|
65
|
+
time_diff(Time.now, Time.now + 50, true).should == 'less than a minute'
|
66
|
+
time_diff(Time.now, Time.now + 66, true).should == '1 minute'
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'linkifies urls' do
|
70
|
+
auto_link("http://ramaze.net is the coolest framework, but <a href='http://merbivore.com'>merb</a> is good too").should ==
|
71
|
+
"<a href=\"http://ramaze.net\">http://ramaze.net</a> is the coolest framework, but <a href='http://merbivore.com'>merb</a> is good too"
|
72
|
+
|
73
|
+
auto_link("http://ramaze.net", :target => '_blank').should ==
|
74
|
+
"<a href=\"http://ramaze.net\" target='_blank'>http://ramaze.net</a>"
|
75
|
+
end
|
76
|
+
|
77
|
+
it 'auto_links urls, setting the result of the given block as the link text' do
|
78
|
+
auto_link('http://ramaze.net rocks, so does http://rubyonrails.org.') { |url| url.sub!(%r{http://}, '') }.should ==
|
79
|
+
'<a href="http://ramaze.net">ramaze.net</a> rocks, so does <a href="http://rubyonrails.org">rubyonrails.org</a>.'
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'ordinalizes numbers' do
|
83
|
+
ordinal(1).should == '1st'
|
84
|
+
ordinal(2).should == '2nd'
|
85
|
+
ordinal(3).should == '3rd'
|
86
|
+
ordinal(4).should == '4th'
|
87
|
+
ordinal(10).should == '10th'
|
88
|
+
ordinal(12).should == '12th'
|
89
|
+
ordinal(21).should == '21st'
|
90
|
+
ordinal(23).should == '23rd'
|
91
|
+
ordinal(100).should == '100th'
|
92
|
+
ordinal(133).should == '133rd'
|
93
|
+
end
|
94
|
+
|
95
|
+
it 'generates tagclouds' do
|
96
|
+
tags = %w[ruby ruby code ramaze]
|
97
|
+
tagcloud(tags).should ==
|
98
|
+
{"code"=>0.75, "ramaze"=>0.75, "ruby"=>1.0}
|
99
|
+
tagcloud(tags, 0.5, 2.0).should ==
|
100
|
+
{"code"=>0.875, "ramaze"=>0.875, "ruby"=>1.25}
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'converts newlines to br tags' do
|
104
|
+
nl2br("foo\nbar\nfoobar").should == 'foo<br />bar<br />foobar'
|
105
|
+
nl2br("foo\nbar\nfoobar", false).should == 'foo<br>bar<br>foobar'
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'obfuscates email addresses' do
|
109
|
+
obfuscate_email('foo@example.com').
|
110
|
+
should == "<a href=\"mailto:foo@example.com\">foo@example.com</a>"
|
111
|
+
obfuscate_email('foo@example.com', 'mail foo').
|
112
|
+
should == "<a href=\"mailto:foo@example.com\">mail foo</a>"
|
19
113
|
end
|
20
114
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the MIT license.
|
3
|
+
|
4
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
5
|
+
require 'ramaze/helper/gestalt'
|
6
|
+
|
7
|
+
describe Ramaze::Helper::Gestalt do
|
8
|
+
extend Ramaze::Helper::Gestalt
|
9
|
+
|
10
|
+
it 'has a shortcut for Ramaze::Gestalt::new' do
|
11
|
+
gestalt{ h1('title') }.to_s.should ==
|
12
|
+
Ramaze::Gestalt.new{ h1('title') }.to_s
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'has a shortcut for Ramaze::Gestalt::build' do
|
16
|
+
build{ h1('title') }.should == '<h1>title</h1>'
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the MIT license.
|
3
|
+
|
4
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
5
|
+
require 'ramaze/helper/gravatar'
|
6
|
+
|
7
|
+
describe Ramaze::Helper::Gravatar do
|
8
|
+
extend Ramaze::Helper::Gravatar
|
9
|
+
|
10
|
+
@email = 'ramaze-spec-gravatar@manveru.oib.com'
|
11
|
+
@digest = Digest::MD5.hexdigest(@email)
|
12
|
+
|
13
|
+
def uri(*tail)
|
14
|
+
URI("http://www.gravatar.com/avatar/#{@digest}#{tail.join}")
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'takes an email and turns it into a hashed part of the uri' do
|
18
|
+
gravatar(@email).should == uri
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'takes :size option' do
|
22
|
+
gravatar(@email, :size => 100).should == uri('?size=100')
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'takes :rating option' do
|
26
|
+
gravatar(@email, :rating => 'g').should == uri('?rating=g')
|
27
|
+
gravatar(@email, :rating => 'pg').should == uri('?rating=pg')
|
28
|
+
gravatar(@email, :rating => 'r').should == uri('?rating=r')
|
29
|
+
gravatar(@email, :rating => 'x').should == uri('?rating=x')
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'takes :default option' do
|
33
|
+
gravatar(@email, :default => :identicon).should == uri('?default=identicon')
|
34
|
+
gravatar(@email, :default => :monsterid).should == uri('?default=monsterid')
|
35
|
+
gravatar(@email, :default => :wavatar).should == uri('?default=wavatar')
|
36
|
+
gravatar(@email, :default => 'http://example.com/me.jpg').should == uri('?default=http%3A%2F%2Fexample.com%2Fme.jpg')
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'takes :force option' do
|
40
|
+
gravatar(@email, :force => true).should == uri('?force=1')
|
41
|
+
gravatar(@email, :force => false).should == uri('')
|
42
|
+
end
|
43
|
+
end
|