ramaze 0.2.1 → 0.3.0

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.
Files changed (304) hide show
  1. data/Rakefile +20 -3
  2. data/bin/ramaze +1 -4
  3. data/doc/AUTHORS +2 -1
  4. data/doc/CHANGELOG +539 -32
  5. data/doc/LEGAL +4 -0
  6. data/doc/meta/announcement.txt +79 -47
  7. data/examples/blog/README +2 -2
  8. data/examples/blog/spec/blog.rb +33 -48
  9. data/examples/blog/src/controller.rb +15 -13
  10. data/examples/blog/src/model.rb +28 -10
  11. data/examples/blog/start.rb +0 -10
  12. data/examples/blog/template/edit.xhtml +1 -1
  13. data/examples/blog/template/index.xhtml +2 -2
  14. data/examples/facebook.rb +152 -0
  15. data/examples/linking.rb +28 -0
  16. data/examples/ramaise.rb +4 -11
  17. data/examples/rammit/spec/rammit.rb +30 -0
  18. data/examples/rammit/src/controller/main.rb +3 -0
  19. data/examples/rammit/src/controller/page.rb +16 -0
  20. data/examples/rammit/src/model.rb +33 -0
  21. data/examples/rammit/start.rb +7 -0
  22. data/examples/rammit/template/index.xhtml +14 -0
  23. data/examples/rammit/template/page/view.xhtml +4 -0
  24. data/examples/rapaste/Rakefile +28 -0
  25. data/examples/rapaste/public/css/active4d.css +114 -0
  26. data/examples/rapaste/public/css/all_hallows_eve.css +72 -0
  27. data/examples/rapaste/public/css/amy.css +147 -0
  28. data/examples/rapaste/public/css/blackboard.css +88 -0
  29. data/examples/rapaste/public/css/brilliance_black.css +605 -0
  30. data/examples/rapaste/public/css/brilliance_dull.css +599 -0
  31. data/examples/rapaste/public/css/cobalt.css +149 -0
  32. data/examples/rapaste/public/css/dawn.css +121 -0
  33. data/examples/rapaste/public/css/display.css +179 -0
  34. data/examples/rapaste/public/css/eiffel.css +121 -0
  35. data/examples/rapaste/public/css/espresso_libre.css +109 -0
  36. data/examples/rapaste/public/css/idle.css +62 -0
  37. data/examples/rapaste/public/css/iplastic.css +80 -0
  38. data/examples/rapaste/public/css/lazy.css +73 -0
  39. data/examples/rapaste/public/css/mac_classic.css +123 -0
  40. data/examples/rapaste/public/css/magicwb_amiga.css +104 -0
  41. data/examples/rapaste/public/css/pastels_on_dark.css +188 -0
  42. data/examples/rapaste/public/css/slush_poppies.css +85 -0
  43. data/examples/rapaste/public/css/spacecadet.css +51 -0
  44. data/examples/rapaste/public/css/sunburst.css +180 -0
  45. data/examples/rapaste/public/css/twilight.css +137 -0
  46. data/examples/rapaste/public/css/zenburnesque.css +91 -0
  47. data/examples/rapaste/public/js/jquery.js +11 -0
  48. data/examples/rapaste/rapaste.sqlite +0 -0
  49. data/examples/rapaste/spec/rapaste.rb +49 -0
  50. data/examples/rapaste/src/controller.rb +69 -0
  51. data/examples/rapaste/src/model.rb +61 -0
  52. data/examples/rapaste/start.rb +20 -0
  53. data/examples/rapaste/template/copy.xhtml +10 -0
  54. data/examples/rapaste/template/index.xhtml +9 -0
  55. data/examples/rapaste/template/layout.xhtml +22 -0
  56. data/examples/rapaste/template/list.xhtml +28 -0
  57. data/examples/rapaste/template/view.xhtml +37 -0
  58. data/examples/sourceview/sourceview.rb +3 -3
  59. data/examples/templates/template_amrita2.rb +1 -3
  60. data/examples/todolist/spec/todolist.rb +15 -18
  61. data/examples/whywiki/spec/whywiki.rb +15 -20
  62. data/examples/whywiki/start.rb +0 -1
  63. data/examples/wikore/spec/wikore.rb +14 -19
  64. data/examples/wiktacular/spec/wiktacular.rb +8 -15
  65. data/lib/proto/{src/controller → controller}/main.rb +4 -4
  66. data/lib/proto/public/css/ramaze_error.css +39 -3
  67. data/lib/proto/public/js/jquery.js +2039 -1020
  68. data/lib/proto/spec/main.rb +27 -0
  69. data/lib/proto/start.rb +5 -5
  70. data/lib/proto/view/error.xhtml +62 -0
  71. data/lib/proto/view/index.xhtml +34 -0
  72. data/lib/proto/view/page.xhtml +15 -0
  73. data/lib/ramaze.rb +9 -7
  74. data/lib/ramaze/action.rb +7 -3
  75. data/lib/ramaze/action/render.rb +15 -5
  76. data/lib/ramaze/adapter.rb +5 -5
  77. data/lib/ramaze/adapter/base.rb +2 -2
  78. data/lib/ramaze/adapter/cgi.rb +1 -1
  79. data/lib/ramaze/adapter/evented_mongrel.rb +1 -1
  80. data/lib/ramaze/adapter/fcgi.rb +2 -2
  81. data/lib/ramaze/adapter/mongrel.rb +1 -1
  82. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +1 -1
  83. data/lib/ramaze/adapter/thin.rb +25 -0
  84. data/lib/ramaze/adapter/webrick.rb +1 -1
  85. data/lib/ramaze/cache.rb +3 -2
  86. data/lib/ramaze/cache/memcached.rb +1 -1
  87. data/lib/ramaze/cache/memory.rb +1 -1
  88. data/lib/ramaze/cache/yaml_store.rb +1 -1
  89. data/lib/ramaze/contrib.rb +1 -1
  90. data/lib/ramaze/contrib/auto_params.rb +12 -5
  91. data/lib/ramaze/contrib/auto_params/get_args.rb +1 -0
  92. data/lib/ramaze/contrib/facebook.rb +23 -0
  93. data/lib/ramaze/contrib/facebook/facebook.rb +168 -0
  94. data/lib/ramaze/contrib/gettext.rb +111 -0
  95. data/lib/ramaze/contrib/gettext/mo.rb +155 -0
  96. data/lib/ramaze/contrib/gettext/po.rb +109 -0
  97. data/lib/ramaze/contrib/gzip_filter.rb +1 -1
  98. data/lib/ramaze/contrib/route.rb +15 -5
  99. data/lib/ramaze/contrib/sequel/fill.rb +1 -1
  100. data/lib/ramaze/controller.rb +10 -4
  101. data/lib/ramaze/controller/error.rb +5 -13
  102. data/lib/ramaze/controller/main.rb +2 -0
  103. data/lib/ramaze/controller/resolve.rb +18 -10
  104. data/lib/ramaze/dispatcher.rb +1 -1
  105. data/lib/ramaze/dispatcher/action.rb +1 -1
  106. data/lib/ramaze/dispatcher/directory.rb +3 -2
  107. data/lib/ramaze/dispatcher/error.rb +5 -5
  108. data/lib/ramaze/dispatcher/file.rb +13 -2
  109. data/lib/ramaze/error.rb +1 -1
  110. data/lib/ramaze/gestalt.rb +2 -2
  111. data/lib/ramaze/global.rb +5 -5
  112. data/lib/ramaze/global/dsl.rb +1 -1
  113. data/lib/ramaze/global/globalstruct.rb +11 -5
  114. data/lib/ramaze/helper.rb +1 -1
  115. data/lib/ramaze/helper/aspect.rb +1 -1
  116. data/lib/ramaze/helper/auth.rb +2 -2
  117. data/lib/ramaze/helper/cache.rb +1 -1
  118. data/lib/ramaze/helper/cgi.rb +1 -1
  119. data/lib/ramaze/helper/file.rb +1 -1
  120. data/lib/ramaze/helper/flash.rb +1 -1
  121. data/lib/ramaze/helper/formatting.rb +1 -1
  122. data/lib/ramaze/helper/identity.rb +1 -1
  123. data/lib/ramaze/helper/inform.rb +1 -1
  124. data/lib/ramaze/helper/link.rb +4 -4
  125. data/lib/ramaze/helper/markaby.rb +1 -1
  126. data/lib/ramaze/helper/nitroform.rb +1 -1
  127. data/lib/ramaze/helper/pager.rb +2 -1
  128. data/lib/ramaze/helper/partial.rb +1 -1
  129. data/lib/ramaze/helper/redirect.rb +6 -1
  130. data/lib/ramaze/helper/sequel.rb +54 -0
  131. data/lib/ramaze/helper/stack.rb +1 -1
  132. data/lib/ramaze/inform.rb +1 -1
  133. data/lib/ramaze/inform/analogger.rb +1 -1
  134. data/lib/ramaze/inform/growl.rb +1 -1
  135. data/lib/ramaze/inform/hub.rb +1 -1
  136. data/lib/ramaze/inform/informer.rb +1 -1
  137. data/lib/ramaze/inform/informing.rb +2 -2
  138. data/lib/ramaze/inform/knotify.rb +1 -1
  139. data/lib/ramaze/inform/syslog.rb +1 -1
  140. data/lib/ramaze/inform/xosd.rb +1 -1
  141. data/lib/ramaze/snippets.rb +1 -1
  142. data/lib/ramaze/snippets/array/put_within.rb +1 -1
  143. data/lib/ramaze/snippets/blankslate.rb +7 -0
  144. data/lib/ramaze/snippets/dictionary.rb +6 -1
  145. data/lib/ramaze/snippets/divide.rb +1 -1
  146. data/lib/ramaze/snippets/kernel/__dir__.rb +1 -1
  147. data/lib/ramaze/snippets/kernel/acquire.rb +39 -0
  148. data/lib/ramaze/snippets/kernel/aquire.rb +1 -34
  149. data/lib/ramaze/snippets/kernel/constant.rb +1 -1
  150. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +1 -1
  151. data/lib/ramaze/snippets/numeric/filesize_format.rb +1 -1
  152. data/lib/ramaze/snippets/object/traits.rb +1 -1
  153. data/lib/ramaze/snippets/ordered_set.rb +12 -7
  154. data/lib/ramaze/snippets/ramaze/caller_info.rb +1 -1
  155. data/lib/ramaze/snippets/ramaze/caller_lines.rb +1 -1
  156. data/lib/ramaze/snippets/string/camel_case.rb +1 -1
  157. data/lib/ramaze/snippets/string/color.rb +2 -4
  158. data/lib/ramaze/snippets/string/each.rb +1 -1
  159. data/lib/ramaze/snippets/string/ord.rb +15 -0
  160. data/lib/ramaze/snippets/string/snake_case.rb +1 -1
  161. data/lib/ramaze/snippets/struct/fill.rb +4 -2
  162. data/lib/ramaze/snippets/struct/values_at.rb +2 -2
  163. data/lib/ramaze/snippets/symbol/to_proc.rb +15 -8
  164. data/lib/ramaze/snippets/thread/into.rb +1 -1
  165. data/lib/ramaze/sourcereload.rb +4 -3
  166. data/lib/ramaze/spec/helper.rb +85 -32
  167. data/lib/ramaze/spec/helper/bacon.rb +7 -0
  168. data/lib/ramaze/spec/helper/browser.rb +1 -2
  169. data/lib/ramaze/spec/helper/mock_http.rb +1 -1
  170. data/lib/ramaze/spec/helper/pretty_output.rb +70 -0
  171. data/lib/ramaze/spec/helper/requester.rb +1 -1
  172. data/lib/ramaze/spec/helper/simple_http.rb +5 -4
  173. data/lib/ramaze/spec/helper/snippets.rb +6 -0
  174. data/lib/ramaze/store/default.rb +1 -1
  175. data/lib/ramaze/template.rb +1 -1
  176. data/lib/ramaze/template/amrita2.rb +6 -5
  177. data/lib/ramaze/template/erubis.rb +1 -1
  178. data/lib/ramaze/template/ezamar.rb +1 -1
  179. data/lib/ramaze/template/ezamar/element.rb +1 -1
  180. data/lib/ramaze/template/ezamar/engine.rb +1 -1
  181. data/lib/ramaze/template/ezamar/morpher.rb +1 -1
  182. data/lib/ramaze/template/ezamar/render_partial.rb +1 -1
  183. data/lib/ramaze/template/haml.rb +1 -1
  184. data/lib/ramaze/template/liquid.rb +1 -1
  185. data/lib/ramaze/template/markaby.rb +1 -1
  186. data/lib/ramaze/template/nagoro.rb +4 -6
  187. data/lib/ramaze/template/none.rb +1 -1
  188. data/lib/ramaze/template/remarkably.rb +1 -1
  189. data/lib/ramaze/template/sass.rb +1 -1
  190. data/lib/ramaze/tool.rb +1 -1
  191. data/lib/ramaze/tool/create.rb +7 -1
  192. data/lib/ramaze/tool/localize.rb +7 -14
  193. data/lib/ramaze/tool/mime.rb +1 -1
  194. data/lib/ramaze/tool/record.rb +1 -1
  195. data/lib/ramaze/trinity.rb +1 -1
  196. data/lib/ramaze/trinity/request.rb +4 -2
  197. data/lib/ramaze/trinity/response.rb +1 -1
  198. data/lib/ramaze/trinity/session.rb +7 -1
  199. data/lib/ramaze/version.rb +3 -3
  200. data/lib/vendor/bacon.rb +317 -0
  201. data/rake_tasks/conf.rake +1 -1
  202. data/rake_tasks/maintenance.rake +7 -5
  203. data/rake_tasks/spec.rake +54 -40
  204. data/spec/contrib/auto_params.rb +21 -4
  205. data/spec/contrib/route.rb +31 -4
  206. data/spec/contrib/sequel/fill.rb +3 -4
  207. data/spec/examples/caching.rb +5 -2
  208. data/spec/examples/css.rb +5 -2
  209. data/spec/examples/element.rb +5 -4
  210. data/spec/examples/hello.rb +1 -0
  211. data/spec/examples/linking.rb +18 -0
  212. data/spec/examples/simple.rb +13 -18
  213. data/spec/examples/templates/template_amrita2.rb +3 -2
  214. data/spec/examples/templates/template_erubis.rb +3 -2
  215. data/spec/examples/templates/template_ezamar.rb +2 -1
  216. data/spec/examples/templates/template_haml.rb +3 -2
  217. data/spec/examples/templates/template_liquid.rb +3 -2
  218. data/spec/examples/templates/template_markaby.rb +3 -2
  219. data/spec/examples/templates/template_remarkably.rb +3 -2
  220. data/spec/ramaze/action/basics.rb +4 -4
  221. data/spec/ramaze/action/cache.rb +11 -13
  222. data/spec/ramaze/action/layout.rb +47 -3
  223. data/spec/ramaze/action/render.rb +3 -3
  224. data/spec/ramaze/action/template/instancevars/layout.xhtml +1 -0
  225. data/spec/ramaze/adapter.rb +7 -7
  226. data/spec/ramaze/adapter/mongrel.rb +1 -1
  227. data/spec/ramaze/adapter/record.rb +7 -7
  228. data/spec/ramaze/adapter/webrick.rb +1 -1
  229. data/spec/ramaze/cache.rb +6 -8
  230. data/spec/ramaze/controller.rb +77 -65
  231. data/spec/ramaze/controller/resolve.rb +2 -1
  232. data/spec/ramaze/controller/template_resolving.rb +3 -4
  233. data/spec/ramaze/dispatcher.rb +3 -4
  234. data/spec/ramaze/dispatcher/directory.rb +35 -35
  235. data/spec/ramaze/dispatcher/file.rb +8 -5
  236. data/spec/ramaze/element.rb +4 -4
  237. data/spec/ramaze/error.rb +13 -11
  238. data/spec/ramaze/gestalt.rb +1 -1
  239. data/spec/ramaze/helper/aspect.rb +2 -1
  240. data/spec/ramaze/helper/auth.rb +4 -2
  241. data/spec/ramaze/helper/cache.rb +10 -9
  242. data/spec/ramaze/helper/cgi.rb +2 -2
  243. data/spec/ramaze/helper/file.rb +1 -0
  244. data/spec/ramaze/helper/flash.rb +5 -4
  245. data/spec/ramaze/helper/formatting.rb +1 -1
  246. data/spec/ramaze/helper/link.rb +3 -3
  247. data/spec/ramaze/helper/pager.rb +44 -80
  248. data/spec/ramaze/helper/partial.rb +2 -3
  249. data/spec/ramaze/helper/redirect.rb +10 -1
  250. data/spec/ramaze/helper/stack.rb +4 -3
  251. data/spec/ramaze/helper/template/loop.xhtml +2 -1
  252. data/spec/ramaze/inform/informer.rb +2 -2
  253. data/spec/ramaze/inform/syslog.rb +1 -1
  254. data/spec/ramaze/localize.rb +26 -26
  255. data/spec/ramaze/morpher.rb +6 -7
  256. data/spec/ramaze/params.rb +7 -8
  257. data/spec/ramaze/request.rb +27 -6
  258. data/spec/ramaze/request/mongrel.rb +1 -1
  259. data/spec/ramaze/request/thin.rb +9 -0
  260. data/spec/ramaze/session.rb +2 -1
  261. data/spec/ramaze/store/default.rb +14 -17
  262. data/spec/ramaze/template.rb +5 -7
  263. data/spec/ramaze/template/amrita2.rb +4 -1
  264. data/spec/ramaze/template/erubis.rb +2 -1
  265. data/spec/ramaze/template/ezamar.rb +2 -3
  266. data/spec/ramaze/template/ezamar/other__index.xhtml +1 -0
  267. data/spec/ramaze/template/haml.rb +2 -1
  268. data/spec/ramaze/template/liquid.rb +4 -2
  269. data/spec/ramaze/template/markaby.rb +4 -2
  270. data/spec/ramaze/template/nagoro.rb +3 -4
  271. data/spec/ramaze/template/remarkably.rb +4 -2
  272. data/spec/ramaze/template/sass.rb +3 -2
  273. data/spec/ramaze/template/xslt.rb +4 -7
  274. data/spec/ramaze/trinity/request.rb +4 -3
  275. data/spec/ramaze/trinity/session.rb +6 -4
  276. data/spec/snippets/array/put_within.rb +3 -2
  277. data/spec/snippets/divide.rb +1 -4
  278. data/spec/snippets/kernel/__dir__.rb +1 -1
  279. data/spec/snippets/kernel/acquire.rb +71 -0
  280. data/spec/snippets/kernel/constant.rb +4 -8
  281. data/spec/snippets/numeric/filesize_format.rb +1 -1
  282. data/spec/snippets/ordered_set.rb +9 -2
  283. data/spec/snippets/ramaze/caller_info.rb +3 -3
  284. data/spec/snippets/ramaze/caller_lines.rb +3 -3
  285. data/spec/snippets/string/camel_case.rb +1 -1
  286. data/spec/snippets/string/color.rb +2 -2
  287. data/spec/snippets/string/snake_case.rb +5 -1
  288. data/spec/snippets/string/unindent.rb +1 -1
  289. data/spec/snippets/struct/fill.rb +14 -15
  290. data/spec/snippets/struct/values_at.rb +15 -10
  291. data/spec/snippets/symbol/to_proc.rb +13 -0
  292. data/spec/snippets/thread/into.rb +3 -4
  293. metadata +458 -386
  294. data/doc/README.html +0 -729
  295. data/doc/changes.txt +0 -5044
  296. data/doc/changes.xml +0 -5046
  297. data/lib/proto/public/error.zmr +0 -61
  298. data/lib/proto/src/element/page.rb +0 -17
  299. data/lib/proto/src/model.rb +0 -6
  300. data/lib/proto/template/index.xhtml +0 -15
  301. data/lib/ramaze/spec/helper/layout.rb +0 -58
  302. data/lib/ramaze/spec/helper/minimal.rb +0 -23
  303. data/lib/ramaze/spec/helper/wrap.rb +0 -198
  304. data/spec/snippets/kernel/aquire.rb +0 -71
@@ -1,4 +1,4 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "Numeric#filesize_format" do
4
4
  it 'it should convert filesizes to human readable format' do
@@ -1,10 +1,17 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe 'OrderedSet' do
4
4
  os = OrderedSet.new(1,2,3,1)
5
5
 
6
6
  it 'should create sets' do
7
7
  OrderedSet.new.should == []
8
+ OrderedSet.new(1).should == [1]
9
+ OrderedSet.new(1,2).should == [1,2]
10
+ OrderedSet.new([1,2,3]).should == [1,2,3]
11
+ end
12
+
13
+ it 'should compare sets' do
14
+ os.should == OrderedSet.new(1,2,3,1)
8
15
  os.should == OrderedSet.new([1,2,3,1])
9
16
  end
10
17
 
@@ -53,4 +60,4 @@ describe 'OrderedSet' do
53
60
  os[1..2] = 3
54
61
  os.should == [3,7,8,1,2]
55
62
  end
56
- end
63
+ end
@@ -18,21 +18,21 @@ describe "Ramaze#caller_info" do
18
18
  it "should report correct informations" do
19
19
  file,line,meth=foo()
20
20
  file.should == __FILE__
21
- line.should match(/\d+/)
21
+ line.should.match(/\d+/)
22
22
  meth.should == 'foo'
23
23
  end
24
24
 
25
25
  it "should report correct informations on nested defs" do
26
26
  file,line,meth=bar()
27
27
  file.should == __FILE__
28
- line.should match(/\d+/)
28
+ line.should.match(/\d+/)
29
29
  meth.should == 'foo'
30
30
  end
31
31
 
32
32
  it "should report correct informations on other callers" do
33
33
  file,line,meth=baz()
34
34
  file.should == __FILE__
35
- line.should match(/\d+/)
35
+ line.should.match(/\d+/)
36
36
  meth.should == 'baz'
37
37
  end
38
38
 
@@ -1,8 +1,8 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "Ramaze#caller_info" do
4
- before :all do
5
- @file = Ramaze::BASEDIR/'ramaze/gestalt.rb'
4
+ before do
5
+ @file = File.expand_path(File.join(File.dirname(__FILE__), '../../../lib/ramaze/gestalt.rb'))
6
6
  end
7
7
 
8
8
  it 'should show line numbers' do
@@ -1,4 +1,4 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "String#camel_case" do
4
4
 
@@ -1,11 +1,11 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe 'String#color' do
4
4
  it 'should define methods to return ANSI strings' do
5
5
  %w[reset bold dark underline blink negative
6
6
  black red green yellow blue magenta cyan white].each do |m|
7
7
  "string".respond_to? m
8
- "string".send(m).should match(/\e\[\d+mstring\e\[0m/)
8
+ "string".send(m).should.match(/\e\[\d+mstring\e\[0m/)
9
9
  end
10
10
  end
11
11
  end
@@ -1,4 +1,4 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "String#snake_case" do
4
4
 
@@ -14,6 +14,10 @@ describe "String#snake_case" do
14
14
  'Camel_Case'.snake_case.should == 'camel__case'
15
15
  end
16
16
 
17
+ it 'should replace spaces' do
18
+ 'Linked List'.snake_case.should == 'linked_list'
19
+ end
20
+
17
21
  it 'should group uppercase words together' do
18
22
  'CSSController'.snake_case.should == 'css_controller'
19
23
  end
@@ -1,4 +1,4 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "String#unindent" do
4
4
  it "should remove indentation" do
@@ -1,27 +1,26 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "Struct.fill" do
4
-
5
4
  Point = Struct.new(:x,:y)
5
+
6
6
  it "should return a well set struct" do
7
- p = Point.fill(:x=>1,:y=>2)
8
- p.should be_an_instance_of(Point)
9
- p[0].should == 1
10
- p[1].should == 2
7
+ point = Point.fill(:x=>1,:y=>2)
8
+ point.should.instance_of? Point
9
+ point[0].should == 1
10
+ point[1].should == 2
11
11
  end
12
12
 
13
13
  it "should work with partial arguments" do
14
- p = Point.fill(:x=>1)
15
- p.should be_an_instance_of(Point)
16
- p[0].should == 1
17
- p[1].should == nil
14
+ point = Point.fill(:x=>1)
15
+ point.should.instance_of(Point)
16
+ point[0].should == 1
17
+ point[1].should == nil
18
18
  end
19
19
 
20
20
  it "should not fail with foreign keys" do
21
- p = Point.fill(:k=>1)
22
- p.should be_an_instance_of(Point)
23
- p[0].should == nil
24
- p[1].should == nil
21
+ point = Point.fill(:k=>1)
22
+ point.should.instance_of(Point)
23
+ point[0].should == nil
24
+ point[1].should == nil
25
25
  end
26
-
27
26
  end
@@ -1,39 +1,44 @@
1
- require 'spec/helper'
1
+ require 'lib/ramaze/spec/helper/snippets'
2
2
 
3
3
  describe "Struct#values_at" do
4
4
  Point = Struct.new(:x,:y)
5
5
 
6
+ before do
7
+ @point = Point.new(1,2)
8
+ end
9
+
6
10
  it "should access a single value" do
7
- Point.new(1,2).values_at(:x).should == [1]
11
+ @point.values_at(:x).should == [1]
8
12
  end
9
13
 
10
14
  it "should access multiple values" do
11
- Point.new(1,2).values_at(:x,:y).should == [1,2]
15
+ @point.values_at(:x,:y).should == [1,2]
12
16
  end
13
17
 
14
18
  it "should access values regardless of order" do
15
- Point.new(1,2).values_at(:y,:x).should == [2,1]
19
+ @point.values_at(:y,:x).should == [2,1]
16
20
  end
17
21
 
18
22
  it "should get same value twice" do
19
- Point.new(1,2).values_at(:x,:x).should == [1,1]
23
+ @point.values_at(:x,:x).should == [1,1]
20
24
  end
21
25
 
22
26
  it "should raise on wrong value" do
23
- # shouldn't this be NoMethodError ?
24
- lambda{Point.new(1,2).values_at(:k)}.should raise_error(NameError)
27
+ should.raise(NameError){
28
+ @point.values_at(:k)
29
+ }
25
30
  end
26
31
 
27
32
  it "should work with strings" do
28
- Point.new(1).values_at('x').should == [1]
33
+ @point.values_at('x').should == [1]
29
34
  end
30
35
 
31
36
  it "should work with numbers (ruby compat)" do
32
- Point.new(1).values_at(0).should == [1]
37
+ @point.values_at(0).should == [1]
33
38
  end
34
39
 
35
40
  it "should work with mixed args" do
36
- Point.new(1).values_at(0,:x,'x',:y).should == [1,1,1,nil]
41
+ @point.values_at(0,:x,'x',:y).should == [1,1,1,2]
37
42
  end
38
43
 
39
44
  end
@@ -0,0 +1,13 @@
1
+ require 'lib/ramaze/spec/helper/snippets'
2
+
3
+ describe 'Symbol#to_proc' do
4
+ it 'should convert symbols to procs' do
5
+ [:one, :two, :three].map(&:to_s).should == %w[ one two three ]
6
+ end
7
+
8
+ it 'should work with list objects' do
9
+ { 1 => "one",
10
+ 2 => "two",
11
+ 3 => "three" }.sort_by(&:first).map(&:last).should == %w[ one two three ]
12
+ end
13
+ end
@@ -1,6 +1,3 @@
1
- # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
2
- # All files in this distribution are subject to the terms of the Ruby license.
3
-
4
1
  require 'spec/helper'
5
2
 
6
3
  class TCThreadIntoController < Ramaze::Controller
@@ -14,8 +11,10 @@ class TCThreadIntoController < Ramaze::Controller
14
11
  end
15
12
 
16
13
  describe 'Thread.into' do
14
+ behaves_like 'http'
17
15
  ramaze
16
+
18
17
  it 'should provide access to thread vars' do
19
18
  get('/hello').body.should == 'hello, goodbye'
20
19
  end
21
- end
20
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ramaze
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - manveru
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2007-11-29 00:00:00 +09:00
12
+ date: 2008-01-10 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -59,530 +59,602 @@ files:
59
59
  - doc/CHANGELOG
60
60
  - Rakefile
61
61
  - examples/auth
62
+ - examples/auth/auth.rb
62
63
  - examples/auth/template
63
64
  - examples/auth/template/layout.haml
64
65
  - examples/auth/template/login.haml
65
- - examples/auth/auth.rb
66
66
  - examples/blog
67
+ - examples/blog/README
68
+ - examples/blog/public
69
+ - examples/blog/public/styles
70
+ - examples/blog/public/styles/blog.css
71
+ - examples/blog/spec
72
+ - examples/blog/spec/blog.rb
67
73
  - examples/blog/src
68
- - examples/blog/src/model.rb
69
74
  - examples/blog/src/controller.rb
75
+ - examples/blog/src/model.rb
70
76
  - examples/blog/src/view.rb
71
- - examples/blog/spec
72
- - examples/blog/spec/blog.rb
73
- - examples/blog/README
77
+ - examples/blog/start.rb
74
78
  - examples/blog/template
75
- - examples/blog/template/new.xhtml
76
79
  - examples/blog/template/edit.xhtml
77
80
  - examples/blog/template/index.xhtml
78
- - examples/blog/public
79
- - examples/blog/public/styles
80
- - examples/blog/public/styles/blog.css
81
- - examples/blog/start.rb
82
- - examples/nitro_form.rb
81
+ - examples/blog/template/new.xhtml
83
82
  - examples/caching.rb
84
- - examples/wiktacular
85
- - examples/wiktacular/mkd
86
- - examples/wiktacular/mkd/link
87
- - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
88
- - examples/wiktacular/mkd/link/current.mkd
89
- - examples/wiktacular/mkd/main
90
- - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
91
- - examples/wiktacular/mkd/main/current.mkd
92
- - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
93
- - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
94
- - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
95
- - examples/wiktacular/mkd/testing
96
- - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
97
- - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
98
- - examples/wiktacular/mkd/testing/current.mkd
99
- - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
100
- - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
101
- - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
102
- - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
103
- - examples/wiktacular/mkd/markdown
104
- - examples/wiktacular/mkd/markdown/current.mkd
105
- - examples/wiktacular/src
106
- - examples/wiktacular/src/model.rb
107
- - examples/wiktacular/src/controller.rb
108
- - examples/wiktacular/spec
109
- - examples/wiktacular/spec/wiktacular.rb
110
- - examples/wiktacular/README
111
- - examples/wiktacular/template
112
- - examples/wiktacular/template/new.xhtml
113
- - examples/wiktacular/template/html_layout.xhtml
114
- - examples/wiktacular/template/edit.xhtml
115
- - examples/wiktacular/template/index.xhtml
116
- - examples/wiktacular/public
117
- - examples/wiktacular/public/favicon.ico
118
- - examples/wiktacular/public/screen.css
119
- - examples/wiktacular/start.rb
83
+ - examples/css.rb
84
+ - examples/element.rb
85
+ - examples/facebook.rb
86
+ - examples/hello.rb
87
+ - examples/identity.rb
88
+ - examples/layout.rb
89
+ - examples/linking.rb
90
+ - examples/memleak_detector.rb
91
+ - examples/nitro_form.rb
92
+ - examples/ramaise.rb
93
+ - examples/rammit
94
+ - examples/rammit/spec
95
+ - examples/rammit/spec/rammit.rb
96
+ - examples/rammit/src
97
+ - examples/rammit/src/controller
98
+ - examples/rammit/src/controller/main.rb
99
+ - examples/rammit/src/controller/page.rb
100
+ - examples/rammit/src/model.rb
101
+ - examples/rammit/start.rb
102
+ - examples/rammit/template
103
+ - examples/rammit/template/index.xhtml
104
+ - examples/rammit/template/page
105
+ - examples/rammit/template/page/view.xhtml
106
+ - examples/rapaste
107
+ - examples/rapaste/Rakefile
108
+ - examples/rapaste/public
109
+ - examples/rapaste/public/css
110
+ - examples/rapaste/public/css/active4d.css
111
+ - examples/rapaste/public/css/all_hallows_eve.css
112
+ - examples/rapaste/public/css/amy.css
113
+ - examples/rapaste/public/css/blackboard.css
114
+ - examples/rapaste/public/css/brilliance_black.css
115
+ - examples/rapaste/public/css/brilliance_dull.css
116
+ - examples/rapaste/public/css/cobalt.css
117
+ - examples/rapaste/public/css/dawn.css
118
+ - examples/rapaste/public/css/display.css
119
+ - examples/rapaste/public/css/eiffel.css
120
+ - examples/rapaste/public/css/espresso_libre.css
121
+ - examples/rapaste/public/css/idle.css
122
+ - examples/rapaste/public/css/iplastic.css
123
+ - examples/rapaste/public/css/lazy.css
124
+ - examples/rapaste/public/css/mac_classic.css
125
+ - examples/rapaste/public/css/magicwb_amiga.css
126
+ - examples/rapaste/public/css/pastels_on_dark.css
127
+ - examples/rapaste/public/css/slush_poppies.css
128
+ - examples/rapaste/public/css/spacecadet.css
129
+ - examples/rapaste/public/css/sunburst.css
130
+ - examples/rapaste/public/css/twilight.css
131
+ - examples/rapaste/public/css/zenburnesque.css
132
+ - examples/rapaste/public/js
133
+ - examples/rapaste/public/js/jquery.js
134
+ - examples/rapaste/rapaste.sqlite
135
+ - examples/rapaste/spec
136
+ - examples/rapaste/spec/rapaste.rb
137
+ - examples/rapaste/src
138
+ - examples/rapaste/src/controller.rb
139
+ - examples/rapaste/src/model.rb
140
+ - examples/rapaste/start.rb
141
+ - examples/rapaste/template
142
+ - examples/rapaste/template/copy.xhtml
143
+ - examples/rapaste/template/index.xhtml
144
+ - examples/rapaste/template/layout.xhtml
145
+ - examples/rapaste/template/list.xhtml
146
+ - examples/rapaste/template/view.xhtml
147
+ - examples/simple.rb
148
+ - examples/simple_auth.rb
120
149
  - examples/sourceview
121
- - examples/sourceview/template
122
- - examples/sourceview/template/index.haml
123
150
  - examples/sourceview/public
124
- - examples/sourceview/public/jquery.treeview.css
125
- - examples/sourceview/public/jquery.treeview.js
126
- - examples/sourceview/public/jquery.js
151
+ - examples/sourceview/public/coderay.css
127
152
  - examples/sourceview/public/images
128
153
  - examples/sourceview/public/images/file.gif
129
154
  - examples/sourceview/public/images/folder.gif
130
155
  - examples/sourceview/public/images/tv-collapsable-last.gif
131
156
  - examples/sourceview/public/images/tv-collapsable.gif
132
- - examples/sourceview/public/images/tv-item.gif
157
+ - examples/sourceview/public/images/tv-expandable-last.gif
133
158
  - examples/sourceview/public/images/tv-expandable.gif
134
159
  - examples/sourceview/public/images/tv-item-last.gif
135
- - examples/sourceview/public/images/tv-expandable-last.gif
136
- - examples/sourceview/public/coderay.css
160
+ - examples/sourceview/public/images/tv-item.gif
161
+ - examples/sourceview/public/jquery.js
162
+ - examples/sourceview/public/jquery.treeview.css
163
+ - examples/sourceview/public/jquery.treeview.js
137
164
  - examples/sourceview/public/sourceview.js
138
165
  - examples/sourceview/sourceview.rb
139
- - examples/simple_auth.rb
140
- - examples/css.rb
141
- - examples/memleak_detector.rb
166
+ - examples/sourceview/template
167
+ - examples/sourceview/template/index.haml
168
+ - examples/templates
169
+ - examples/templates/template
170
+ - examples/templates/template/external.amrita
171
+ - examples/templates/template/external.haml
172
+ - examples/templates/template/external.liquid
173
+ - examples/templates/template/external.mab
174
+ - examples/templates/template/external.nag
175
+ - examples/templates/template/external.rem
176
+ - examples/templates/template/external.rhtml
177
+ - examples/templates/template/external.xsl
178
+ - examples/templates/template/external.zmr
179
+ - examples/templates/template_amrita2.rb
180
+ - examples/templates/template_erubis.rb
181
+ - examples/templates/template_ezamar.rb
182
+ - examples/templates/template_haml.rb
183
+ - examples/templates/template_liquid.rb
184
+ - examples/templates/template_markaby.rb
185
+ - examples/templates/template_nagoro.rb
186
+ - examples/templates/template_remarkably.rb
187
+ - examples/templates/template_xslt.rb
142
188
  - examples/todolist
143
- - examples/todolist/src
144
- - examples/todolist/src/element
145
- - examples/todolist/src/element/page.rb
146
- - examples/todolist/src/model.rb
147
- - examples/todolist/src/controller
148
- - examples/todolist/src/controller/main.rb
149
- - examples/todolist/spec
150
- - examples/todolist/spec/todolist.rb
151
189
  - examples/todolist/README
152
- - examples/todolist/template
153
- - examples/todolist/template/new.xhtml
154
- - examples/todolist/template/index.xhtml
155
190
  - examples/todolist/public
156
- - examples/todolist/public/js
157
- - examples/todolist/public/js/jquery.js
158
191
  - examples/todolist/public/css
159
192
  - examples/todolist/public/favicon.ico
193
+ - examples/todolist/public/js
194
+ - examples/todolist/public/js/jquery.js
160
195
  - examples/todolist/public/ramaze.png
196
+ - examples/todolist/spec
197
+ - examples/todolist/spec/todolist.rb
198
+ - examples/todolist/src
199
+ - examples/todolist/src/controller
200
+ - examples/todolist/src/controller/main.rb
201
+ - examples/todolist/src/element
202
+ - examples/todolist/src/element/page.rb
203
+ - examples/todolist/src/model.rb
161
204
  - examples/todolist/start.rb
162
- - examples/identity.rb
163
- - examples/layout.rb
164
- - examples/wikore
165
- - examples/wikore/src
166
- - examples/wikore/src/model.rb
167
- - examples/wikore/src/controller.rb
168
- - examples/wikore/spec
169
- - examples/wikore/spec/wikore.rb
170
- - examples/wikore/template
171
- - examples/wikore/template/index.xhtml
172
- - examples/wikore/public
173
- - examples/wikore/start.rb
174
- - examples/element.rb
175
- - examples/simple.rb
205
+ - examples/todolist/template
206
+ - examples/todolist/template/index.xhtml
207
+ - examples/todolist/template/new.xhtml
176
208
  - examples/whywiki
177
209
  - examples/whywiki/spec
178
210
  - examples/whywiki/spec/whywiki.rb
211
+ - examples/whywiki/start.rb
179
212
  - examples/whywiki/template
180
- - examples/whywiki/template/show.xhtml
181
213
  - examples/whywiki/template/edit.xhtml
182
- - examples/whywiki/start.rb
183
- - examples/ramaise.rb
184
- - examples/hello.rb
185
- - examples/templates
186
- - examples/templates/template_ezamar.rb
187
- - examples/templates/template_erubis.rb
188
- - examples/templates/template_nagoro.rb
189
- - examples/templates/template_remarkably.rb
190
- - examples/templates/template_liquid.rb
191
- - examples/templates/template
192
- - examples/templates/template/external.mab
193
- - examples/templates/template/external.nag
194
- - examples/templates/template/external.rem
195
- - examples/templates/template/external.xsl
196
- - examples/templates/template/external.zmr
197
- - examples/templates/template/external.amrita
198
- - examples/templates/template/external.liquid
199
- - examples/templates/template/external.rhtml
200
- - examples/templates/template/external.haml
201
- - examples/templates/template_amrita2.rb
202
- - examples/templates/template_haml.rb
203
- - examples/templates/template_markaby.rb
204
- - examples/templates/template_xslt.rb
214
+ - examples/whywiki/template/show.xhtml
215
+ - examples/wikore
216
+ - examples/wikore/public
217
+ - examples/wikore/spec
218
+ - examples/wikore/spec/wikore.rb
219
+ - examples/wikore/src
220
+ - examples/wikore/src/controller.rb
221
+ - examples/wikore/src/model.rb
222
+ - examples/wikore/start.rb
223
+ - examples/wikore/template
224
+ - examples/wikore/template/index.xhtml
225
+ - examples/wiktacular
226
+ - examples/wiktacular/README
227
+ - examples/wiktacular/mkd
228
+ - examples/wiktacular/mkd/link
229
+ - examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd
230
+ - examples/wiktacular/mkd/link/current.mkd
231
+ - examples/wiktacular/mkd/main
232
+ - examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd
233
+ - examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd
234
+ - examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd
235
+ - examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd
236
+ - examples/wiktacular/mkd/main/current.mkd
237
+ - examples/wiktacular/mkd/markdown
238
+ - examples/wiktacular/mkd/markdown/current.mkd
239
+ - examples/wiktacular/mkd/testing
240
+ - examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd
241
+ - examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd
242
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd
243
+ - examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd
244
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd
245
+ - examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd
246
+ - examples/wiktacular/mkd/testing/current.mkd
247
+ - examples/wiktacular/public
248
+ - examples/wiktacular/public/favicon.ico
249
+ - examples/wiktacular/public/screen.css
250
+ - examples/wiktacular/spec
251
+ - examples/wiktacular/spec/wiktacular.rb
252
+ - examples/wiktacular/src
253
+ - examples/wiktacular/src/controller.rb
254
+ - examples/wiktacular/src/model.rb
255
+ - examples/wiktacular/start.rb
256
+ - examples/wiktacular/template
257
+ - examples/wiktacular/template/edit.xhtml
258
+ - examples/wiktacular/template/html_layout.xhtml
259
+ - examples/wiktacular/template/index.xhtml
260
+ - examples/wiktacular/template/new.xhtml
205
261
  - bin/ramaze
262
+ - doc/AUTHORS
263
+ - doc/COPYING
206
264
  - doc/GPL
265
+ - doc/INSTALL
266
+ - doc/LEGAL
267
+ - doc/ProjectInfo
207
268
  - doc/TODO
208
269
  - doc/meta
209
- - doc/meta/internals.txt
210
- - doc/meta/configuration.txt
211
270
  - doc/meta/announcement.txt
271
+ - doc/meta/configuration.txt
272
+ - doc/meta/internals.txt
212
273
  - doc/meta/users.kml
213
- - doc/LEGAL
214
274
  - doc/migrate
215
275
  - doc/migrate/1110_to_1111.txt
216
276
  - doc/readme_chunks
217
277
  - doc/readme_chunks/appendix.txt
218
- - doc/readme_chunks/thanks.txt
219
- - doc/readme_chunks/principles.txt
220
- - doc/readme_chunks/introduction.txt
221
- - doc/readme_chunks/getting_started.txt
222
278
  - doc/readme_chunks/examples.txt
223
- - doc/readme_chunks/installing.txt
224
279
  - doc/readme_chunks/features.txt
225
280
  - doc/readme_chunks/getting_help.txt
281
+ - doc/readme_chunks/getting_started.txt
282
+ - doc/readme_chunks/installing.txt
283
+ - doc/readme_chunks/introduction.txt
284
+ - doc/readme_chunks/principles.txt
285
+ - doc/readme_chunks/thanks.txt
226
286
  - doc/tutorial
227
287
  - doc/tutorial/todolist.html
228
288
  - doc/tutorial/todolist.mkd
229
- - doc/AUTHORS
230
- - doc/README.html
231
- - doc/INSTALL
232
- - doc/COPYING
233
- - doc/ProjectInfo
234
- - doc/changes.txt
235
- - doc/changes.xml
236
289
  - spec/contrib
237
290
  - spec/contrib/auto_params.rb
238
291
  - spec/contrib/route.rb
239
292
  - spec/contrib/sequel
240
293
  - spec/contrib/sequel/fill.rb
294
+ - spec/examples
295
+ - spec/examples/caching.rb
296
+ - spec/examples/css.rb
297
+ - spec/examples/element.rb
298
+ - spec/examples/hello.rb
299
+ - spec/examples/linking.rb
300
+ - spec/examples/simple.rb
301
+ - spec/examples/templates
302
+ - spec/examples/templates/template_amrita2.rb
303
+ - spec/examples/templates/template_erubis.rb
304
+ - spec/examples/templates/template_ezamar.rb
305
+ - spec/examples/templates/template_haml.rb
306
+ - spec/examples/templates/template_liquid.rb
307
+ - spec/examples/templates/template_markaby.rb
308
+ - spec/examples/templates/template_remarkably.rb
309
+ - spec/helper.rb
241
310
  - spec/ramaze
242
- - spec/ramaze/request
243
- - spec/ramaze/request/mongrel.rb
244
- - spec/ramaze/request/webrick.rb
245
- - spec/ramaze/store
246
- - spec/ramaze/store/default.rb
247
- - spec/ramaze/error.rb
248
- - spec/ramaze/template
249
- - spec/ramaze/template/haml
250
- - spec/ramaze/template/haml/index.haml
251
- - spec/ramaze/template/haml/with_vars.haml
252
- - spec/ramaze/template/sass
253
- - spec/ramaze/template/sass/file.css.sass
254
- - spec/ramaze/template/xslt
255
- - spec/ramaze/template/xslt/products.xsl
256
- - spec/ramaze/template/xslt/concat_words.xsl
257
- - spec/ramaze/template/xslt/index.xsl
258
- - spec/ramaze/template/xslt/ruby_version.xsl
259
- - spec/ramaze/template/markaby.rb
260
- - spec/ramaze/template/xslt.rb
261
- - spec/ramaze/template/sass.rb
262
- - spec/ramaze/template/ezamar.rb
263
- - spec/ramaze/template/erubis.rb
264
- - spec/ramaze/template/nagoro.rb
265
- - spec/ramaze/template/markaby
266
- - spec/ramaze/template/markaby/external.mab
267
- - spec/ramaze/template/markaby/sum.mab
268
- - spec/ramaze/template/remarkably
269
- - spec/ramaze/template/remarkably/external.rem
270
- - spec/ramaze/template/remarkably/sum.rem
271
- - spec/ramaze/template/liquid.rb
272
- - spec/ramaze/template/remarkably.rb
273
- - spec/ramaze/template/erubis
274
- - spec/ramaze/template/erubis/sum.rhtml
275
- - spec/ramaze/template/ezamar
276
- - spec/ramaze/template/ezamar/sum.zmr
277
- - spec/ramaze/template/ezamar/nested.zmr
278
- - spec/ramaze/template/ezamar/combined.zmr
279
- - spec/ramaze/template/ezamar/index.zmr
280
- - spec/ramaze/template/ezamar/some__long__action.zmr
281
- - spec/ramaze/template/ezamar/file_only.zmr
282
- - spec/ramaze/template/ezamar/another
283
- - spec/ramaze/template/ezamar/another/long
284
- - spec/ramaze/template/ezamar/another/long/action.zmr
285
- - spec/ramaze/template/liquid
286
- - spec/ramaze/template/liquid/index.liquid
287
- - spec/ramaze/template/liquid/products.liquid
288
- - spec/ramaze/template/haml.rb
289
- - spec/ramaze/template/nagoro
290
- - spec/ramaze/template/nagoro/sum.nag
291
- - spec/ramaze/template/nagoro/nested.nag
292
- - spec/ramaze/template/nagoro/combined.nag
293
- - spec/ramaze/template/nagoro/index.nag
294
- - spec/ramaze/template/nagoro/some__long__action.nag
295
- - spec/ramaze/template/nagoro/file_only.nag
296
- - spec/ramaze/template/nagoro/another
297
- - spec/ramaze/template/nagoro/another/long
298
- - spec/ramaze/template/nagoro/another/long/action.nag
299
- - spec/ramaze/template/ramaze
300
- - spec/ramaze/template/ramaze/external.test
301
- - spec/ramaze/template/amrita2
302
- - spec/ramaze/template/amrita2/sum.amrita
303
- - spec/ramaze/template/amrita2/index.amrita
304
- - spec/ramaze/template/amrita2/data.amrita
305
- - spec/ramaze/template/amrita2.rb
306
- - spec/ramaze/cache.rb
307
311
  - spec/ramaze/action
308
312
  - spec/ramaze/action/basics.rb
309
- - spec/ramaze/action/template
310
- - spec/ramaze/action/template/sub
311
- - spec/ramaze/action/template/sub/sub_wrapper.xhtml
312
- - spec/ramaze/action/template/bar.xhtml
313
- - spec/ramaze/action/template/single_wrapper.xhtml
314
- - spec/ramaze/action/template/other_wrapper.xhtml
315
313
  - spec/ramaze/action/cache.rb
316
314
  - spec/ramaze/action/layout.rb
317
315
  - spec/ramaze/action/render.rb
318
- - spec/ramaze/template.rb
319
- - spec/ramaze/helper
320
- - spec/ramaze/helper/pager.rb
321
- - spec/ramaze/helper/link.rb
322
- - spec/ramaze/helper/template
323
- - spec/ramaze/helper/template/num.xhtml
324
- - spec/ramaze/helper/template/test_template.xhtml
325
- - spec/ramaze/helper/template/partial.xhtml
326
- - spec/ramaze/helper/template/recursive.xhtml
327
- - spec/ramaze/helper/template/loop.xhtml
328
- - spec/ramaze/helper/cache.rb
329
- - spec/ramaze/helper/partial.rb
330
- - spec/ramaze/helper/file.rb
331
- - spec/ramaze/helper/cgi.rb
332
- - spec/ramaze/helper/redirect.rb
333
- - spec/ramaze/helper/flash.rb
334
- - spec/ramaze/helper/stack.rb
335
- - spec/ramaze/helper/formatting.rb
336
- - spec/ramaze/helper/auth.rb
337
- - spec/ramaze/helper/aspect.rb
338
- - spec/ramaze/adapter.rb
339
- - spec/ramaze/localize.rb
340
- - spec/ramaze/inform
341
- - spec/ramaze/inform/informer.rb
342
- - spec/ramaze/inform/syslog.rb
343
- - spec/ramaze/trinity
344
- - spec/ramaze/trinity/request.rb
345
- - spec/ramaze/trinity/session.rb
316
+ - spec/ramaze/action/template
317
+ - spec/ramaze/action/template/bar.xhtml
318
+ - spec/ramaze/action/template/instancevars
319
+ - spec/ramaze/action/template/instancevars/layout.xhtml
320
+ - spec/ramaze/action/template/other_wrapper.xhtml
321
+ - spec/ramaze/action/template/single_wrapper.xhtml
322
+ - spec/ramaze/action/template/sub
323
+ - spec/ramaze/action/template/sub/sub_wrapper.xhtml
346
324
  - spec/ramaze/adapter
347
325
  - spec/ramaze/adapter/mongrel.rb
348
- - spec/ramaze/adapter/webrick.rb
349
326
  - spec/ramaze/adapter/record.rb
350
- - spec/ramaze/request.rb
327
+ - spec/ramaze/adapter/webrick.rb
328
+ - spec/ramaze/adapter.rb
329
+ - spec/ramaze/cache.rb
351
330
  - spec/ramaze/controller
352
331
  - spec/ramaze/controller/resolve.rb
353
- - spec/ramaze/controller/template_resolving.rb
354
332
  - spec/ramaze/controller/template
333
+ - spec/ramaze/controller/template/greet.xhtml
334
+ - spec/ramaze/controller/template/list.xhtml
355
335
  - spec/ramaze/controller/template/other
356
336
  - spec/ramaze/controller/template/other/greet
357
337
  - spec/ramaze/controller/template/other/greet/other.xhtml
358
- - spec/ramaze/controller/template/greet.xhtml
359
- - spec/ramaze/controller/template/list.xhtml
338
+ - spec/ramaze/controller/template_resolving.rb
360
339
  - spec/ramaze/controller.rb
361
- - spec/ramaze/public
362
- - spec/ramaze/public/favicon.ico
363
- - spec/ramaze/public/ramaze.png
364
- - spec/ramaze/public/test_download.css
365
- - spec/ramaze/public/error404.xhtml
366
- - spec/ramaze/dispatcher.rb
367
340
  - spec/ramaze/dispatcher
341
+ - spec/ramaze/dispatcher/directory.rb
368
342
  - spec/ramaze/dispatcher/file.rb
369
343
  - spec/ramaze/dispatcher/public
370
344
  - spec/ramaze/dispatcher/public/favicon.ico
371
345
  - spec/ramaze/dispatcher/public/test_download.css
372
- - spec/ramaze/dispatcher/directory.rb
373
- - spec/ramaze/gestalt.rb
374
- - spec/ramaze/session.rb
346
+ - spec/ramaze/dispatcher.rb
375
347
  - spec/ramaze/element.rb
348
+ - spec/ramaze/error.rb
349
+ - spec/ramaze/gestalt.rb
350
+ - spec/ramaze/helper
351
+ - spec/ramaze/helper/aspect.rb
352
+ - spec/ramaze/helper/auth.rb
353
+ - spec/ramaze/helper/cache.rb
354
+ - spec/ramaze/helper/cgi.rb
355
+ - spec/ramaze/helper/file.rb
356
+ - spec/ramaze/helper/flash.rb
357
+ - spec/ramaze/helper/formatting.rb
358
+ - spec/ramaze/helper/link.rb
359
+ - spec/ramaze/helper/pager.rb
360
+ - spec/ramaze/helper/partial.rb
361
+ - spec/ramaze/helper/redirect.rb
362
+ - spec/ramaze/helper/stack.rb
363
+ - spec/ramaze/helper/template
364
+ - spec/ramaze/helper/template/loop.xhtml
365
+ - spec/ramaze/helper/template/num.xhtml
366
+ - spec/ramaze/helper/template/partial.xhtml
367
+ - spec/ramaze/helper/template/recursive.xhtml
368
+ - spec/ramaze/helper/template/test_template.xhtml
369
+ - spec/ramaze/inform
370
+ - spec/ramaze/inform/informer.rb
371
+ - spec/ramaze/inform/syslog.rb
372
+ - spec/ramaze/localize.rb
376
373
  - spec/ramaze/morpher.rb
377
374
  - spec/ramaze/params.rb
378
- - spec/examples
379
- - spec/examples/caching.rb
380
- - spec/examples/css.rb
381
- - spec/examples/element.rb
382
- - spec/examples/simple.rb
383
- - spec/examples/hello.rb
384
- - spec/examples/templates
385
- - spec/examples/templates/template_ezamar.rb
386
- - spec/examples/templates/template_erubis.rb
387
- - spec/examples/templates/template_remarkably.rb
388
- - spec/examples/templates/template_liquid.rb
389
- - spec/examples/templates/template_amrita2.rb
390
- - spec/examples/templates/template_haml.rb
391
- - spec/examples/templates/template_markaby.rb
392
- - spec/helper.rb
375
+ - spec/ramaze/public
376
+ - spec/ramaze/public/error404.xhtml
377
+ - spec/ramaze/public/favicon.ico
378
+ - spec/ramaze/public/ramaze.png
379
+ - spec/ramaze/public/test_download.css
380
+ - spec/ramaze/request
381
+ - spec/ramaze/request/mongrel.rb
382
+ - spec/ramaze/request/thin.rb
383
+ - spec/ramaze/request/webrick.rb
384
+ - spec/ramaze/request.rb
385
+ - spec/ramaze/session.rb
386
+ - spec/ramaze/store
387
+ - spec/ramaze/store/default.rb
388
+ - spec/ramaze/template
389
+ - spec/ramaze/template/amrita2
390
+ - spec/ramaze/template/amrita2/data.amrita
391
+ - spec/ramaze/template/amrita2/index.amrita
392
+ - spec/ramaze/template/amrita2/sum.amrita
393
+ - spec/ramaze/template/amrita2.rb
394
+ - spec/ramaze/template/erubis
395
+ - spec/ramaze/template/erubis/sum.rhtml
396
+ - spec/ramaze/template/erubis.rb
397
+ - spec/ramaze/template/ezamar
398
+ - spec/ramaze/template/ezamar/another
399
+ - spec/ramaze/template/ezamar/another/long
400
+ - spec/ramaze/template/ezamar/another/long/action.zmr
401
+ - spec/ramaze/template/ezamar/combined.zmr
402
+ - spec/ramaze/template/ezamar/file_only.zmr
403
+ - spec/ramaze/template/ezamar/index.zmr
404
+ - spec/ramaze/template/ezamar/nested.zmr
405
+ - spec/ramaze/template/ezamar/other__index.xhtml
406
+ - spec/ramaze/template/ezamar/some__long__action.zmr
407
+ - spec/ramaze/template/ezamar/sum.zmr
408
+ - spec/ramaze/template/ezamar.rb
409
+ - spec/ramaze/template/haml
410
+ - spec/ramaze/template/haml/index.haml
411
+ - spec/ramaze/template/haml/with_vars.haml
412
+ - spec/ramaze/template/haml.rb
413
+ - spec/ramaze/template/liquid
414
+ - spec/ramaze/template/liquid/index.liquid
415
+ - spec/ramaze/template/liquid/products.liquid
416
+ - spec/ramaze/template/liquid.rb
417
+ - spec/ramaze/template/markaby
418
+ - spec/ramaze/template/markaby/external.mab
419
+ - spec/ramaze/template/markaby/sum.mab
420
+ - spec/ramaze/template/markaby.rb
421
+ - spec/ramaze/template/nagoro
422
+ - spec/ramaze/template/nagoro/another
423
+ - spec/ramaze/template/nagoro/another/long
424
+ - spec/ramaze/template/nagoro/another/long/action.nag
425
+ - spec/ramaze/template/nagoro/combined.nag
426
+ - spec/ramaze/template/nagoro/file_only.nag
427
+ - spec/ramaze/template/nagoro/index.nag
428
+ - spec/ramaze/template/nagoro/nested.nag
429
+ - spec/ramaze/template/nagoro/some__long__action.nag
430
+ - spec/ramaze/template/nagoro/sum.nag
431
+ - spec/ramaze/template/nagoro.rb
432
+ - spec/ramaze/template/ramaze
433
+ - spec/ramaze/template/ramaze/external.test
434
+ - spec/ramaze/template/remarkably
435
+ - spec/ramaze/template/remarkably/external.rem
436
+ - spec/ramaze/template/remarkably/sum.rem
437
+ - spec/ramaze/template/remarkably.rb
438
+ - spec/ramaze/template/sass
439
+ - spec/ramaze/template/sass/file.css.sass
440
+ - spec/ramaze/template/sass.rb
441
+ - spec/ramaze/template/xslt
442
+ - spec/ramaze/template/xslt/concat_words.xsl
443
+ - spec/ramaze/template/xslt/index.xsl
444
+ - spec/ramaze/template/xslt/products.xsl
445
+ - spec/ramaze/template/xslt/ruby_version.xsl
446
+ - spec/ramaze/template/xslt.rb
447
+ - spec/ramaze/template.rb
448
+ - spec/ramaze/trinity
449
+ - spec/ramaze/trinity/request.rb
450
+ - spec/ramaze/trinity/session.rb
393
451
  - spec/snippets
394
- - spec/snippets/ordered_set.rb
395
452
  - spec/snippets/array
396
453
  - spec/snippets/array/put_within.rb
397
454
  - spec/snippets/divide.rb
398
455
  - spec/snippets/kernel
399
- - spec/snippets/kernel/constant.rb
400
- - spec/snippets/kernel/aquire.rb
401
456
  - spec/snippets/kernel/__dir__.rb
457
+ - spec/snippets/kernel/acquire.rb
458
+ - spec/snippets/kernel/constant.rb
459
+ - spec/snippets/numeric
460
+ - spec/snippets/numeric/filesize_format.rb
461
+ - spec/snippets/ordered_set.rb
402
462
  - spec/snippets/ramaze
403
- - spec/snippets/ramaze/caller_lines.rb
404
463
  - spec/snippets/ramaze/caller_info.rb
405
- - spec/snippets/thread
406
- - spec/snippets/thread/into.rb
464
+ - spec/snippets/ramaze/caller_lines.rb
407
465
  - spec/snippets/string
408
- - spec/snippets/string/color.rb
409
- - spec/snippets/string/unindent.rb
410
466
  - spec/snippets/string/camel_case.rb
467
+ - spec/snippets/string/color.rb
411
468
  - spec/snippets/string/snake_case.rb
469
+ - spec/snippets/string/unindent.rb
412
470
  - spec/snippets/struct
413
471
  - spec/snippets/struct/fill.rb
414
472
  - spec/snippets/struct/values_at.rb
415
- - spec/snippets/numeric
416
- - spec/snippets/numeric/filesize_format.rb
473
+ - spec/snippets/symbol
474
+ - spec/snippets/symbol/to_proc.rb
475
+ - spec/snippets/thread
476
+ - spec/snippets/thread/into.rb
417
477
  - lib/proto
418
- - lib/proto/doc
419
- - lib/proto/log
420
- - lib/proto/src
421
- - lib/proto/src/element
422
- - lib/proto/src/element/page.rb
423
- - lib/proto/src/model.rb
424
- - lib/proto/src/controller
425
- - lib/proto/src/controller/main.rb
426
- - lib/proto/test
427
- - lib/proto/template
428
- - lib/proto/template/index.xhtml
478
+ - lib/proto/controller
479
+ - lib/proto/controller/main.rb
480
+ - lib/proto/model
429
481
  - lib/proto/public
430
- - lib/proto/public/js
431
- - lib/proto/public/js/jquery.js
432
482
  - lib/proto/public/css
433
483
  - lib/proto/public/css/ramaze_error.css
434
484
  - lib/proto/public/favicon.ico
485
+ - lib/proto/public/js
486
+ - lib/proto/public/js/jquery.js
435
487
  - lib/proto/public/ramaze.png
436
- - lib/proto/public/error.zmr
488
+ - lib/proto/spec
489
+ - lib/proto/spec/main.rb
437
490
  - lib/proto/start.rb
438
- - lib/ramaze.rb
491
+ - lib/proto/view
492
+ - lib/proto/view/error.xhtml
493
+ - lib/proto/view/index.xhtml
494
+ - lib/proto/view/page.xhtml
439
495
  - lib/ramaze
440
- - lib/ramaze/spec
441
- - lib/ramaze/spec/helper
442
- - lib/ramaze/spec/helper/browser.rb
443
- - lib/ramaze/spec/helper/simple_http.rb
444
- - lib/ramaze/spec/helper/mock_http.rb
445
- - lib/ramaze/spec/helper/layout.rb
446
- - lib/ramaze/spec/helper/requester.rb
447
- - lib/ramaze/spec/helper/wrap.rb
448
- - lib/ramaze/spec/helper/minimal.rb
449
- - lib/ramaze/spec/helper.rb
450
- - lib/ramaze/tool
451
- - lib/ramaze/tool/mime_types.yaml
452
- - lib/ramaze/tool/record.rb
453
- - lib/ramaze/tool/mime.rb
454
- - lib/ramaze/tool/localize.rb
455
- - lib/ramaze/tool/create.rb
496
+ - lib/ramaze/action
497
+ - lib/ramaze/action/render.rb
498
+ - lib/ramaze/action.rb
499
+ - lib/ramaze/adapter
500
+ - lib/ramaze/adapter/base.rb
501
+ - lib/ramaze/adapter/cgi.rb
502
+ - lib/ramaze/adapter/evented_mongrel.rb
503
+ - lib/ramaze/adapter/fcgi.rb
504
+ - lib/ramaze/adapter/mongrel.rb
505
+ - lib/ramaze/adapter/swiftiplied_mongrel.rb
506
+ - lib/ramaze/adapter/thin.rb
507
+ - lib/ramaze/adapter/webrick.rb
508
+ - lib/ramaze/adapter.rb
509
+ - lib/ramaze/cache
510
+ - lib/ramaze/cache/memcached.rb
511
+ - lib/ramaze/cache/memory.rb
512
+ - lib/ramaze/cache/yaml_store.rb
513
+ - lib/ramaze/cache.rb
456
514
  - lib/ramaze/contrib
457
515
  - lib/ramaze/contrib/auto_params
458
516
  - lib/ramaze/contrib/auto_params/get_args.rb
459
- - lib/ramaze/contrib/gzip_filter.rb
460
517
  - lib/ramaze/contrib/auto_params.rb
518
+ - lib/ramaze/contrib/facebook
519
+ - lib/ramaze/contrib/facebook/facebook.rb
520
+ - lib/ramaze/contrib/facebook.rb
521
+ - lib/ramaze/contrib/gettext
522
+ - lib/ramaze/contrib/gettext/mo.rb
523
+ - lib/ramaze/contrib/gettext/po.rb
524
+ - lib/ramaze/contrib/gettext.rb
525
+ - lib/ramaze/contrib/gzip_filter.rb
461
526
  - lib/ramaze/contrib/route.rb
462
527
  - lib/ramaze/contrib/sequel
463
528
  - lib/ramaze/contrib/sequel/fill.rb
464
- - lib/ramaze/cache
465
- - lib/ramaze/cache/yaml_store.rb
466
- - lib/ramaze/cache/memcached.rb
467
- - lib/ramaze/cache/memory.rb
468
- - lib/ramaze/store
469
- - lib/ramaze/store/default.rb
529
+ - lib/ramaze/contrib.rb
530
+ - lib/ramaze/controller
531
+ - lib/ramaze/controller/error.rb
532
+ - lib/ramaze/controller/main.rb
533
+ - lib/ramaze/controller/resolve.rb
534
+ - lib/ramaze/controller.rb
535
+ - lib/ramaze/dispatcher
536
+ - lib/ramaze/dispatcher/action.rb
537
+ - lib/ramaze/dispatcher/directory.rb
538
+ - lib/ramaze/dispatcher/error.rb
539
+ - lib/ramaze/dispatcher/file.rb
540
+ - lib/ramaze/dispatcher.rb
470
541
  - lib/ramaze/error.rb
471
- - lib/ramaze/template
472
- - lib/ramaze/template/markaby.rb
473
- - lib/ramaze/template/xslt.rb
474
- - lib/ramaze/template/sass.rb
475
- - lib/ramaze/template/ezamar.rb
476
- - lib/ramaze/template/erubis.rb
477
- - lib/ramaze/template/nagoro.rb
478
- - lib/ramaze/template/liquid.rb
479
- - lib/ramaze/template/remarkably.rb
480
- - lib/ramaze/template/ezamar
481
- - lib/ramaze/template/ezamar/render_partial.rb
482
- - lib/ramaze/template/ezamar/engine.rb
483
- - lib/ramaze/template/ezamar/element.rb
484
- - lib/ramaze/template/ezamar/morpher.rb
485
- - lib/ramaze/template/haml.rb
486
- - lib/ramaze/template/none.rb
487
- - lib/ramaze/template/amrita2.rb
488
- - lib/ramaze/cache.rb
489
- - lib/ramaze/snippets.rb
490
- - lib/ramaze/action
491
- - lib/ramaze/action/render.rb
492
- - lib/ramaze/template.rb
542
+ - lib/ramaze/gestalt.rb
493
543
  - lib/ramaze/global
494
- - lib/ramaze/global/globalstruct.rb
495
544
  - lib/ramaze/global/dsl.rb
545
+ - lib/ramaze/global/globalstruct.rb
546
+ - lib/ramaze/global.rb
496
547
  - lib/ramaze/helper
497
- - lib/ramaze/helper/markaby.rb
498
- - lib/ramaze/helper/pager.rb
499
- - lib/ramaze/helper/link.rb
548
+ - lib/ramaze/helper/aspect.rb
549
+ - lib/ramaze/helper/auth.rb
500
550
  - lib/ramaze/helper/cache.rb
501
- - lib/ramaze/helper/partial.rb
502
- - lib/ramaze/helper/file.rb
503
551
  - lib/ramaze/helper/cgi.rb
504
- - lib/ramaze/helper/redirect.rb
505
- - lib/ramaze/helper/identity.rb
552
+ - lib/ramaze/helper/file.rb
506
553
  - lib/ramaze/helper/flash.rb
507
- - lib/ramaze/helper/stack.rb
508
554
  - lib/ramaze/helper/formatting.rb
509
- - lib/ramaze/helper/auth.rb
510
- - lib/ramaze/helper/aspect.rb
511
- - lib/ramaze/helper/nitroform.rb
555
+ - lib/ramaze/helper/identity.rb
512
556
  - lib/ramaze/helper/inform.rb
513
- - lib/ramaze/adapter.rb
514
- - lib/ramaze/tool.rb
557
+ - lib/ramaze/helper/link.rb
558
+ - lib/ramaze/helper/markaby.rb
559
+ - lib/ramaze/helper/nitroform.rb
560
+ - lib/ramaze/helper/pager.rb
561
+ - lib/ramaze/helper/partial.rb
562
+ - lib/ramaze/helper/redirect.rb
563
+ - lib/ramaze/helper/sequel.rb
564
+ - lib/ramaze/helper/stack.rb
565
+ - lib/ramaze/helper.rb
515
566
  - lib/ramaze/inform
516
- - lib/ramaze/inform/informer.rb
517
- - lib/ramaze/inform/xosd.rb
518
- - lib/ramaze/inform/syslog.rb
567
+ - lib/ramaze/inform/analogger.rb
519
568
  - lib/ramaze/inform/growl.rb
520
- - lib/ramaze/inform/knotify.rb
521
569
  - lib/ramaze/inform/hub.rb
570
+ - lib/ramaze/inform/informer.rb
522
571
  - lib/ramaze/inform/informing.rb
523
- - lib/ramaze/inform/analogger.rb
524
- - lib/ramaze/trinity
525
- - lib/ramaze/trinity/response.rb
526
- - lib/ramaze/trinity/request.rb
527
- - lib/ramaze/trinity/session.rb
528
- - lib/ramaze/contrib.rb
529
- - lib/ramaze/adapter
530
- - lib/ramaze/adapter/mongrel.rb
531
- - lib/ramaze/adapter/fcgi.rb
532
- - lib/ramaze/adapter/webrick.rb
533
- - lib/ramaze/adapter/cgi.rb
534
- - lib/ramaze/adapter/evented_mongrel.rb
535
- - lib/ramaze/adapter/base.rb
536
- - lib/ramaze/adapter/swiftiplied_mongrel.rb
537
- - lib/ramaze/controller
538
- - lib/ramaze/controller/resolve.rb
539
- - lib/ramaze/controller/error.rb
540
- - lib/ramaze/controller.rb
541
- - lib/ramaze/sourcereload.rb
542
- - lib/ramaze/dispatcher.rb
543
- - lib/ramaze/dispatcher
544
- - lib/ramaze/dispatcher/error.rb
545
- - lib/ramaze/dispatcher/file.rb
546
- - lib/ramaze/dispatcher/directory.rb
547
- - lib/ramaze/dispatcher/action.rb
548
- - lib/ramaze/trinity.rb
549
- - lib/ramaze/gestalt.rb
550
- - lib/ramaze/global.rb
551
- - lib/ramaze/action.rb
552
- - lib/ramaze/helper.rb
572
+ - lib/ramaze/inform/knotify.rb
573
+ - lib/ramaze/inform/syslog.rb
574
+ - lib/ramaze/inform/xosd.rb
575
+ - lib/ramaze/inform.rb
553
576
  - lib/ramaze/snippets
554
- - lib/ramaze/snippets/dictionary.rb
555
- - lib/ramaze/snippets/ordered_set.rb
556
577
  - lib/ramaze/snippets/array
557
578
  - lib/ramaze/snippets/array/put_within.rb
579
+ - lib/ramaze/snippets/blankslate.rb
580
+ - lib/ramaze/snippets/dictionary.rb
558
581
  - lib/ramaze/snippets/divide.rb
559
582
  - lib/ramaze/snippets/kernel
560
- - lib/ramaze/snippets/kernel/constant.rb
583
+ - lib/ramaze/snippets/kernel/__dir__.rb
584
+ - lib/ramaze/snippets/kernel/acquire.rb
561
585
  - lib/ramaze/snippets/kernel/aquire.rb
586
+ - lib/ramaze/snippets/kernel/constant.rb
562
587
  - lib/ramaze/snippets/kernel/pretty_inspect.rb
563
- - lib/ramaze/snippets/kernel/__dir__.rb
588
+ - lib/ramaze/snippets/numeric
589
+ - lib/ramaze/snippets/numeric/filesize_format.rb
564
590
  - lib/ramaze/snippets/object
565
591
  - lib/ramaze/snippets/object/traits.rb
592
+ - lib/ramaze/snippets/ordered_set.rb
566
593
  - lib/ramaze/snippets/ramaze
567
- - lib/ramaze/snippets/ramaze/caller_lines.rb
568
594
  - lib/ramaze/snippets/ramaze/caller_info.rb
569
- - lib/ramaze/snippets/thread
570
- - lib/ramaze/snippets/thread/into.rb
595
+ - lib/ramaze/snippets/ramaze/caller_lines.rb
571
596
  - lib/ramaze/snippets/string
572
- - lib/ramaze/snippets/string/each.rb
573
- - lib/ramaze/snippets/string/color.rb
574
- - lib/ramaze/snippets/string/unindent.rb
575
597
  - lib/ramaze/snippets/string/camel_case.rb
598
+ - lib/ramaze/snippets/string/color.rb
599
+ - lib/ramaze/snippets/string/each.rb
600
+ - lib/ramaze/snippets/string/ord.rb
576
601
  - lib/ramaze/snippets/string/snake_case.rb
602
+ - lib/ramaze/snippets/string/unindent.rb
577
603
  - lib/ramaze/snippets/struct
578
604
  - lib/ramaze/snippets/struct/fill.rb
579
605
  - lib/ramaze/snippets/struct/values_at.rb
580
606
  - lib/ramaze/snippets/symbol
581
607
  - lib/ramaze/snippets/symbol/to_proc.rb
582
- - lib/ramaze/snippets/numeric
583
- - lib/ramaze/snippets/numeric/filesize_format.rb
608
+ - lib/ramaze/snippets/thread
609
+ - lib/ramaze/snippets/thread/into.rb
610
+ - lib/ramaze/snippets.rb
611
+ - lib/ramaze/sourcereload.rb
612
+ - lib/ramaze/spec
613
+ - lib/ramaze/spec/helper
614
+ - lib/ramaze/spec/helper/bacon.rb
615
+ - lib/ramaze/spec/helper/browser.rb
616
+ - lib/ramaze/spec/helper/mock_http.rb
617
+ - lib/ramaze/spec/helper/pretty_output.rb
618
+ - lib/ramaze/spec/helper/requester.rb
619
+ - lib/ramaze/spec/helper/simple_http.rb
620
+ - lib/ramaze/spec/helper/snippets.rb
621
+ - lib/ramaze/spec/helper.rb
622
+ - lib/ramaze/store
623
+ - lib/ramaze/store/default.rb
624
+ - lib/ramaze/template
625
+ - lib/ramaze/template/amrita2.rb
626
+ - lib/ramaze/template/erubis.rb
627
+ - lib/ramaze/template/ezamar
628
+ - lib/ramaze/template/ezamar/element.rb
629
+ - lib/ramaze/template/ezamar/engine.rb
630
+ - lib/ramaze/template/ezamar/morpher.rb
631
+ - lib/ramaze/template/ezamar/render_partial.rb
632
+ - lib/ramaze/template/ezamar.rb
633
+ - lib/ramaze/template/haml.rb
634
+ - lib/ramaze/template/liquid.rb
635
+ - lib/ramaze/template/markaby.rb
636
+ - lib/ramaze/template/nagoro.rb
637
+ - lib/ramaze/template/none.rb
638
+ - lib/ramaze/template/remarkably.rb
639
+ - lib/ramaze/template/sass.rb
640
+ - lib/ramaze/template/xslt.rb
641
+ - lib/ramaze/template.rb
642
+ - lib/ramaze/tool
643
+ - lib/ramaze/tool/create.rb
644
+ - lib/ramaze/tool/localize.rb
645
+ - lib/ramaze/tool/mime.rb
646
+ - lib/ramaze/tool/mime_types.yaml
647
+ - lib/ramaze/tool/record.rb
648
+ - lib/ramaze/tool.rb
649
+ - lib/ramaze/trinity
650
+ - lib/ramaze/trinity/request.rb
651
+ - lib/ramaze/trinity/response.rb
652
+ - lib/ramaze/trinity/session.rb
653
+ - lib/ramaze/trinity.rb
584
654
  - lib/ramaze/version.rb
585
- - lib/ramaze/inform.rb
655
+ - lib/ramaze.rb
656
+ - lib/vendor
657
+ - lib/vendor/bacon.rb
586
658
  - rake_tasks/conf.rake
587
659
  - rake_tasks/coverage.rake
588
660
  - rake_tasks/gem.rake
@@ -638,7 +710,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
638
710
  requirements: []
639
711
 
640
712
  rubyforge_project:
641
- rubygems_version: 0.9.5
713
+ rubygems_version: 1.0.1
642
714
  signing_key:
643
715
  specification_version: 2
644
716
  summary: Ramaze is a simple and modular web framework