ramaze 2009.07 → 2009.10
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/MANIFEST +12 -0
- data/Rakefile +12 -3
- data/doc/AUTHORS +5 -2
- data/doc/CHANGELOG +118 -0
- data/doc/meta/announcement.txt +2 -0
- data/examples/app/auth/start.rb +2 -0
- data/lib/ramaze/helper/erector.rb +58 -0
- data/lib/ramaze/helper/identity.rb +1 -1
- data/lib/ramaze/helper/paginate.rb +27 -1
- data/lib/ramaze/log.rb +9 -22
- data/lib/ramaze/log/informer.rb +1 -1
- data/lib/ramaze/request.rb +1 -1
- data/lib/ramaze/snippets.rb +4 -4
- data/lib/ramaze/spec/bacon.rb +1 -7
- data/lib/ramaze/version.rb +1 -1
- data/lib/ramaze/view.rb +2 -0
- data/lib/ramaze/view/erector.rb +26 -0
- data/lib/ramaze/view/haml.rb +7 -1
- data/lib/ramaze/view/slippers.rb +22 -0
- data/ramaze.gemspec +40 -13
- data/spec/ramaze/view/erector.rb +90 -0
- data/spec/ramaze/view/erector/external.erector +1 -0
- data/spec/ramaze/view/erector/invoke_helper_method.erector +1 -0
- data/spec/ramaze/view/erector/layout.erector +3 -0
- data/spec/ramaze/view/erector/strict_xhtml.erector +3 -0
- data/spec/ramaze/view/erector/sum.erector +1 -0
- data/spec/ramaze/view/slippers.rb +49 -0
- data/spec/ramaze/view/slippers/external.st +8 -0
- data/spec/ramaze/view/slippers/sum.st +1 -0
- data/tasks/release.rake +32 -20
- metadata +111 -9
data/lib/ramaze/snippets.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
|
2
2
|
# All files in this distribution are subject to the terms of the Ruby license.
|
3
3
|
|
4
|
-
|
5
|
-
glob = File.join(dir, '**', '*.rb')
|
4
|
+
require 'find'
|
6
5
|
|
7
|
-
|
8
|
-
|
6
|
+
|
7
|
+
Find.find(File.expand_path('../snippets', __FILE__)) do |file|
|
8
|
+
require(file) if file =~ /\.rb$/ && File.file?(file)
|
9
9
|
end
|
10
10
|
|
11
11
|
Ramaze::CoreExtensions.constants.each do |const|
|
data/lib/ramaze/spec/bacon.rb
CHANGED
@@ -26,14 +26,8 @@ shared :webrat do
|
|
26
26
|
|
27
27
|
require 'webrat'
|
28
28
|
|
29
|
-
Webrat.configure{|config| config.mode = :
|
29
|
+
Webrat.configure{|config| config.mode = :rack }
|
30
30
|
|
31
31
|
extend Webrat::Methods
|
32
32
|
extend Webrat::Matchers
|
33
33
|
end
|
34
|
-
|
35
|
-
# Backwards compatibility
|
36
|
-
shared(:mock){
|
37
|
-
Ramaze.deprecated('behaves_like(:mock)', 'behaves_like(:rack_test)')
|
38
|
-
behaves_like :rack_test
|
39
|
-
}
|
data/lib/ramaze/version.rb
CHANGED
data/lib/ramaze/view.rb
CHANGED
@@ -22,6 +22,7 @@ module Ramaze
|
|
22
22
|
# Engines provided by Innate are:
|
23
23
|
# ERB, Etanni, None
|
24
24
|
|
25
|
+
auto_register :Erector, :erector
|
25
26
|
auto_register :Erubis, :erubis, :rhtml
|
26
27
|
auto_register :Ezamar, :zmr
|
27
28
|
auto_register :Gestalt, :ges
|
@@ -35,5 +36,6 @@ module Ramaze
|
|
35
36
|
auto_register :Sass, :sass
|
36
37
|
auto_register :Tagz, :rb, :tagz
|
37
38
|
auto_register :Tenjin, :rbhtml, :tenjin
|
39
|
+
auto_register :Slippers, :st
|
38
40
|
end
|
39
41
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'erector'
|
2
|
+
|
3
|
+
module Ramaze
|
4
|
+
module View
|
5
|
+
module Erector
|
6
|
+
def self.call(action, string)
|
7
|
+
return string, 'text/html' unless action.view
|
8
|
+
|
9
|
+
markup = <<-EOS
|
10
|
+
_controller = self
|
11
|
+
html = ::Erector.inline do
|
12
|
+
# copy instance variables into Erector context
|
13
|
+
_controller.instance_variables.each do |v|
|
14
|
+
instance_variable_set(v, _controller.instance_variable_get(v))
|
15
|
+
end
|
16
|
+
#{string}
|
17
|
+
end.to_s
|
18
|
+
EOS
|
19
|
+
|
20
|
+
html = action.instance.instance_eval(markup)
|
21
|
+
|
22
|
+
return html, 'text/html'
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
data/lib/ramaze/view/haml.rb
CHANGED
@@ -5,8 +5,14 @@ module Ramaze
|
|
5
5
|
module View
|
6
6
|
module Haml
|
7
7
|
def self.call(action, string)
|
8
|
+
options = action.options
|
9
|
+
|
10
|
+
if haml_options = action.instance.ancestral_trait[:haml_options]
|
11
|
+
options = options.merge(haml_options)
|
12
|
+
end
|
13
|
+
|
8
14
|
action.options[:filename] = (action.view || '(haml)')
|
9
|
-
haml = View.compile(string){|s| ::Haml::Engine.new(s,
|
15
|
+
haml = View.compile(string){|s| ::Haml::Engine.new(s, options) }
|
10
16
|
html = haml.to_html(action.instance, action.variables)
|
11
17
|
|
12
18
|
return html, 'text/html'
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'slippers'
|
2
|
+
|
3
|
+
module Ramaze
|
4
|
+
module View
|
5
|
+
module Slippers
|
6
|
+
def self.call(action, string)
|
7
|
+
slippers = View.compile(string){|s| ::Slippers::Engine.new(s, :template_group => template_group(action)) }
|
8
|
+
object_to_render = ::Slippers::BindingWrapper.new(action.instance.binding)
|
9
|
+
html = slippers.render(object_to_render)
|
10
|
+
return html, 'text/html'
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
def self.template_group(action)
|
15
|
+
subtemplates = action.instance.ancestral_trait[:slippers_options] || {}
|
16
|
+
views = action.instance.options[:views].map{|view| "#{action.instance.options[:roots]}/#{view}" }
|
17
|
+
super_group = ::Slippers::TemplateGroup.new(:templates => subtemplates)
|
18
|
+
::Slippers::TemplateGroupDirectory.new(views, :super_group => super_group)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/ramaze.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{ramaze}
|
5
|
-
s.version = "2009.
|
5
|
+
s.version = "2009.10"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.3.1") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Michael 'manveru' Fellinger"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-10-03}
|
10
10
|
s.default_executable = %q{ramaze}
|
11
11
|
s.description = %q{Ramaze is a simple and modular web framework}
|
12
12
|
s.email = %q{m.fellinger@gmail.com}
|
13
13
|
s.executables = ["ramaze"]
|
14
|
-
s.files = [".gitignore", ".mailmap", "MANIFEST", "README.md", "Rakefile", "benchmark/bench_templates/bench.rb", "benchmark/bench_templates/view/large.erb", "benchmark/bench_templates/view/large.haml", "benchmark/bench_templates/view/large.xhtml", "benchmark/bench_templates/view/small.erb", "benchmark/bench_templates/view/small.haml", "benchmark/bench_templates/view/small.xhtml", "benchmark/results.txt", "benchmark/run.rb", "benchmark/suite/minimal.rb", "benchmark/suite/no_informer.rb", "benchmark/suite/no_sessions.rb", "benchmark/suite/no_template.rb", "benchmark/suite/simple.rb", "benchmark/suite/template_erubis.rb", "benchmark/suite/template_etanni.rb", "benchmark/suite/template_ezamar.rb", "benchmark/suite/template_haml.rb", "benchmark/suite/template_liquid.rb", "benchmark/suite/template_markaby.rb", "benchmark/suite/template_nagoro.rb", "benchmark/suite/template_redcloth.rb", "benchmark/suite/template_tenjin.rb", "benchmark/test.rb", "bin/ramaze", "doc/AUTHORS", "doc/CHANGELOG", "doc/COPYING", "doc/FAQ", "doc/GPL", "doc/INSTALL", "doc/LEGAL", "doc/TODO", "doc/meta/announcement.txt", "doc/meta/configuration.txt", "doc/meta/internals.txt", "doc/meta/users.kml", "doc/tutorial/todolist.html", "doc/tutorial/todolist.txt", "examples/app/auth/layout/auth.xhtml", "examples/app/auth/start.rb", "examples/app/auth/view/index.xhtml", "examples/app/auth/view/login.xhtml", "examples/app/auth/view/secret.xhtml", "examples/app/blog/README", "examples/app/blog/app.rb", "examples/app/blog/config.ru", "examples/app/blog/controller/comment.rb", "examples/app/blog/controller/entry.rb", "examples/app/blog/controller/init.rb", "examples/app/blog/controller/main.rb", "examples/app/blog/controller/tag.rb", "examples/app/blog/layout/default.nag", "examples/app/blog/model/comment.rb", "examples/app/blog/model/entry.rb", "examples/app/blog/model/init.rb", "examples/app/blog/model/tag.rb", "examples/app/blog/public/css/screen.css", "examples/app/blog/spec/blog.rb", "examples/app/blog/start.rb", "examples/app/blog/view/comment/form.nag", "examples/app/blog/view/comment/show.nag", "examples/app/blog/view/entry/edit.nag", "examples/app/blog/view/entry/feed.atom.nag", "examples/app/blog/view/entry/feed.rss.nag", "examples/app/blog/view/entry/index.nag", "examples/app/blog/view/entry/new.nag", "examples/app/blog/view/entry/show.nag", "examples/app/blog/view/feed.atom.nag", "examples/app/blog/view/feed.rss.nag", "examples/app/blog/view/index.nag", "examples/app/blog/view/tag/index.nag", "examples/app/chat/layout/default.xhtml", "examples/app/chat/model/history.rb", "examples/app/chat/model/message.rb", "examples/app/chat/public/css/chat.css", "examples/app/chat/public/js/chat.js", "examples/app/chat/public/js/jquery.js", "examples/app/chat/start.rb", "examples/app/chat/view/chat.xhtml", "examples/app/chat/view/index.xhtml", "examples/app/localization/locale/de.yaml", "examples/app/localization/locale/en.yaml", "examples/app/localization/locale/ja.yaml", "examples/app/localization/start.rb", "examples/app/sourceview/public/coderay.css", "examples/app/sourceview/public/images/file.gif", "examples/app/sourceview/public/images/folder.gif", "examples/app/sourceview/public/images/tv-collapsable-last.gif", "examples/app/sourceview/public/images/tv-collapsable.gif", "examples/app/sourceview/public/images/tv-expandable-last.gif", "examples/app/sourceview/public/images/tv-expandable.gif", "examples/app/sourceview/public/images/tv-item-last.gif", "examples/app/sourceview/public/images/tv-item.gif", "examples/app/sourceview/public/jquery.js", "examples/app/sourceview/public/jquery.treeview.css", "examples/app/sourceview/public/jquery.treeview.js", "examples/app/sourceview/public/sourceview.js", "examples/app/sourceview/start.rb", "examples/app/sourceview/view/index.haml", "examples/app/todolist/controller/init.rb", "examples/app/todolist/controller/task.rb", "examples/app/todolist/layout/default.xhtml", "examples/app/todolist/model/init.rb", "examples/app/todolist/model/task.rb", "examples/app/todolist/public/css/screen.css", "examples/app/todolist/public/favicon.ico", "examples/app/todolist/start.rb", "examples/app/todolist/view/index.xhtml", "examples/app/upload/start.rb", "examples/app/upload/view/index.xhtml", "examples/app/whywiki/spec/whywiki.rb", "examples/app/whywiki/start.rb", "examples/app/whywiki/template/edit.xhtml", "examples/app/whywiki/template/show.xhtml", "examples/app/wikore/spec/wikore.rb", "examples/app/wikore/src/controller.rb", "examples/app/wikore/src/model.rb", "examples/app/wikore/start.rb", "examples/app/wikore/view/index.xhtml", "examples/app/wiktacular/README", "examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd", "examples/app/wiktacular/mkd/link/current.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd", "examples/app/wiktacular/mkd/main/current.mkd", "examples/app/wiktacular/mkd/markdown/current.mkd", "examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd", "examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd", "examples/app/wiktacular/mkd/testing/current.mkd", "examples/app/wiktacular/public/favicon.ico", "examples/app/wiktacular/public/screen.css", "examples/app/wiktacular/spec/wiktacular.rb", "examples/app/wiktacular/src/controller.rb", "examples/app/wiktacular/src/model.rb", "examples/app/wiktacular/start.rb", "examples/app/wiktacular/template/edit.xhtml", "examples/app/wiktacular/template/html_layout.xhtml", "examples/app/wiktacular/template/index.xhtml", "examples/app/wiktacular/template/new.xhtml", "examples/basic/element.rb", "examples/basic/gestalt.rb", "examples/basic/hello.rb", "examples/basic/layout.rb", "examples/basic/linking.rb", "examples/basic/partial.rb", "examples/basic/simple.rb", "examples/helpers/cache.rb", "examples/helpers/form_with_sequel.rb", "examples/helpers/httpdigest.rb", "examples/helpers/identity.rb", "examples/helpers/nitro_form.rb", "examples/helpers/paginate.rb", "examples/helpers/rest.rb", "examples/helpers/simple_captcha.rb", "examples/misc/css.rb", "examples/misc/facebook.rb", "examples/misc/memleak_detector.rb", "examples/misc/nagoro_element.rb", "examples/misc/ramaise.rb", "examples/misc/rapp.rb", "examples/misc/sequel_scaffolding.rb", "examples/misc/serve_directory.rb", "examples/templates/template_erubis.rb", "examples/templates/template_ezamar.rb", "examples/templates/template_haml.rb", "examples/templates/template_liquid.rb", "examples/templates/template_markaby.rb", "examples/templates/template_nagoro.rb", "examples/templates/template_redcloth.rb", "examples/templates/template_remarkably.rb", "examples/templates/template_tenjin.rb", "examples/templates/view/external.haml", "examples/templates/view/external.liquid", "examples/templates/view/external.mab", "examples/templates/view/external.nag", "examples/templates/view/external.redcloth", "examples/templates/view/external.rem", "examples/templates/view/external.rhtml", "examples/templates/view/external.tenjin", "examples/templates/view/external.zmr", "lib/proto/app.rb", "lib/proto/config.ru", "lib/proto/controller/init.rb", "lib/proto/controller/main.rb", "lib/proto/layout/default.xhtml", "lib/proto/model/init.rb", "lib/proto/public/.htaccess", "lib/proto/public/css/screen.css", "lib/proto/public/dispatch.fcgi", "lib/proto/public/favicon.ico", "lib/proto/public/js/jquery.js", "lib/proto/public/ramaze.png", "lib/proto/spec/main.rb", "lib/proto/start.rb", "lib/proto/view/index.xhtml", "lib/ramaze.rb", "lib/ramaze/app.rb", "lib/ramaze/cache.rb", "lib/ramaze/cache/localmemcache.rb", "lib/ramaze/cache/lru.rb", "lib/ramaze/cache/memcache.rb", "lib/ramaze/cache/sequel.rb", "lib/ramaze/contrib/addressable_route.rb", "lib/ramaze/contrib/app_graph.rb", "lib/ramaze/contrib/email.rb", "lib/ramaze/contrib/facebook.rb", "lib/ramaze/contrib/facebook/facebook.rb", "lib/ramaze/contrib/gettext.rb", "lib/ramaze/contrib/gettext/mo.rb", "lib/ramaze/contrib/gettext/parser.rb", "lib/ramaze/contrib/gettext/po.rb", "lib/ramaze/contrib/gzip_filter.rb", "lib/ramaze/contrib/maruku_uv.rb", "lib/ramaze/contrib/profiling.rb", "lib/ramaze/contrib/rest.rb", "lib/ramaze/contrib/sequel/create_join.rb", "lib/ramaze/contrib/sequel/form_field.rb", "lib/ramaze/contrib/sequel/image.rb", "lib/ramaze/contrib/sequel/relation.rb", "lib/ramaze/controller.rb", "lib/ramaze/controller/default.rb", "lib/ramaze/current.rb", "lib/ramaze/files.rb", "lib/ramaze/gestalt.rb", "lib/ramaze/helper.rb", "lib/ramaze/helper/auth.rb", "lib/ramaze/helper/bench.rb", "lib/ramaze/helper/blue_form.rb", "lib/ramaze/helper/cache.rb", "lib/ramaze/helper/disqus.rb", "lib/ramaze/helper/flash.rb", "lib/ramaze/helper/form.rb", "lib/ramaze/helper/formatting.rb", "lib/ramaze/helper/gestalt.rb", "lib/ramaze/helper/gravatar.rb", "lib/ramaze/helper/httpdigest.rb", "lib/ramaze/helper/identity.rb", "lib/ramaze/helper/layout.rb", "lib/ramaze/helper/link.rb", "lib/ramaze/helper/localize.rb", "lib/ramaze/helper/markaby.rb", "lib/ramaze/helper/maruku.rb", "lib/ramaze/helper/nitroform.rb", "lib/ramaze/helper/pager.rb", "lib/ramaze/helper/paginate.rb", "lib/ramaze/helper/partial.rb", "lib/ramaze/helper/remarkably.rb", "lib/ramaze/helper/request_accessor.rb", "lib/ramaze/helper/sequel.rb", "lib/ramaze/helper/sequel_form.rb", "lib/ramaze/helper/simple_captcha.rb", "lib/ramaze/helper/stack.rb", "lib/ramaze/helper/tagz.rb", "lib/ramaze/helper/thread.rb", "lib/ramaze/helper/ultraviolet.rb", "lib/ramaze/helper/user.rb", "lib/ramaze/helper/xhtml.rb", "lib/ramaze/log.rb", "lib/ramaze/log/analogger.rb", "lib/ramaze/log/growl.rb", "lib/ramaze/log/hub.rb", "lib/ramaze/log/informer.rb", "lib/ramaze/log/knotify.rb", "lib/ramaze/log/logger.rb", "lib/ramaze/log/logging.rb", "lib/ramaze/log/rotatinginformer.rb", "lib/ramaze/log/syslog.rb", "lib/ramaze/log/xosd.rb", "lib/ramaze/middleware_compiler.rb", "lib/ramaze/plugin.rb", "lib/ramaze/reloader.rb", "lib/ramaze/reloader/watch_inotify.rb", "lib/ramaze/reloader/watch_stat.rb", "lib/ramaze/request.rb", "lib/ramaze/response.rb", "lib/ramaze/setup.rb", "lib/ramaze/snippets.rb", "lib/ramaze/snippets/array/put_within.rb", "lib/ramaze/snippets/binding/locals.rb", "lib/ramaze/snippets/blankslate.rb", "lib/ramaze/snippets/fiber.rb", "lib/ramaze/snippets/kernel/pretty_inspect.rb", "lib/ramaze/snippets/metaid.rb", "lib/ramaze/snippets/numeric/filesize_format.rb", "lib/ramaze/snippets/numeric/time.rb", "lib/ramaze/snippets/object/__dir__.rb", "lib/ramaze/snippets/object/instance_variable_defined.rb", "lib/ramaze/snippets/object/pretty.rb", "lib/ramaze/snippets/object/scope.rb", "lib/ramaze/snippets/ordered_set.rb", "lib/ramaze/snippets/proc/locals.rb", "lib/ramaze/snippets/ramaze/acquire.rb", "lib/ramaze/snippets/ramaze/deprecated.rb", "lib/ramaze/snippets/ramaze/dictionary.rb", "lib/ramaze/snippets/ramaze/fiber.rb", "lib/ramaze/snippets/ramaze/lru_hash.rb", "lib/ramaze/snippets/ramaze/struct.rb", "lib/ramaze/snippets/string/camel_case.rb", "lib/ramaze/snippets/string/color.rb", "lib/ramaze/snippets/string/end_with.rb", "lib/ramaze/snippets/string/esc.rb", "lib/ramaze/snippets/string/ord.rb", "lib/ramaze/snippets/string/snake_case.rb", "lib/ramaze/snippets/string/start_with.rb", "lib/ramaze/snippets/string/unindent.rb", "lib/ramaze/snippets/thread/into.rb", "lib/ramaze/spec.rb", "lib/ramaze/spec/bacon.rb", "lib/ramaze/spec/helper/bacon.rb", "lib/ramaze/spec/helper/pretty_output.rb", "lib/ramaze/spec/helper/snippets.rb", "lib/ramaze/spec/helper/template_examples.rb", "lib/ramaze/tool/bin.rb", "lib/ramaze/tool/create.rb", "lib/ramaze/tool/project_creator.rb", "lib/ramaze/version.rb", "lib/ramaze/view.rb", "lib/ramaze/view/erubis.rb", "lib/ramaze/view/ezamar.rb", "lib/ramaze/view/gestalt.rb", "lib/ramaze/view/haml.rb", "lib/ramaze/view/less.rb", "lib/ramaze/view/liquid.rb", "lib/ramaze/view/maruku.rb", "lib/ramaze/view/nagoro.rb", "lib/ramaze/view/nagoro/render_partial.rb", "lib/ramaze/view/redcloth.rb", "lib/ramaze/view/remarkably.rb", "lib/ramaze/view/sass.rb", "lib/ramaze/view/tagz.rb", "lib/ramaze/view/tenjin.rb", "lib/vendor/etag.rb", "lib/vendor/route_exceptions.rb", "ramaze.gemspec", "spec/contrib/addressable_route.rb", "spec/contrib/rest.rb", "spec/examples/caching.rb", "spec/examples/css.rb", "spec/examples/element.rb", "spec/examples/hello.rb", "spec/examples/helpers/httpdigest.rb", "spec/examples/linking.rb", "spec/examples/simple.rb", "spec/examples/templates/template_erubis.rb", "spec/examples/templates/template_ezamar.rb", "spec/examples/templates/template_haml.rb", "spec/examples/templates/template_liquid.rb", "spec/examples/templates/template_markaby.rb", "spec/examples/templates/template_nagoro.rb", "spec/examples/templates/template_redcloth.rb", "spec/examples/templates/template_remarkably.rb", "spec/examples/templates/template_tenjin.rb", "spec/helper.rb", "spec/ramaze/action/render.rb", "spec/ramaze/action/view/bar.xhtml", "spec/ramaze/action/view/instancevars/layout.xhtml", "spec/ramaze/action/view/other_wrapper.erb", "spec/ramaze/action/view/other_wrapper.xhtml", "spec/ramaze/action/view/single_wrapper.xhtml", "spec/ramaze/action/view/sub/sub_wrapper.erb", "spec/ramaze/action/view/sub/sub_wrapper.xhtml", "spec/ramaze/app.rb", "spec/ramaze/app/location.rb", "spec/ramaze/bin/ramaze.rb", "spec/ramaze/cache/localmemcache.rb", "spec/ramaze/cache/lru.rb", "spec/ramaze/cache/memcache.rb", "spec/ramaze/cache/sequel.rb", "spec/ramaze/controller/actionless_templates.rb", "spec/ramaze/controller/lonely_mapping.rb", "spec/ramaze/controller/mapping.rb", "spec/ramaze/controller/provide_inheritance.rb", "spec/ramaze/controller/resolve.rb", "spec/ramaze/controller/subclass.rb", "spec/ramaze/controller/template_resolving.rb", "spec/ramaze/controller/view/bar.xhtml", "spec/ramaze/controller/view/base/another.xhtml", "spec/ramaze/controller/view/greet.xhtml", "spec/ramaze/controller/view/list.xhtml", "spec/ramaze/controller/view/other/greet/other.xhtml", "spec/ramaze/controller/view/other_wrapper.xhtml", "spec/ramaze/dispatcher/directory.rb", "spec/ramaze/dispatcher/file.rb", "spec/ramaze/dispatcher/public/favicon.ico", "spec/ramaze/dispatcher/public/file name.txt", "spec/ramaze/dispatcher/public/test_download.css", "spec/ramaze/error.rb", "spec/ramaze/files.rb", "spec/ramaze/files/public_1/plain.txt", "spec/ramaze/files/public_2/rich.txt", "spec/ramaze/gestalt.rb", "spec/ramaze/helper/auth.rb", "spec/ramaze/helper/bench.rb", "spec/ramaze/helper/blue_form.rb", "spec/ramaze/helper/cache.rb", "spec/ramaze/helper/flash.rb", "spec/ramaze/helper/form.rb", "spec/ramaze/helper/formatting.rb", "spec/ramaze/helper/gestalt.rb", "spec/ramaze/helper/gravatar.rb", "spec/ramaze/helper/httpdigest.rb", "spec/ramaze/helper/layout.rb", "spec/ramaze/helper/layout/default.xhtml", "spec/ramaze/helper/link.rb", "spec/ramaze/helper/localize.rb", "spec/ramaze/helper/maruku.rb", "spec/ramaze/helper/pager.rb", "spec/ramaze/helper/paginate.rb", "spec/ramaze/helper/request_accessor.rb", "spec/ramaze/helper/sequel_form.rb", "spec/ramaze/helper/simple_captcha.rb", "spec/ramaze/helper/stack.rb", "spec/ramaze/helper/user.rb", "spec/ramaze/helper/view/locals.xhtml", "spec/ramaze/helper/view/loop.xhtml", "spec/ramaze/helper/view/num.xhtml", "spec/ramaze/helper/view/partial.xhtml", "spec/ramaze/helper/view/recursive.xhtml", "spec/ramaze/helper/view/recursive_local_ivars.xhtml", "spec/ramaze/helper/view/recursive_locals.xhtml", "spec/ramaze/helper/view/test_template.xhtml", "spec/ramaze/helper/xhtml.rb", "spec/ramaze/log/informer.rb", "spec/ramaze/log/logging.rb", "spec/ramaze/log/syslog.rb", "spec/ramaze/params.rb", "spec/ramaze/public/favicon.ico", "spec/ramaze/public/ramaze.png", "spec/ramaze/public/test_download.css", "spec/ramaze/request.rb", "spec/ramaze/rewrite/file.css", "spec/ramaze/session/memcache.rb", "spec/ramaze/struct.rb", "spec/ramaze/template/ramaze/external.test", "spec/ramaze/view.rb", "spec/ramaze/view/erubis.rb", "spec/ramaze/view/erubis/external.rhtml", "spec/ramaze/view/erubis/sum.rhtml", "spec/ramaze/view/ezamar.rb", "spec/ramaze/view/ezamar/external.zmr", "spec/ramaze/view/ezamar/sum.zmr", "spec/ramaze/view/gestalt.rb", "spec/ramaze/view/gestalt/external.ges", "spec/ramaze/view/haml.rb", "spec/ramaze/view/haml/external.haml", "spec/ramaze/view/haml/sum.haml", "spec/ramaze/view/less.rb", "spec/ramaze/view/less/file.css.less", "spec/ramaze/view/liquid.rb", "spec/ramaze/view/liquid/external.liquid", "spec/ramaze/view/liquid/sum.liquid", "spec/ramaze/view/nagoro.rb", "spec/ramaze/view/nagoro/external.nag", "spec/ramaze/view/nagoro/sum.nag", "spec/ramaze/view/redcloth.rb", "spec/ramaze/view/redcloth/external.redcloth", "spec/ramaze/view/remarkably.rb", "spec/ramaze/view/remarkably/external.rem", "spec/ramaze/view/remarkably/sum.rem", "spec/ramaze/view/sass.rb", "spec/ramaze/view/sass/file.css.sass", "spec/ramaze/view/tagz.rb", "spec/ramaze/view/tagz/external.tagz", "spec/ramaze/view/tagz/sum.tagz", "spec/ramaze/view/tenjin.rb", "spec/ramaze/view/tenjin/external.rbhtml", "spec/ramaze/view/tenjin/sum.rbhtml", "spec/snippets/array/put_within.rb", "spec/snippets/binding/locals.rb", "spec/snippets/numeric/filesize_format.rb", "spec/snippets/numeric/time.rb", "spec/snippets/object/__dir__.rb", "spec/snippets/ordered_set.rb", "spec/snippets/ramaze/acquire.rb", "spec/snippets/ramaze/dictionary.rb", "spec/snippets/ramaze/lru_hash.rb", "spec/snippets/ramaze/struct.rb", "spec/snippets/string/camel_case.rb", "spec/snippets/string/color.rb", "spec/snippets/string/snake_case.rb", "spec/snippets/string/unindent.rb", "spec/snippets/thread/into.rb", "tasks/authors.rake", "tasks/bacon.rake", "tasks/changelog.rake", "tasks/copyright.rake", "tasks/gem.rake", "tasks/gem_setup.rake", "tasks/git.rake", "tasks/grancher.rake", "tasks/jquery.rake", "tasks/manifest.rake", "tasks/metric_changes.rake", "tasks/rcov.rake", "tasks/release.rake", "tasks/reversion.rake", "tasks/setup.rake", "tasks/todo.rake", "tasks/traits.rake", "tasks/yard.rake"]
|
14
|
+
s.files = [".gitignore", ".mailmap", "MANIFEST", "README.md", "Rakefile", "benchmark/bench_templates/bench.rb", "benchmark/bench_templates/view/large.erb", "benchmark/bench_templates/view/large.haml", "benchmark/bench_templates/view/large.xhtml", "benchmark/bench_templates/view/small.erb", "benchmark/bench_templates/view/small.haml", "benchmark/bench_templates/view/small.xhtml", "benchmark/results.txt", "benchmark/run.rb", "benchmark/suite/minimal.rb", "benchmark/suite/no_informer.rb", "benchmark/suite/no_sessions.rb", "benchmark/suite/no_template.rb", "benchmark/suite/simple.rb", "benchmark/suite/template_erubis.rb", "benchmark/suite/template_etanni.rb", "benchmark/suite/template_ezamar.rb", "benchmark/suite/template_haml.rb", "benchmark/suite/template_liquid.rb", "benchmark/suite/template_markaby.rb", "benchmark/suite/template_nagoro.rb", "benchmark/suite/template_redcloth.rb", "benchmark/suite/template_tenjin.rb", "benchmark/test.rb", "bin/ramaze", "doc/AUTHORS", "doc/CHANGELOG", "doc/COPYING", "doc/FAQ", "doc/GPL", "doc/INSTALL", "doc/LEGAL", "doc/TODO", "doc/meta/announcement.txt", "doc/meta/configuration.txt", "doc/meta/internals.txt", "doc/meta/users.kml", "doc/tutorial/todolist.html", "doc/tutorial/todolist.txt", "examples/app/auth/layout/auth.xhtml", "examples/app/auth/start.rb", "examples/app/auth/view/index.xhtml", "examples/app/auth/view/login.xhtml", "examples/app/auth/view/secret.xhtml", "examples/app/blog/README", "examples/app/blog/app.rb", "examples/app/blog/config.ru", "examples/app/blog/controller/comment.rb", "examples/app/blog/controller/entry.rb", "examples/app/blog/controller/init.rb", "examples/app/blog/controller/main.rb", "examples/app/blog/controller/tag.rb", "examples/app/blog/layout/default.nag", "examples/app/blog/model/comment.rb", "examples/app/blog/model/entry.rb", "examples/app/blog/model/init.rb", "examples/app/blog/model/tag.rb", "examples/app/blog/public/css/screen.css", "examples/app/blog/spec/blog.rb", "examples/app/blog/start.rb", "examples/app/blog/view/comment/form.nag", "examples/app/blog/view/comment/show.nag", "examples/app/blog/view/entry/edit.nag", "examples/app/blog/view/entry/feed.atom.nag", "examples/app/blog/view/entry/feed.rss.nag", "examples/app/blog/view/entry/index.nag", "examples/app/blog/view/entry/new.nag", "examples/app/blog/view/entry/show.nag", "examples/app/blog/view/feed.atom.nag", "examples/app/blog/view/feed.rss.nag", "examples/app/blog/view/index.nag", "examples/app/blog/view/tag/index.nag", "examples/app/chat/layout/default.xhtml", "examples/app/chat/model/history.rb", "examples/app/chat/model/message.rb", "examples/app/chat/public/css/chat.css", "examples/app/chat/public/js/chat.js", "examples/app/chat/public/js/jquery.js", "examples/app/chat/start.rb", "examples/app/chat/view/chat.xhtml", "examples/app/chat/view/index.xhtml", "examples/app/localization/locale/de.yaml", "examples/app/localization/locale/en.yaml", "examples/app/localization/locale/ja.yaml", "examples/app/localization/start.rb", "examples/app/sourceview/public/coderay.css", "examples/app/sourceview/public/images/file.gif", "examples/app/sourceview/public/images/folder.gif", "examples/app/sourceview/public/images/tv-collapsable-last.gif", "examples/app/sourceview/public/images/tv-collapsable.gif", "examples/app/sourceview/public/images/tv-expandable-last.gif", "examples/app/sourceview/public/images/tv-expandable.gif", "examples/app/sourceview/public/images/tv-item-last.gif", "examples/app/sourceview/public/images/tv-item.gif", "examples/app/sourceview/public/jquery.js", "examples/app/sourceview/public/jquery.treeview.css", "examples/app/sourceview/public/jquery.treeview.js", "examples/app/sourceview/public/sourceview.js", "examples/app/sourceview/start.rb", "examples/app/sourceview/view/index.haml", "examples/app/todolist/controller/init.rb", "examples/app/todolist/controller/task.rb", "examples/app/todolist/layout/default.xhtml", "examples/app/todolist/model/init.rb", "examples/app/todolist/model/task.rb", "examples/app/todolist/public/css/screen.css", "examples/app/todolist/public/favicon.ico", "examples/app/todolist/start.rb", "examples/app/todolist/view/index.xhtml", "examples/app/upload/start.rb", "examples/app/upload/view/index.xhtml", "examples/app/whywiki/spec/whywiki.rb", "examples/app/whywiki/start.rb", "examples/app/whywiki/template/edit.xhtml", "examples/app/whywiki/template/show.xhtml", "examples/app/wikore/spec/wikore.rb", "examples/app/wikore/src/controller.rb", "examples/app/wikore/src/model.rb", "examples/app/wikore/start.rb", "examples/app/wikore/view/index.xhtml", "examples/app/wiktacular/README", "examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd", "examples/app/wiktacular/mkd/link/current.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd", "examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd", "examples/app/wiktacular/mkd/main/current.mkd", "examples/app/wiktacular/mkd/markdown/current.mkd", "examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd", "examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd", "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd", "examples/app/wiktacular/mkd/testing/current.mkd", "examples/app/wiktacular/public/favicon.ico", "examples/app/wiktacular/public/screen.css", "examples/app/wiktacular/spec/wiktacular.rb", "examples/app/wiktacular/src/controller.rb", "examples/app/wiktacular/src/model.rb", "examples/app/wiktacular/start.rb", "examples/app/wiktacular/template/edit.xhtml", "examples/app/wiktacular/template/html_layout.xhtml", "examples/app/wiktacular/template/index.xhtml", "examples/app/wiktacular/template/new.xhtml", "examples/basic/element.rb", "examples/basic/gestalt.rb", "examples/basic/hello.rb", "examples/basic/layout.rb", "examples/basic/linking.rb", "examples/basic/partial.rb", "examples/basic/simple.rb", "examples/helpers/cache.rb", "examples/helpers/form_with_sequel.rb", "examples/helpers/httpdigest.rb", "examples/helpers/identity.rb", "examples/helpers/nitro_form.rb", "examples/helpers/paginate.rb", "examples/helpers/rest.rb", "examples/helpers/simple_captcha.rb", "examples/misc/css.rb", "examples/misc/facebook.rb", "examples/misc/memleak_detector.rb", "examples/misc/nagoro_element.rb", "examples/misc/ramaise.rb", "examples/misc/rapp.rb", "examples/misc/sequel_scaffolding.rb", "examples/misc/serve_directory.rb", "examples/templates/template_erubis.rb", "examples/templates/template_ezamar.rb", "examples/templates/template_haml.rb", "examples/templates/template_liquid.rb", "examples/templates/template_markaby.rb", "examples/templates/template_nagoro.rb", "examples/templates/template_redcloth.rb", "examples/templates/template_remarkably.rb", "examples/templates/template_tenjin.rb", "examples/templates/view/external.haml", "examples/templates/view/external.liquid", "examples/templates/view/external.mab", "examples/templates/view/external.nag", "examples/templates/view/external.redcloth", "examples/templates/view/external.rem", "examples/templates/view/external.rhtml", "examples/templates/view/external.tenjin", "examples/templates/view/external.zmr", "lib/proto/app.rb", "lib/proto/config.ru", "lib/proto/controller/init.rb", "lib/proto/controller/main.rb", "lib/proto/layout/default.xhtml", "lib/proto/model/init.rb", "lib/proto/public/.htaccess", "lib/proto/public/css/screen.css", "lib/proto/public/dispatch.fcgi", "lib/proto/public/favicon.ico", "lib/proto/public/js/jquery.js", "lib/proto/public/ramaze.png", "lib/proto/spec/main.rb", "lib/proto/start.rb", "lib/proto/view/index.xhtml", "lib/ramaze.rb", "lib/ramaze/app.rb", "lib/ramaze/cache.rb", "lib/ramaze/cache/localmemcache.rb", "lib/ramaze/cache/lru.rb", "lib/ramaze/cache/memcache.rb", "lib/ramaze/cache/sequel.rb", "lib/ramaze/contrib/addressable_route.rb", "lib/ramaze/contrib/app_graph.rb", "lib/ramaze/contrib/email.rb", "lib/ramaze/contrib/facebook.rb", "lib/ramaze/contrib/facebook/facebook.rb", "lib/ramaze/contrib/gettext.rb", "lib/ramaze/contrib/gettext/mo.rb", "lib/ramaze/contrib/gettext/parser.rb", "lib/ramaze/contrib/gettext/po.rb", "lib/ramaze/contrib/gzip_filter.rb", "lib/ramaze/contrib/maruku_uv.rb", "lib/ramaze/contrib/profiling.rb", "lib/ramaze/contrib/rest.rb", "lib/ramaze/contrib/sequel/create_join.rb", "lib/ramaze/contrib/sequel/form_field.rb", "lib/ramaze/contrib/sequel/image.rb", "lib/ramaze/contrib/sequel/relation.rb", "lib/ramaze/controller.rb", "lib/ramaze/controller/default.rb", "lib/ramaze/current.rb", "lib/ramaze/files.rb", "lib/ramaze/gestalt.rb", "lib/ramaze/helper.rb", "lib/ramaze/helper/auth.rb", "lib/ramaze/helper/bench.rb", "lib/ramaze/helper/blue_form.rb", "lib/ramaze/helper/cache.rb", "lib/ramaze/helper/disqus.rb", "lib/ramaze/helper/erector.rb", "lib/ramaze/helper/flash.rb", "lib/ramaze/helper/form.rb", "lib/ramaze/helper/formatting.rb", "lib/ramaze/helper/gestalt.rb", "lib/ramaze/helper/gravatar.rb", "lib/ramaze/helper/httpdigest.rb", "lib/ramaze/helper/identity.rb", "lib/ramaze/helper/layout.rb", "lib/ramaze/helper/link.rb", "lib/ramaze/helper/localize.rb", "lib/ramaze/helper/markaby.rb", "lib/ramaze/helper/maruku.rb", "lib/ramaze/helper/nitroform.rb", "lib/ramaze/helper/pager.rb", "lib/ramaze/helper/paginate.rb", "lib/ramaze/helper/partial.rb", "lib/ramaze/helper/remarkably.rb", "lib/ramaze/helper/request_accessor.rb", "lib/ramaze/helper/sequel.rb", "lib/ramaze/helper/sequel_form.rb", "lib/ramaze/helper/simple_captcha.rb", "lib/ramaze/helper/stack.rb", "lib/ramaze/helper/tagz.rb", "lib/ramaze/helper/thread.rb", "lib/ramaze/helper/ultraviolet.rb", "lib/ramaze/helper/user.rb", "lib/ramaze/helper/xhtml.rb", "lib/ramaze/log.rb", "lib/ramaze/log/analogger.rb", "lib/ramaze/log/growl.rb", "lib/ramaze/log/hub.rb", "lib/ramaze/log/informer.rb", "lib/ramaze/log/knotify.rb", "lib/ramaze/log/logger.rb", "lib/ramaze/log/logging.rb", "lib/ramaze/log/rotatinginformer.rb", "lib/ramaze/log/syslog.rb", "lib/ramaze/log/xosd.rb", "lib/ramaze/middleware_compiler.rb", "lib/ramaze/plugin.rb", "lib/ramaze/reloader.rb", "lib/ramaze/reloader/watch_inotify.rb", "lib/ramaze/reloader/watch_stat.rb", "lib/ramaze/request.rb", "lib/ramaze/response.rb", "lib/ramaze/setup.rb", "lib/ramaze/snippets.rb", "lib/ramaze/snippets/array/put_within.rb", "lib/ramaze/snippets/binding/locals.rb", "lib/ramaze/snippets/blankslate.rb", "lib/ramaze/snippets/fiber.rb", "lib/ramaze/snippets/kernel/pretty_inspect.rb", "lib/ramaze/snippets/metaid.rb", "lib/ramaze/snippets/numeric/filesize_format.rb", "lib/ramaze/snippets/numeric/time.rb", "lib/ramaze/snippets/object/__dir__.rb", "lib/ramaze/snippets/object/instance_variable_defined.rb", "lib/ramaze/snippets/object/pretty.rb", "lib/ramaze/snippets/object/scope.rb", "lib/ramaze/snippets/ordered_set.rb", "lib/ramaze/snippets/proc/locals.rb", "lib/ramaze/snippets/ramaze/acquire.rb", "lib/ramaze/snippets/ramaze/deprecated.rb", "lib/ramaze/snippets/ramaze/dictionary.rb", "lib/ramaze/snippets/ramaze/fiber.rb", "lib/ramaze/snippets/ramaze/lru_hash.rb", "lib/ramaze/snippets/ramaze/struct.rb", "lib/ramaze/snippets/string/camel_case.rb", "lib/ramaze/snippets/string/color.rb", "lib/ramaze/snippets/string/end_with.rb", "lib/ramaze/snippets/string/esc.rb", "lib/ramaze/snippets/string/ord.rb", "lib/ramaze/snippets/string/snake_case.rb", "lib/ramaze/snippets/string/start_with.rb", "lib/ramaze/snippets/string/unindent.rb", "lib/ramaze/snippets/thread/into.rb", "lib/ramaze/spec.rb", "lib/ramaze/spec/bacon.rb", "lib/ramaze/spec/helper/bacon.rb", "lib/ramaze/spec/helper/pretty_output.rb", "lib/ramaze/spec/helper/snippets.rb", "lib/ramaze/spec/helper/template_examples.rb", "lib/ramaze/tool/bin.rb", "lib/ramaze/tool/create.rb", "lib/ramaze/tool/project_creator.rb", "lib/ramaze/version.rb", "lib/ramaze/view.rb", "lib/ramaze/view/erector.rb", "lib/ramaze/view/erubis.rb", "lib/ramaze/view/ezamar.rb", "lib/ramaze/view/gestalt.rb", "lib/ramaze/view/haml.rb", "lib/ramaze/view/less.rb", "lib/ramaze/view/liquid.rb", "lib/ramaze/view/maruku.rb", "lib/ramaze/view/nagoro.rb", "lib/ramaze/view/nagoro/render_partial.rb", "lib/ramaze/view/redcloth.rb", "lib/ramaze/view/remarkably.rb", "lib/ramaze/view/sass.rb", "lib/ramaze/view/slippers.rb", "lib/ramaze/view/tagz.rb", "lib/ramaze/view/tenjin.rb", "lib/vendor/etag.rb", "lib/vendor/route_exceptions.rb", "ramaze.gemspec", "spec/contrib/addressable_route.rb", "spec/contrib/rest.rb", "spec/examples/caching.rb", "spec/examples/css.rb", "spec/examples/element.rb", "spec/examples/hello.rb", "spec/examples/helpers/httpdigest.rb", "spec/examples/linking.rb", "spec/examples/simple.rb", "spec/examples/templates/template_erubis.rb", "spec/examples/templates/template_ezamar.rb", "spec/examples/templates/template_haml.rb", "spec/examples/templates/template_liquid.rb", "spec/examples/templates/template_markaby.rb", "spec/examples/templates/template_nagoro.rb", "spec/examples/templates/template_redcloth.rb", "spec/examples/templates/template_remarkably.rb", "spec/examples/templates/template_tenjin.rb", "spec/helper.rb", "spec/ramaze/action/render.rb", "spec/ramaze/action/view/bar.xhtml", "spec/ramaze/action/view/instancevars/layout.xhtml", "spec/ramaze/action/view/other_wrapper.erb", "spec/ramaze/action/view/other_wrapper.xhtml", "spec/ramaze/action/view/single_wrapper.xhtml", "spec/ramaze/action/view/sub/sub_wrapper.erb", "spec/ramaze/action/view/sub/sub_wrapper.xhtml", "spec/ramaze/app.rb", "spec/ramaze/app/location.rb", "spec/ramaze/bin/ramaze.rb", "spec/ramaze/cache/localmemcache.rb", "spec/ramaze/cache/lru.rb", "spec/ramaze/cache/memcache.rb", "spec/ramaze/cache/sequel.rb", "spec/ramaze/controller/actionless_templates.rb", "spec/ramaze/controller/lonely_mapping.rb", "spec/ramaze/controller/mapping.rb", "spec/ramaze/controller/provide_inheritance.rb", "spec/ramaze/controller/resolve.rb", "spec/ramaze/controller/subclass.rb", "spec/ramaze/controller/template_resolving.rb", "spec/ramaze/controller/view/bar.xhtml", "spec/ramaze/controller/view/base/another.xhtml", "spec/ramaze/controller/view/greet.xhtml", "spec/ramaze/controller/view/list.xhtml", "spec/ramaze/controller/view/other/greet/other.xhtml", "spec/ramaze/controller/view/other_wrapper.xhtml", "spec/ramaze/dispatcher/directory.rb", "spec/ramaze/dispatcher/file.rb", "spec/ramaze/dispatcher/public/favicon.ico", "spec/ramaze/dispatcher/public/file name.txt", "spec/ramaze/dispatcher/public/test_download.css", "spec/ramaze/error.rb", "spec/ramaze/files.rb", "spec/ramaze/files/public_1/plain.txt", "spec/ramaze/files/public_2/rich.txt", "spec/ramaze/gestalt.rb", "spec/ramaze/helper/auth.rb", "spec/ramaze/helper/bench.rb", "spec/ramaze/helper/blue_form.rb", "spec/ramaze/helper/cache.rb", "spec/ramaze/helper/flash.rb", "spec/ramaze/helper/form.rb", "spec/ramaze/helper/formatting.rb", "spec/ramaze/helper/gestalt.rb", "spec/ramaze/helper/gravatar.rb", "spec/ramaze/helper/httpdigest.rb", "spec/ramaze/helper/layout.rb", "spec/ramaze/helper/layout/default.xhtml", "spec/ramaze/helper/link.rb", "spec/ramaze/helper/localize.rb", "spec/ramaze/helper/maruku.rb", "spec/ramaze/helper/pager.rb", "spec/ramaze/helper/paginate.rb", "spec/ramaze/helper/request_accessor.rb", "spec/ramaze/helper/sequel_form.rb", "spec/ramaze/helper/simple_captcha.rb", "spec/ramaze/helper/stack.rb", "spec/ramaze/helper/user.rb", "spec/ramaze/helper/view/locals.xhtml", "spec/ramaze/helper/view/loop.xhtml", "spec/ramaze/helper/view/num.xhtml", "spec/ramaze/helper/view/partial.xhtml", "spec/ramaze/helper/view/recursive.xhtml", "spec/ramaze/helper/view/recursive_local_ivars.xhtml", "spec/ramaze/helper/view/recursive_locals.xhtml", "spec/ramaze/helper/view/test_template.xhtml", "spec/ramaze/helper/xhtml.rb", "spec/ramaze/log/informer.rb", "spec/ramaze/log/logging.rb", "spec/ramaze/log/syslog.rb", "spec/ramaze/params.rb", "spec/ramaze/public/favicon.ico", "spec/ramaze/public/ramaze.png", "spec/ramaze/public/test_download.css", "spec/ramaze/request.rb", "spec/ramaze/rewrite/file.css", "spec/ramaze/session/memcache.rb", "spec/ramaze/struct.rb", "spec/ramaze/template/ramaze/external.test", "spec/ramaze/view.rb", "spec/ramaze/view/erector.rb", "spec/ramaze/view/erector/external.erector", "spec/ramaze/view/erector/invoke_helper_method.erector", "spec/ramaze/view/erector/layout.erector", "spec/ramaze/view/erector/strict_xhtml.erector", "spec/ramaze/view/erector/sum.erector", "spec/ramaze/view/erubis.rb", "spec/ramaze/view/erubis/external.rhtml", "spec/ramaze/view/erubis/sum.rhtml", "spec/ramaze/view/ezamar.rb", "spec/ramaze/view/ezamar/external.zmr", "spec/ramaze/view/ezamar/sum.zmr", "spec/ramaze/view/gestalt.rb", "spec/ramaze/view/gestalt/external.ges", "spec/ramaze/view/haml.rb", "spec/ramaze/view/haml/external.haml", "spec/ramaze/view/haml/sum.haml", "spec/ramaze/view/less.rb", "spec/ramaze/view/less/file.css.less", "spec/ramaze/view/liquid.rb", "spec/ramaze/view/liquid/external.liquid", "spec/ramaze/view/liquid/sum.liquid", "spec/ramaze/view/nagoro.rb", "spec/ramaze/view/nagoro/external.nag", "spec/ramaze/view/nagoro/sum.nag", "spec/ramaze/view/redcloth.rb", "spec/ramaze/view/redcloth/external.redcloth", "spec/ramaze/view/remarkably.rb", "spec/ramaze/view/remarkably/external.rem", "spec/ramaze/view/remarkably/sum.rem", "spec/ramaze/view/sass.rb", "spec/ramaze/view/sass/file.css.sass", "spec/ramaze/view/slippers.rb", "spec/ramaze/view/slippers/external.st", "spec/ramaze/view/slippers/sum.st", "spec/ramaze/view/tagz.rb", "spec/ramaze/view/tagz/external.tagz", "spec/ramaze/view/tagz/sum.tagz", "spec/ramaze/view/tenjin.rb", "spec/ramaze/view/tenjin/external.rbhtml", "spec/ramaze/view/tenjin/sum.rbhtml", "spec/snippets/array/put_within.rb", "spec/snippets/binding/locals.rb", "spec/snippets/numeric/filesize_format.rb", "spec/snippets/numeric/time.rb", "spec/snippets/object/__dir__.rb", "spec/snippets/ordered_set.rb", "spec/snippets/ramaze/acquire.rb", "spec/snippets/ramaze/dictionary.rb", "spec/snippets/ramaze/lru_hash.rb", "spec/snippets/ramaze/struct.rb", "spec/snippets/string/camel_case.rb", "spec/snippets/string/color.rb", "spec/snippets/string/snake_case.rb", "spec/snippets/string/unindent.rb", "spec/snippets/thread/into.rb", "tasks/authors.rake", "tasks/bacon.rake", "tasks/changelog.rake", "tasks/copyright.rake", "tasks/gem.rake", "tasks/gem_setup.rake", "tasks/git.rake", "tasks/grancher.rake", "tasks/jquery.rake", "tasks/manifest.rake", "tasks/metric_changes.rake", "tasks/rcov.rake", "tasks/release.rake", "tasks/reversion.rake", "tasks/setup.rake", "tasks/todo.rake", "tasks/traits.rake", "tasks/yard.rake"]
|
15
15
|
s.homepage = %q{http://ramaze.net}
|
16
16
|
s.post_install_message = %q{============================================================
|
17
17
|
|
@@ -22,7 +22,7 @@ You can now do create a new project:
|
|
22
22
|
============================================================}
|
23
23
|
s.require_paths = ["lib"]
|
24
24
|
s.rubyforge_project = %q{ramaze}
|
25
|
-
s.rubygems_version = %q{1.3.
|
25
|
+
s.rubygems_version = %q{1.3.5}
|
26
26
|
s.summary = %q{Ramaze is a simple and modular web framework}
|
27
27
|
|
28
28
|
if s.respond_to? :specification_version then
|
@@ -30,59 +30,86 @@ You can now do create a new project:
|
|
30
30
|
s.specification_version = 3
|
31
31
|
|
32
32
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
33
|
-
s.add_runtime_dependency(%q<innate>, ["= 2009.
|
33
|
+
s.add_runtime_dependency(%q<innate>, ["= 2009.10"])
|
34
|
+
s.add_development_dependency(%q<RedCloth>, ["~> 4.2.2"])
|
34
35
|
s.add_development_dependency(%q<Remarkably>, ["~> 0.5.2"])
|
36
|
+
s.add_development_dependency(%q<activesupport>, ["~> 2.3.4"])
|
37
|
+
s.add_development_dependency(%q<addressable>, ["~> 2.1.0"])
|
35
38
|
s.add_development_dependency(%q<bacon>, [">= 1.1.0"])
|
39
|
+
s.add_development_dependency(%q<erector>, ["~> 0.7.0"])
|
36
40
|
s.add_development_dependency(%q<erubis>, [">= 2.6.4"])
|
37
41
|
s.add_development_dependency(%q<ezamar>, [">= 2009.06"])
|
38
42
|
s.add_development_dependency(%q<haml>, ["~> 2.2.1"])
|
39
43
|
s.add_development_dependency(%q<hpricot>, [">= 0.8.1"])
|
40
44
|
s.add_development_dependency(%q<json>, [">= 1.1.7"])
|
45
|
+
s.add_development_dependency(%q<less>, ["~> 1.1.13"])
|
41
46
|
s.add_development_dependency(%q<liquid>, ["~> 2.0.0"])
|
47
|
+
s.add_development_dependency(%q<locale>, ["~> 2.0.4"])
|
42
48
|
s.add_development_dependency(%q<localmemcache>, ["~> 0.4.1"])
|
49
|
+
s.add_development_dependency(%q<maruku>, ["~> 0.6.0"])
|
43
50
|
s.add_development_dependency(%q<memcache-client>, ["~> 1.7.4"])
|
44
51
|
s.add_development_dependency(%q<nagoro>, [">= 2009.05"])
|
45
|
-
s.add_development_dependency(%q<rack-test>, [">= 0.4.0"])
|
46
52
|
s.add_development_dependency(%q<rack-contrib>, [">= 0.9.2"])
|
53
|
+
s.add_development_dependency(%q<rack-test>, [">= 0.4.0"])
|
47
54
|
s.add_development_dependency(%q<sequel>, ["= 3.2.0"])
|
48
|
-
s.add_development_dependency(%q<
|
55
|
+
s.add_development_dependency(%q<slippers>, ["~> 0.0.10"])
|
56
|
+
s.add_development_dependency(%q<sqlite3-ruby>, ["~> 1.2.5"])
|
57
|
+
s.add_development_dependency(%q<tagz>, [">= 7.1.0"])
|
49
58
|
s.add_development_dependency(%q<tenjin>, ["~> 0.6.1"])
|
50
59
|
else
|
51
|
-
s.add_dependency(%q<innate>, ["= 2009.
|
60
|
+
s.add_dependency(%q<innate>, ["= 2009.10"])
|
61
|
+
s.add_dependency(%q<RedCloth>, ["~> 4.2.2"])
|
52
62
|
s.add_dependency(%q<Remarkably>, ["~> 0.5.2"])
|
63
|
+
s.add_dependency(%q<activesupport>, ["~> 2.3.4"])
|
64
|
+
s.add_dependency(%q<addressable>, ["~> 2.1.0"])
|
53
65
|
s.add_dependency(%q<bacon>, [">= 1.1.0"])
|
66
|
+
s.add_dependency(%q<erector>, ["~> 0.7.0"])
|
54
67
|
s.add_dependency(%q<erubis>, [">= 2.6.4"])
|
55
68
|
s.add_dependency(%q<ezamar>, [">= 2009.06"])
|
56
69
|
s.add_dependency(%q<haml>, ["~> 2.2.1"])
|
57
70
|
s.add_dependency(%q<hpricot>, [">= 0.8.1"])
|
58
71
|
s.add_dependency(%q<json>, [">= 1.1.7"])
|
72
|
+
s.add_dependency(%q<less>, ["~> 1.1.13"])
|
59
73
|
s.add_dependency(%q<liquid>, ["~> 2.0.0"])
|
74
|
+
s.add_dependency(%q<locale>, ["~> 2.0.4"])
|
60
75
|
s.add_dependency(%q<localmemcache>, ["~> 0.4.1"])
|
76
|
+
s.add_dependency(%q<maruku>, ["~> 0.6.0"])
|
61
77
|
s.add_dependency(%q<memcache-client>, ["~> 1.7.4"])
|
62
78
|
s.add_dependency(%q<nagoro>, [">= 2009.05"])
|
63
|
-
s.add_dependency(%q<rack-test>, [">= 0.4.0"])
|
64
79
|
s.add_dependency(%q<rack-contrib>, [">= 0.9.2"])
|
80
|
+
s.add_dependency(%q<rack-test>, [">= 0.4.0"])
|
65
81
|
s.add_dependency(%q<sequel>, ["= 3.2.0"])
|
66
|
-
s.add_dependency(%q<
|
82
|
+
s.add_dependency(%q<slippers>, ["~> 0.0.10"])
|
83
|
+
s.add_dependency(%q<sqlite3-ruby>, ["~> 1.2.5"])
|
84
|
+
s.add_dependency(%q<tagz>, [">= 7.1.0"])
|
67
85
|
s.add_dependency(%q<tenjin>, ["~> 0.6.1"])
|
68
86
|
end
|
69
87
|
else
|
70
|
-
s.add_dependency(%q<innate>, ["= 2009.
|
88
|
+
s.add_dependency(%q<innate>, ["= 2009.10"])
|
89
|
+
s.add_dependency(%q<RedCloth>, ["~> 4.2.2"])
|
71
90
|
s.add_dependency(%q<Remarkably>, ["~> 0.5.2"])
|
91
|
+
s.add_dependency(%q<activesupport>, ["~> 2.3.4"])
|
92
|
+
s.add_dependency(%q<addressable>, ["~> 2.1.0"])
|
72
93
|
s.add_dependency(%q<bacon>, [">= 1.1.0"])
|
94
|
+
s.add_dependency(%q<erector>, ["~> 0.7.0"])
|
73
95
|
s.add_dependency(%q<erubis>, [">= 2.6.4"])
|
74
96
|
s.add_dependency(%q<ezamar>, [">= 2009.06"])
|
75
97
|
s.add_dependency(%q<haml>, ["~> 2.2.1"])
|
76
98
|
s.add_dependency(%q<hpricot>, [">= 0.8.1"])
|
77
99
|
s.add_dependency(%q<json>, [">= 1.1.7"])
|
100
|
+
s.add_dependency(%q<less>, ["~> 1.1.13"])
|
78
101
|
s.add_dependency(%q<liquid>, ["~> 2.0.0"])
|
102
|
+
s.add_dependency(%q<locale>, ["~> 2.0.4"])
|
79
103
|
s.add_dependency(%q<localmemcache>, ["~> 0.4.1"])
|
104
|
+
s.add_dependency(%q<maruku>, ["~> 0.6.0"])
|
80
105
|
s.add_dependency(%q<memcache-client>, ["~> 1.7.4"])
|
81
106
|
s.add_dependency(%q<nagoro>, [">= 2009.05"])
|
82
|
-
s.add_dependency(%q<rack-test>, [">= 0.4.0"])
|
83
107
|
s.add_dependency(%q<rack-contrib>, [">= 0.9.2"])
|
108
|
+
s.add_dependency(%q<rack-test>, [">= 0.4.0"])
|
84
109
|
s.add_dependency(%q<sequel>, ["= 3.2.0"])
|
85
|
-
s.add_dependency(%q<
|
110
|
+
s.add_dependency(%q<slippers>, ["~> 0.0.10"])
|
111
|
+
s.add_dependency(%q<sqlite3-ruby>, ["~> 1.2.5"])
|
112
|
+
s.add_dependency(%q<tagz>, [">= 7.1.0"])
|
86
113
|
s.add_dependency(%q<tenjin>, ["~> 0.6.1"])
|
87
114
|
end
|
88
115
|
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
3
|
+
|
4
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
5
|
+
spec_require 'erector'
|
6
|
+
|
7
|
+
Ramaze::App.options.views = 'erector'
|
8
|
+
Ramaze::App.options.layouts = 'erector'
|
9
|
+
|
10
|
+
class SpecErector < Ramaze::Controller
|
11
|
+
map '/'
|
12
|
+
engine :Erector
|
13
|
+
helper :erector
|
14
|
+
layout :layout
|
15
|
+
|
16
|
+
def invoke_helper_method
|
17
|
+
end
|
18
|
+
|
19
|
+
def index
|
20
|
+
erector { h1 "Erector Index" }
|
21
|
+
end
|
22
|
+
|
23
|
+
def links
|
24
|
+
erector {
|
25
|
+
ul {
|
26
|
+
li { a(:href => r(:index)) { text "Index page" } }
|
27
|
+
li { a(:href => r(:internal)){ text "Internal template" } }
|
28
|
+
li { a(:href => r(:external)){ text "External template" } }
|
29
|
+
}
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
def strict_xhtml
|
34
|
+
end
|
35
|
+
|
36
|
+
def ie_if
|
37
|
+
erector {
|
38
|
+
ie_if("lt IE 8") {
|
39
|
+
css "ie.css"
|
40
|
+
css "test2.css", :media => 'screen'
|
41
|
+
}
|
42
|
+
}
|
43
|
+
end
|
44
|
+
|
45
|
+
def css
|
46
|
+
erector {
|
47
|
+
css "test.css", :media => 'screen'
|
48
|
+
}
|
49
|
+
end
|
50
|
+
|
51
|
+
def sum(num1, num2)
|
52
|
+
@num1, @num2 = num1.to_i, num2.to_i
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe Ramaze::View::Erector do
|
57
|
+
behaves_like :rack_test
|
58
|
+
|
59
|
+
should 'use erector methods' do
|
60
|
+
get('/').body.should == '<div><h1>Erector Index</h1></div>'
|
61
|
+
end
|
62
|
+
|
63
|
+
should 'use other helper methods' do
|
64
|
+
get('/links').body.should == '<div><ul><li><a href="/index">Index page</a></li><li><a href="/internal">Internal template</a></li><li><a href="/external">External template</a></li></ul></div>'
|
65
|
+
end
|
66
|
+
|
67
|
+
should 'render external template' do
|
68
|
+
get('/external').body.should == "<div><h1>External Erector View Template</h1></div>"
|
69
|
+
end
|
70
|
+
|
71
|
+
should 'render external template with instance variables' do
|
72
|
+
get('/sum/1/2').body.should == '<div><p>3</p></div>'
|
73
|
+
end
|
74
|
+
|
75
|
+
should 'render external strict xhtml template' do
|
76
|
+
get('/strict_xhtml').body.should == "<div><?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"DTD/xhtml1-strict.dtd\"><html lang=\"en\" xml:lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\"><p>STRICT!</p></html></div>"
|
77
|
+
end
|
78
|
+
|
79
|
+
should 'render css link with merged options' do
|
80
|
+
get('/css').body.should == "<div><link href=\"test.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /></div>"
|
81
|
+
end
|
82
|
+
|
83
|
+
should 'render ie conditional' do
|
84
|
+
get('/ie_if').body.should == "<div><!--[if lt IE 8]><link href=\"ie.css\" rel=\"stylesheet\" type=\"text/css\" /><link href=\"test2.css\" media=\"screen\" rel=\"stylesheet\" type=\"text/css\" /><![endif]--></div>"
|
85
|
+
end
|
86
|
+
|
87
|
+
should 'invoke helper methods from external template' do
|
88
|
+
get('/invoke_helper_method').body.should == "<div><a href=\"/index\">Index page</a></div>"
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
h1 "External Erector View Template"
|
@@ -0,0 +1 @@
|
|
1
|
+
a(:href => r(:index)) { text "Index page" }
|
@@ -0,0 +1 @@
|
|
1
|
+
p @num1 + @num2
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require File.expand_path('../../../../spec/helper', __FILE__)
|
2
|
+
spec_require 'slippers'
|
3
|
+
|
4
|
+
Ramaze::App.options.views = 'slippers'
|
5
|
+
|
6
|
+
class SpecSlippers < Ramaze::Controller
|
7
|
+
map '/'
|
8
|
+
engine :Slippers
|
9
|
+
|
10
|
+
def index
|
11
|
+
@value = "foo"
|
12
|
+
'<h1>Slippers Index with $value$</h1>'
|
13
|
+
end
|
14
|
+
|
15
|
+
def sum(num1, num2)
|
16
|
+
@num1, @num2 = num1.to_i, num2.to_i
|
17
|
+
end
|
18
|
+
|
19
|
+
def external
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe 'Ramaze::View::Slippers' do
|
24
|
+
behaves_like :rack_test
|
25
|
+
|
26
|
+
should 'render' do
|
27
|
+
get('/').body.should == '<h1>Slippers Index with foo</h1>'
|
28
|
+
end
|
29
|
+
|
30
|
+
should 'render external template' do
|
31
|
+
get('/external').body.strip.
|
32
|
+
should == '<html>
|
33
|
+
<head>
|
34
|
+
<title>Slippers Test</title>
|
35
|
+
</head>
|
36
|
+
<body>
|
37
|
+
<h1>Slippers Template</h1>
|
38
|
+
</body>
|
39
|
+
</html>'
|
40
|
+
end
|
41
|
+
|
42
|
+
should 'render external template with instance variables' do
|
43
|
+
got = get('/sum/1/2')
|
44
|
+
got.status.should == 200
|
45
|
+
got['Content-Type'].should == 'text/html'
|
46
|
+
got.body.strip.should == "<div>1 and 2</div>"
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<div>$num1$ and $num2$</div>
|
data/tasks/release.rake
CHANGED
@@ -1,16 +1,19 @@
|
|
1
1
|
namespace :release do
|
2
|
-
task :
|
2
|
+
task :prepare => %w[jquery reversion authors gemspec]
|
3
|
+
task :all => %w[release:github release:rubyforge release:gemcutter]
|
3
4
|
|
4
|
-
desc '
|
5
|
-
task :github =>
|
5
|
+
desc 'Release on github'
|
6
|
+
task :github => :prepare do
|
6
7
|
name, version = GEMSPEC.name, GEMSPEC.version
|
7
8
|
|
8
9
|
sh('git', 'add',
|
9
10
|
'MANIFEST', 'doc/CHANGELOG', 'doc/AUTHORS',
|
10
11
|
"#{name}.gemspec",
|
12
|
+
'lib/proto/public/js/jquery.js',
|
11
13
|
"lib/#{name}/version.rb")
|
12
14
|
|
13
|
-
puts
|
15
|
+
puts <<-INSTRUCTIONS
|
16
|
+
================================================================================
|
14
17
|
|
15
18
|
I added the relevant files, you can commit them, tag the commit, and push:
|
16
19
|
|
@@ -18,37 +21,46 @@ git commit -m 'Version #{version}'
|
|
18
21
|
git tag -a -m '#{version}' '#{version}'
|
19
22
|
git push
|
20
23
|
|
21
|
-
|
22
|
-
|
24
|
+
================================================================================
|
25
|
+
INSTRUCTIONS
|
23
26
|
end
|
24
27
|
|
25
|
-
|
26
|
-
|
27
|
-
task :rubyforge => [:jquery, :reversion, :authors, :gemspec, :package] do
|
28
|
+
desc 'Release on rubyforge'
|
29
|
+
task :rubyforge => ['release:prepare', :package] do
|
28
30
|
name, version = GEMSPEC.name, GEMSPEC.version
|
29
31
|
|
30
|
-
|
32
|
+
pkgs = Dir["pkg/#{name}-#{version}.{tgz,zip}"].map{|file|
|
33
|
+
"rubyforge add_file #{name} #{name} '#{version}' '#{file}'"
|
34
|
+
}
|
35
|
+
|
36
|
+
puts <<-INSTRUCTIONS
|
37
|
+
================================================================================
|
38
|
+
|
31
39
|
To publish to rubyforge do following:
|
32
40
|
|
33
41
|
rubyforge login
|
34
42
|
rubyforge add_release #{name} #{name} '#{version}' pkg/#{name}-#{version}.gem
|
35
43
|
|
36
|
-
|
44
|
+
To publish the archives for distro packagers:
|
37
45
|
|
38
|
-
|
46
|
+
#{pkgs.join "\n"}
|
39
47
|
|
40
|
-
|
48
|
+
================================================================================
|
49
|
+
INSTRUCTIONS
|
41
50
|
end
|
42
51
|
|
43
|
-
desc '
|
44
|
-
task :
|
52
|
+
desc 'Release on gemcutter'
|
53
|
+
task :gemcutter => ['release:prepare', :package] do
|
45
54
|
name, version = GEMSPEC.name, GEMSPEC.version
|
46
|
-
puts "Adding archives for distro packagers is:", ""
|
47
55
|
|
48
|
-
|
49
|
-
|
50
|
-
|
56
|
+
puts <<-INSTRUCTIONS
|
57
|
+
================================================================================
|
58
|
+
|
59
|
+
To publish to gemcutter do following:
|
60
|
+
|
61
|
+
gem push pkg/#{name}-#{version}.gem
|
51
62
|
|
52
|
-
|
63
|
+
================================================================================
|
64
|
+
INSTRUCTIONS
|
53
65
|
end
|
54
66
|
end
|