ramaze 2009.02 → 2009.03

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,4 +2,4 @@ For help you can:
2
2
 
3
3
  - Visit us in the channel #ramaze on irc.freenode.net
4
4
 
5
- - Join the Mailinglist at http://groups.google.com/group/ramaze
5
+ - Join the Mailinglist at http://ramaze.rubyforge.org
@@ -92,7 +92,7 @@ pre.iplastic .RegularExpression {
92
92
 
93
93
  <p>Welcome to our official tutorial, the mandatory to-do list. I&#8217;m writing this while doing the steps to assure it will work for you.</p>
94
94
 
95
- <p>The tutorial assumes that you have Ramaze installed already. The easiest way to do that is <code>gem install ramaze</code>, for other ways of installation please see the documentation at http://ramaze.net</p>
95
+ <p>The tutorial assumes that you have Ramaze installed already. The easiest way to do that is <code>gem install ramaze</code>, for other ways of installation please see the documentation at http://ramaze.rubyforge.org</p>
96
96
 
97
97
  <p>Should you encounter any problems while doing this tutorial, this might either be because Ramaze changed (which happens very often while it is still young) or I actually made some mistake while writing it.</p>
98
98
 
@@ -14,7 +14,7 @@ I'm writing this while doing the steps to assure it will work for you.
14
14
 
15
15
  The tutorial assumes that you have Ramaze installed already. The easiest way to
16
16
  do that is `gem install ramaze`, for other ways of installation please see the
17
- documentation at http://ramaze.net .
17
+ documentation at http://ramaze.rubyforge.org
18
18
 
19
19
  Should you encounter any problems while doing this tutorial, this might either
20
20
  be because Ramaze changed (which happens very often while it is still young)
@@ -368,7 +368,7 @@ will translate into:
368
368
  open('Wash dishes')
369
369
  {:lang=ruby}
370
370
 
371
- Which in turn will call
371
+ Which in turn will call
372
372
 
373
373
  task_status('Wash dishes', false)
374
374
  {:lang=ruby}
@@ -23,14 +23,7 @@ class Entry < Sequel::Model(:entry)
23
23
  end
24
24
  end
25
25
 
26
- begin
27
- Entry.create_table!
28
- rescue Sequel::DatabaseError => e
29
- if e.message !~ /table.*already exists/
30
- raise e
31
- end
32
- end
33
-
26
+ Entry.create_table! unless Entry.table_exists?
34
27
 
35
28
  if Entry.empty?
36
29
  Entry.add 'Blog created', 'Exciting news today, this blog was created'
@@ -48,12 +48,6 @@ module Model
48
48
  end
49
49
 
50
50
  [Page, OldPage].each do |klass|
51
- begin
52
- klass.create_table
53
- rescue Sequel::DatabaseError => e
54
- if e.message !~ /table.*already exists/
55
- raise e
56
- end
57
- end
51
+ klass.create_table unless klass.table_exists?
58
52
  end
59
53
  end
@@ -22,6 +22,6 @@
22
22
  <div id="content">
23
23
  #@content
24
24
  </div>
25
- <div id="copyright">Wiktacular is powered by <a href="http://ramaze.net">Ramaze</a></div>
25
+ <div id="copyright">Wiktacular is powered by <a href="http://ramaze.rubyforge.org/">Ramaze</a></div>
26
26
  </body>
27
27
  </html>
@@ -16,11 +16,11 @@ working.</p>
16
16
  </ol>
17
17
  </p>
18
18
 
19
- <p>For more documentation, check out <a href="http://ramaze.net">ramaze.net</a>, which includes:
19
+ <p>For more documentation, check out <a href="http://ramaze.net">www.ramaze.net</a>, which includes:
20
20
  <ul>
21
21
  <li>a <a href="http://ramaze.net/getting-started">getting started</a> guide</li>
22
22
  <li>some <a href="http://ramaze.net/screencasts">screencasts</a></li>
23
- <li>and <a href="http://wiki.ramaze.net/Tutorials">tutorials</a></li>
23
+ <li>and an <a href="http://ramaze.rubyforge.org/tutorial/todolist.html">introductory tutorial</a></li>
24
24
  </ul>
25
25
  </p>
26
26
 
@@ -4,11 +4,11 @@ module Ramaze
4
4
  #
5
5
  # Usage for sessions only:
6
6
  #
7
- # Ramaze::Global::cache_alternative[:sessions] = Ramaze::FileCache
7
+ # Ramaze::Global.cache_alternative[:sessions] = Ramaze::FileCache
8
8
  #
9
9
  # Usage for everything:
10
10
  #
11
- # Ramaze::Global::cache = Ramaze::FileCache
11
+ # Ramaze::Global.cache = Ramaze::FileCache
12
12
 
13
13
  class FileCache
14
14
  attr_accessor :root, :subdir
@@ -1,4 +1,20 @@
1
1
  module Ramaze
2
+ # === Usage
3
+ #
4
+ # require 'ramaze/contrib/gems'
5
+ #
6
+ # # set install dir
7
+ # # Ramaze::Gems.options :install_dir => __DIR__('../asdf')
8
+ #
9
+ # module Ramaze::Gems
10
+ # gem 'haml'
11
+ # gem 'sequel', '>=1.2.0'
12
+ # gem 'hpricot', :source => 'http://code.whytheluckystiff.net'
13
+ # gem 'aws-s3', :lib => 'aws/s3'
14
+ # gem 'oldmoe-mysql', :source => 'http://gems.github.com', :lib => 'mysqlplus'
15
+ # setup
16
+ # end
17
+ #
2
18
  module Gems
3
19
  @gems = []
4
20
 
@@ -63,16 +79,4 @@ module Ramaze
63
79
  end
64
80
  end
65
81
  end
66
- end
67
-
68
- __END__
69
- Usage example:
70
-
71
- module Ramaze::Gems
72
- gem 'haml'
73
- gem 'sequel', '>=1.2.0'
74
- gem 'hpricot', :source => 'http://code.whytheluckystiff.net'
75
- gem 'aws-s3', :lib => 'aws/s3'
76
-
77
- setup
78
- end
82
+ end
@@ -15,10 +15,8 @@ module Ramaze
15
15
  end
16
16
 
17
17
  # Build/replace this responses data
18
- def build(new_body = body, status = status, header = header)
19
- header.each do |key, value|
20
- self[key] = value
21
- end
18
+ def build(new_body = body, status = status, new_header = {})
19
+ self.header.merge!(new_header)
22
20
 
23
21
  self.body, self.status = new_body, status
24
22
  end
@@ -58,9 +58,14 @@ module Ramaze
58
58
  end
59
59
  end
60
60
  end
61
- ha2 = MD5.hexdigest([request.request_method,request.fullpath].join(':'))
62
- md5 = MD5.hexdigest([ha1, nonce, nc, cnonce, qop, ha2].join(':'))
63
61
 
62
+ a2 = [request.request_method,request.fullpath]
63
+ a2 << MD5.hexdigest(request.body.read) if qop == "auth-int"
64
+
65
+ ha2 = MD5.hexdigest( a2.join(':') )
66
+
67
+ md5 = MD5.hexdigest([ha1, nonce, nc, cnonce, qop, ha2].join(':'))
68
+
64
69
  authorized = digest_response == md5
65
70
  end
66
71
  end
@@ -99,7 +99,7 @@ module Ramaze
99
99
 
100
100
 
101
101
  def navigation(limit = 8)
102
- out = [ '<div class="pager">' ]
102
+ out = [ g.div(:class => :pager) ]
103
103
 
104
104
  if first_page?
105
105
  out << g.span(:class => 'first grey'){ h('<<') }
@@ -56,7 +56,7 @@ module Ramaze
56
56
  Watcher = WatchStat
57
57
  end
58
58
 
59
- def initialize(app)
59
+ def initialize(app = nil)
60
60
  @app = app
61
61
  @files = {}
62
62
  @watcher = Watcher.new
@@ -81,7 +81,7 @@ module Ramaze
81
81
  end
82
82
  end
83
83
 
84
- @app.call(env)
84
+ @app.call(env) if @app
85
85
  end
86
86
 
87
87
  def cycle
@@ -1,6 +1,7 @@
1
1
  module Ramaze
2
2
  class Fiber < ::Fiber
3
- # initialize isn't being called, so we have to hook into ::new
3
+ attr_accessor :state
4
+
4
5
  def initialize(*args)
5
6
  super
6
7
  @state = {}
@@ -30,9 +30,13 @@ module Ramaze
30
30
 
31
31
  def transform(action)
32
32
  template = wrap_compile(action)
33
+
33
34
  data = action.instance.instance_variable_get("@data") || {}
34
- action.instance.extend ::Amrita2::Runtime if data.kind_of? Binding
35
- template.render_with(data)
35
+ binding = action.instance.instance_variable_get("@binding")
36
+
37
+ action.instance.extend(::Amrita2::Runtime)
38
+
39
+ template.render_with(data, binding)
36
40
  end
37
41
 
38
42
  # Compile a template, return instance of Amrita2::Template
@@ -1,6 +1,7 @@
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
+ require 'haml/util'
4
5
  require 'sass/engine'
5
6
 
6
7
  module Ramaze
@@ -1,6 +1,6 @@
1
- # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
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
4
  module Ramaze
5
- VERSION = "2009.02"
5
+ VERSION = "2009.03"
6
6
  end
@@ -5,7 +5,7 @@ COPYRIGHT = [
5
5
  "# Copyright (c) #{Time.now.year} Michael Fellinger m.fellinger@gmail.com",
6
6
  "# All files in this distribution are subject to the terms of the Ruby license."
7
7
  ]
8
- README = 'README.markdown'
8
+ README = 'README.md'
9
9
  CLEAN.include %w[
10
10
  **/.*.sw?
11
11
  *.gem
@@ -36,26 +36,12 @@ RDOC_FILES = %W[
36
36
  POST_INSTALL_MESSAGE = %{
37
37
  #{'=' * 60}
38
38
 
39
-
40
39
  Thank you for installing Ramaze!
40
+ You can now do following:
41
41
 
42
- At this point, you can learn how to use Ramaze at
43
- the main website, http://ramaze.net .
44
-
45
- Alternatively, you can work off a skeletal prototype project
46
- using the 'ramaze' command:
47
-
42
+ * Create a new project using the `ramaze' command:
48
43
  ramaze --create yourproject
49
44
 
50
- Feel free to ask questions in our IRC channel:
51
- irc.freenode.net #ramaze
52
- http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
53
-
54
- Enjoy! :)
55
-
56
- -- The Ramaze team
57
-
58
-
59
45
  #{'=' * 60}
60
46
  }.strip
61
47
 
@@ -7,7 +7,7 @@ def generate_gemspec(version)
7
7
 
8
8
  s.author = "Michael 'manveru' Fellinger"
9
9
  s.email = "m.fellinger@gmail.com"
10
- s.homepage = "http://ramaze.net"
10
+ s.homepage = "http://ramaze.rubyforge.org"
11
11
  s.rubyforge_project = "ramaze"
12
12
 
13
13
  s.bindir = "bin"
@@ -8,7 +8,7 @@ namespace :metric do
8
8
  print 'churning '
9
9
 
10
10
  Dir['lib/**/*.rb'].each do |rb|
11
- changes = `git-log --pretty=oneline '#{rb}'`.count("\n")
11
+ changes = `git log --pretty=oneline '#{rb}'`.count("\n")
12
12
  print '.'
13
13
  # out[changes, rb]
14
14
  churn[rb] = changes
@@ -3,6 +3,7 @@
3
3
 
4
4
  require 'spec/helper'
5
5
 
6
+ spec_require 'haml/util'
6
7
  spec_require 'sass/engine'
7
8
 
8
9
  class TCTemplateSassController < Ramaze::Controller
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: "2009.02"
4
+ version: "2009.03"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael 'manveru' Fellinger
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-02-14 00:00:00 -05:00
12
+ date: 2009-04-03 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.3.0
23
+ version: 0.9.1
24
24
  version:
25
25
  description: Ramaze is a simple and modular web framework
26
26
  email: m.fellinger@gmail.com
@@ -31,7 +31,7 @@ extensions: []
31
31
  extra_rdoc_files: []
32
32
 
33
33
  files:
34
- - README.markdown
34
+ - README.md
35
35
  - Rakefile
36
36
  - benchmark
37
37
  - benchmark/results.txt
@@ -55,7 +55,6 @@ files:
55
55
  - benchmark/test.rb
56
56
  - bin
57
57
  - bin/ramaze
58
- - cache.yaml
59
58
  - doc
60
59
  - doc/AUTHORS
61
60
  - doc/CHANGELOG
@@ -565,7 +564,6 @@ files:
565
564
  - rake_tasks/metric.rake
566
565
  - rake_tasks/release.rake
567
566
  - rake_tasks/spec.rake
568
- - ramaze.gemspec
569
567
  - spec
570
568
  - spec/contrib
571
569
  - spec/contrib/profiling.rb
@@ -765,9 +763,6 @@ files:
765
763
  - spec/ramaze/template/xslt/index.xsl
766
764
  - spec/ramaze/template/xslt/products.xsl
767
765
  - spec/ramaze/template/xslt/ruby_version.xsl
768
- - spec/ramaze/view
769
- - spec/ramaze/view/ezamar
770
- - spec/ramaze/view/ezamar/external.xhtml
771
766
  - spec/snippets
772
767
  - spec/snippets/array
773
768
  - spec/snippets/array/put_within.rb
@@ -792,32 +787,17 @@ files:
792
787
  - spec/snippets/string/unindent.rb
793
788
  - spec/snippets/thread
794
789
  - spec/snippets/thread/into.rb
795
- - test.out
796
790
  has_rdoc: true
797
791
  homepage: http://ramaze.net
798
792
  post_install_message: |-
799
793
  ============================================================
800
794
 
801
-
802
795
  Thank you for installing Ramaze!
796
+ You can now do following:
803
797
 
804
- At this point, you can learn how to use Ramaze at
805
- the main website, http://ramaze.net .
806
-
807
- Alternatively, you can work off a skeletal prototype project
808
- using the 'ramaze' command:
809
-
798
+ * Create a new project using the `ramaze' command:
810
799
  ramaze --create yourproject
811
800
 
812
- Feel free to ask questions in our IRC channel:
813
- irc.freenode.net #ramaze
814
- http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
815
-
816
- Enjoy! :)
817
-
818
- -- The Ramaze team
819
-
820
-
821
801
  ============================================================
822
802
  rdoc_options: []
823
803
 
data/cache.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- foo:foobar:
3
- :value: foo
4
- :expires:
5
- bar:foobar:
6
- :value: bar
7
- :expires:
@@ -1,622 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "ramaze"
3
- s.version = "2009.02"
4
-
5
- s.summary = "Ramaze is a simple and modular web framework"
6
- s.description = "Ramaze is a simple and modular web framework"
7
- s.platform = "ruby"
8
- s.has_rdoc = true
9
- s.author = "Michael 'manveru' Fellinger"
10
- s.email = "m.fellinger@gmail.com"
11
- s.homepage = "http://ramaze.net"
12
- s.rubyforge_project = "ramaze"
13
- s.executables = ["ramaze"]
14
- s.bindir = "bin"
15
- s.require_path = "lib"
16
- s.post_install_message = %{
17
- ============================================================
18
-
19
- Thank you for installing Ramaze!
20
- The main website is http://ramaze.net .
21
-
22
- Feel free to ask questions in our IRC channel:
23
- irc.freenode.net #ramaze
24
- http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
25
-
26
- ============================================================}
27
-
28
- s.add_dependency('rack', '>= 0.3.0')
29
-
30
- s.files = [
31
- "README.markdown",
32
- "Rakefile",
33
- "benchmark/results.txt",
34
- "benchmark/run.rb",
35
- "benchmark/suite/minimal.rb",
36
- "benchmark/suite/no_informer.rb",
37
- "benchmark/suite/no_sessions.rb",
38
- "benchmark/suite/no_template.rb",
39
- "benchmark/suite/simple.rb",
40
- "benchmark/suite/template_amrita2.rb",
41
- "benchmark/suite/template_builder.rb",
42
- "benchmark/suite/template_erubis.rb",
43
- "benchmark/suite/template_ezamar.rb",
44
- "benchmark/suite/template_haml.rb",
45
- "benchmark/suite/template_liquid.rb",
46
- "benchmark/suite/template_markaby.rb",
47
- "benchmark/suite/template_nagoro.rb",
48
- "benchmark/suite/template_redcloth.rb",
49
- "benchmark/suite/template_tenjin.rb",
50
- "benchmark/test.rb",
51
- "bin/ramaze",
52
- "doc/AUTHORS",
53
- "doc/CHANGELOG",
54
- "doc/COPYING",
55
- "doc/FAQ",
56
- "doc/GPL",
57
- "doc/INSTALL",
58
- "doc/LEGAL",
59
- "doc/TODO",
60
- "doc/meta/announcement.txt",
61
- "doc/meta/configuration.txt",
62
- "doc/meta/internals.txt",
63
- "doc/meta/users.kml",
64
- "doc/readme_chunks/appendix.txt",
65
- "doc/readme_chunks/examples.txt",
66
- "doc/readme_chunks/features.txt",
67
- "doc/readme_chunks/getting_help.txt",
68
- "doc/readme_chunks/getting_started.txt",
69
- "doc/readme_chunks/installing.txt",
70
- "doc/readme_chunks/introduction.txt",
71
- "doc/readme_chunks/principles.txt",
72
- "doc/readme_chunks/thanks.txt",
73
- "doc/tutorial/todolist.html",
74
- "doc/tutorial/todolist.mkd",
75
- "examples/app/auth/auth.rb",
76
- "examples/app/auth/template/layout.haml",
77
- "examples/app/auth/template/login.haml",
78
- "examples/app/blog/README",
79
- "examples/app/blog/controller/main.rb",
80
- "examples/app/blog/model/entry.rb",
81
- "examples/app/blog/public/styles/blog.css",
82
- "examples/app/blog/spec/blog.rb",
83
- "examples/app/blog/start.rb",
84
- "examples/app/blog/view/edit.xhtml",
85
- "examples/app/blog/view/index.xhtml",
86
- "examples/app/blog/view/layout.xhtml",
87
- "examples/app/blog/view/new.xhtml",
88
- "examples/app/chat/model/history.rb",
89
- "examples/app/chat/model/message.rb",
90
- "examples/app/chat/public/css/chat.css",
91
- "examples/app/chat/public/js/chat.js",
92
- "examples/app/chat/public/js/jquery.js",
93
- "examples/app/chat/start.rb",
94
- "examples/app/chat/view/chat.xhtml",
95
- "examples/app/chat/view/index.xhtml",
96
- "examples/app/chat/view/layout.xhtml",
97
- "examples/app/localization/start.rb",
98
- "examples/app/rapaste/Rakefile",
99
- "examples/app/rapaste/controller/paste.rb",
100
- "examples/app/rapaste/model/paste.rb",
101
- "examples/app/rapaste/public/css/active4d.css",
102
- "examples/app/rapaste/public/css/all_hallows_eve.css",
103
- "examples/app/rapaste/public/css/amy.css",
104
- "examples/app/rapaste/public/css/blackboard.css",
105
- "examples/app/rapaste/public/css/brilliance_black.css",
106
- "examples/app/rapaste/public/css/brilliance_dull.css",
107
- "examples/app/rapaste/public/css/cobalt.css",
108
- "examples/app/rapaste/public/css/dawn.css",
109
- "examples/app/rapaste/public/css/display.css",
110
- "examples/app/rapaste/public/css/eiffel.css",
111
- "examples/app/rapaste/public/css/espresso_libre.css",
112
- "examples/app/rapaste/public/css/idle.css",
113
- "examples/app/rapaste/public/css/iplastic.css",
114
- "examples/app/rapaste/public/css/lazy.css",
115
- "examples/app/rapaste/public/css/mac_classic.css",
116
- "examples/app/rapaste/public/css/magicwb_amiga.css",
117
- "examples/app/rapaste/public/css/pastels_on_dark.css",
118
- "examples/app/rapaste/public/css/slush_poppies.css",
119
- "examples/app/rapaste/public/css/spacecadet.css",
120
- "examples/app/rapaste/public/css/sunburst.css",
121
- "examples/app/rapaste/public/css/twilight.css",
122
- "examples/app/rapaste/public/css/zenburnesque.css",
123
- "examples/app/rapaste/public/js/jquery.js",
124
- "examples/app/rapaste/spec/rapaste.rb",
125
- "examples/app/rapaste/start.rb",
126
- "examples/app/rapaste/view/copy.xhtml",
127
- "examples/app/rapaste/view/index.xhtml",
128
- "examples/app/rapaste/view/layout.xhtml",
129
- "examples/app/rapaste/view/list.xhtml",
130
- "examples/app/rapaste/view/search.xhtml",
131
- "examples/app/rapaste/view/view.xhtml",
132
- "examples/app/sourceview/public/coderay.css",
133
- "examples/app/sourceview/public/images/file.gif",
134
- "examples/app/sourceview/public/images/folder.gif",
135
- "examples/app/sourceview/public/images/tv-collapsable-last.gif",
136
- "examples/app/sourceview/public/images/tv-collapsable.gif",
137
- "examples/app/sourceview/public/images/tv-expandable-last.gif",
138
- "examples/app/sourceview/public/images/tv-expandable.gif",
139
- "examples/app/sourceview/public/images/tv-item-last.gif",
140
- "examples/app/sourceview/public/images/tv-item.gif",
141
- "examples/app/sourceview/public/jquery.js",
142
- "examples/app/sourceview/public/jquery.treeview.css",
143
- "examples/app/sourceview/public/jquery.treeview.js",
144
- "examples/app/sourceview/public/sourceview.js",
145
- "examples/app/sourceview/sourceview.rb",
146
- "examples/app/sourceview/template/index.haml",
147
- "examples/app/todolist/README",
148
- "examples/app/todolist/public/favicon.ico",
149
- "examples/app/todolist/public/js/jquery.js",
150
- "examples/app/todolist/public/ramaze.png",
151
- "examples/app/todolist/spec/todolist.rb",
152
- "examples/app/todolist/src/controller/main.rb",
153
- "examples/app/todolist/src/element/page.rb",
154
- "examples/app/todolist/src/model.rb",
155
- "examples/app/todolist/start.rb",
156
- "examples/app/todolist/template/index.xhtml",
157
- "examples/app/todolist/template/new.xhtml",
158
- "examples/app/upload/start.rb",
159
- "examples/app/upload/view/index.xhtml",
160
- "examples/app/whywiki/spec/whywiki.rb",
161
- "examples/app/whywiki/start.rb",
162
- "examples/app/whywiki/template/edit.xhtml",
163
- "examples/app/whywiki/template/show.xhtml",
164
- "examples/app/wikore/spec/wikore.rb",
165
- "examples/app/wikore/src/controller.rb",
166
- "examples/app/wikore/src/model.rb",
167
- "examples/app/wikore/start.rb",
168
- "examples/app/wikore/template/index.xhtml",
169
- "examples/app/wiktacular/README",
170
- "examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd",
171
- "examples/app/wiktacular/mkd/link/current.mkd",
172
- "examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd",
173
- "examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd",
174
- "examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd",
175
- "examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd",
176
- "examples/app/wiktacular/mkd/main/current.mkd",
177
- "examples/app/wiktacular/mkd/markdown/current.mkd",
178
- "examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd",
179
- "examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd",
180
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd",
181
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd",
182
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd",
183
- "examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd",
184
- "examples/app/wiktacular/mkd/testing/current.mkd",
185
- "examples/app/wiktacular/public/favicon.ico",
186
- "examples/app/wiktacular/public/screen.css",
187
- "examples/app/wiktacular/spec/wiktacular.rb",
188
- "examples/app/wiktacular/src/controller.rb",
189
- "examples/app/wiktacular/src/model.rb",
190
- "examples/app/wiktacular/start.rb",
191
- "examples/app/wiktacular/template/edit.xhtml",
192
- "examples/app/wiktacular/template/html_layout.xhtml",
193
- "examples/app/wiktacular/template/index.xhtml",
194
- "examples/app/wiktacular/template/new.xhtml",
195
- "examples/basic/element.rb",
196
- "examples/basic/gestalt.rb",
197
- "examples/basic/hello.rb",
198
- "examples/basic/layout.rb",
199
- "examples/basic/linking.rb",
200
- "examples/basic/partial.rb",
201
- "examples/basic/simple.rb",
202
- "examples/helpers/cache.rb",
203
- "examples/helpers/form_with_sequel.rb",
204
- "examples/helpers/httpdigest.rb",
205
- "examples/helpers/identity.rb",
206
- "examples/helpers/nitro_form.rb",
207
- "examples/helpers/paginate.rb",
208
- "examples/helpers/provide.rb",
209
- "examples/helpers/rest.rb",
210
- "examples/helpers/simple_captcha.rb",
211
- "examples/misc/css.rb",
212
- "examples/misc/facebook.rb",
213
- "examples/misc/memleak_detector.rb",
214
- "examples/misc/nagoro_element.rb",
215
- "examples/misc/ramaise.rb",
216
- "examples/misc/rapp.rb",
217
- "examples/misc/sequel_scaffolding.rb",
218
- "examples/misc/simple_auth.rb",
219
- "examples/templates/template/external.amrita",
220
- "examples/templates/template/external.haml",
221
- "examples/templates/template/external.liquid",
222
- "examples/templates/template/external.mab",
223
- "examples/templates/template/external.nag",
224
- "examples/templates/template/external.redcloth",
225
- "examples/templates/template/external.rem",
226
- "examples/templates/template/external.rhtml",
227
- "examples/templates/template/external.tenjin",
228
- "examples/templates/template/external.xsl",
229
- "examples/templates/template/external.zmr",
230
- "examples/templates/template_amrita2.rb",
231
- "examples/templates/template_erubis.rb",
232
- "examples/templates/template_ezamar.rb",
233
- "examples/templates/template_haml.rb",
234
- "examples/templates/template_liquid.rb",
235
- "examples/templates/template_markaby.rb",
236
- "examples/templates/template_nagoro.rb",
237
- "examples/templates/template_redcloth.rb",
238
- "examples/templates/template_remarkably.rb",
239
- "examples/templates/template_tenjin.rb",
240
- "examples/templates/template_xslt.rb",
241
- "lib/proto/controller/init.rb",
242
- "lib/proto/controller/main.rb",
243
- "lib/proto/model/init.rb",
244
- "lib/proto/public/.htaccess",
245
- "lib/proto/public/css/ramaze_error.css",
246
- "lib/proto/public/dispatch.fcgi",
247
- "lib/proto/public/favicon.ico",
248
- "lib/proto/public/js/jquery.js",
249
- "lib/proto/public/ramaze.png",
250
- "lib/proto/spec/main.rb",
251
- "lib/proto/start.rb",
252
- "lib/proto/start.ru",
253
- "lib/proto/view/error.xhtml",
254
- "lib/proto/view/index.xhtml",
255
- "lib/proto/view/page.xhtml",
256
- "lib/ramaze.rb",
257
- "lib/ramaze/action.rb",
258
- "lib/ramaze/action/render.rb",
259
- "lib/ramaze/adapter.rb",
260
- "lib/ramaze/adapter/base.rb",
261
- "lib/ramaze/adapter/cgi.rb",
262
- "lib/ramaze/adapter/ebb.rb",
263
- "lib/ramaze/adapter/evented_mongrel.rb",
264
- "lib/ramaze/adapter/fake.rb",
265
- "lib/ramaze/adapter/fcgi.rb",
266
- "lib/ramaze/adapter/lsws.rb",
267
- "lib/ramaze/adapter/mongrel.rb",
268
- "lib/ramaze/adapter/scgi.rb",
269
- "lib/ramaze/adapter/swiftiplied_mongrel.rb",
270
- "lib/ramaze/adapter/thin.rb",
271
- "lib/ramaze/adapter/webrick.rb",
272
- "lib/ramaze/cache.rb",
273
- "lib/ramaze/cache/file.rb",
274
- "lib/ramaze/cache/memcached.rb",
275
- "lib/ramaze/cache/memory.rb",
276
- "lib/ramaze/cache/yaml_store.rb",
277
- "lib/ramaze/contrib.rb",
278
- "lib/ramaze/contrib/email.rb",
279
- "lib/ramaze/contrib/facebook.rb",
280
- "lib/ramaze/contrib/facebook/facebook.rb",
281
- "lib/ramaze/contrib/file_cache.rb",
282
- "lib/ramaze/contrib/gems.rb",
283
- "lib/ramaze/contrib/gettext.rb",
284
- "lib/ramaze/contrib/gettext/mo.rb",
285
- "lib/ramaze/contrib/gettext/parser.rb",
286
- "lib/ramaze/contrib/gettext/po.rb",
287
- "lib/ramaze/contrib/gzip_filter.rb",
288
- "lib/ramaze/contrib/maruku_uv.rb",
289
- "lib/ramaze/contrib/profiling.rb",
290
- "lib/ramaze/contrib/rest.rb",
291
- "lib/ramaze/contrib/sequel/create_join.rb",
292
- "lib/ramaze/contrib/sequel/fill.rb",
293
- "lib/ramaze/contrib/sequel/form_field.rb",
294
- "lib/ramaze/contrib/sequel/image.rb",
295
- "lib/ramaze/contrib/sequel/relation.rb",
296
- "lib/ramaze/contrib/sequel_cache.rb",
297
- "lib/ramaze/controller.rb",
298
- "lib/ramaze/controller/error.rb",
299
- "lib/ramaze/controller/main.rb",
300
- "lib/ramaze/controller/resolve.rb",
301
- "lib/ramaze/current.rb",
302
- "lib/ramaze/current/request.rb",
303
- "lib/ramaze/current/response.rb",
304
- "lib/ramaze/current/session.rb",
305
- "lib/ramaze/current/session/flash.rb",
306
- "lib/ramaze/current/session/hash.rb",
307
- "lib/ramaze/dispatcher.rb",
308
- "lib/ramaze/dispatcher/action.rb",
309
- "lib/ramaze/dispatcher/directory.rb",
310
- "lib/ramaze/dispatcher/error.rb",
311
- "lib/ramaze/dispatcher/file.rb",
312
- "lib/ramaze/error.rb",
313
- "lib/ramaze/gestalt.rb",
314
- "lib/ramaze/helper.rb",
315
- "lib/ramaze/helper/aspect.rb",
316
- "lib/ramaze/helper/auth.rb",
317
- "lib/ramaze/helper/bench.rb",
318
- "lib/ramaze/helper/cache.rb",
319
- "lib/ramaze/helper/cgi.rb",
320
- "lib/ramaze/helper/flash.rb",
321
- "lib/ramaze/helper/form.rb",
322
- "lib/ramaze/helper/formatting.rb",
323
- "lib/ramaze/helper/gestalt.rb",
324
- "lib/ramaze/helper/gravatar.rb",
325
- "lib/ramaze/helper/httpdigest.rb",
326
- "lib/ramaze/helper/identity.rb",
327
- "lib/ramaze/helper/link.rb",
328
- "lib/ramaze/helper/markaby.rb",
329
- "lib/ramaze/helper/maruku.rb",
330
- "lib/ramaze/helper/nitroform.rb",
331
- "lib/ramaze/helper/pager.rb",
332
- "lib/ramaze/helper/paginate.rb",
333
- "lib/ramaze/helper/partial.rb",
334
- "lib/ramaze/helper/redirect.rb",
335
- "lib/ramaze/helper/rest.rb",
336
- "lib/ramaze/helper/sendfile.rb",
337
- "lib/ramaze/helper/sequel.rb",
338
- "lib/ramaze/helper/simple_captcha.rb",
339
- "lib/ramaze/helper/stack.rb",
340
- "lib/ramaze/helper/tagz.rb",
341
- "lib/ramaze/helper/thread.rb",
342
- "lib/ramaze/helper/ultraviolet.rb",
343
- "lib/ramaze/helper/user.rb",
344
- "lib/ramaze/helper/xhtml.rb",
345
- "lib/ramaze/log.rb",
346
- "lib/ramaze/log/analogger.rb",
347
- "lib/ramaze/log/growl.rb",
348
- "lib/ramaze/log/hub.rb",
349
- "lib/ramaze/log/informer.rb",
350
- "lib/ramaze/log/knotify.rb",
351
- "lib/ramaze/log/logger.rb",
352
- "lib/ramaze/log/logging.rb",
353
- "lib/ramaze/log/rotatinginformer.rb",
354
- "lib/ramaze/log/syslog.rb",
355
- "lib/ramaze/log/xosd.rb",
356
- "lib/ramaze/option.rb",
357
- "lib/ramaze/option/dsl.rb",
358
- "lib/ramaze/option/holder.rb",
359
- "lib/ramaze/option/merger.rb",
360
- "lib/ramaze/reloader.rb",
361
- "lib/ramaze/reloader/watch_inotify.rb",
362
- "lib/ramaze/reloader/watch_stat.rb",
363
- "lib/ramaze/route.rb",
364
- "lib/ramaze/setup.rb",
365
- "lib/ramaze/snippets.rb",
366
- "lib/ramaze/snippets/array/put_within.rb",
367
- "lib/ramaze/snippets/binding/locals.rb",
368
- "lib/ramaze/snippets/blankslate.rb",
369
- "lib/ramaze/snippets/dictionary.rb",
370
- "lib/ramaze/snippets/divide.rb",
371
- "lib/ramaze/snippets/fiber.rb",
372
- "lib/ramaze/snippets/kernel/constant.rb",
373
- "lib/ramaze/snippets/kernel/pretty_inspect.rb",
374
- "lib/ramaze/snippets/metaid.rb",
375
- "lib/ramaze/snippets/numeric/filesize_format.rb",
376
- "lib/ramaze/snippets/numeric/time.rb",
377
- "lib/ramaze/snippets/object/__dir__.rb",
378
- "lib/ramaze/snippets/object/acquire.rb",
379
- "lib/ramaze/snippets/object/instance_variable_defined.rb",
380
- "lib/ramaze/snippets/object/pretty.rb",
381
- "lib/ramaze/snippets/object/scope.rb",
382
- "lib/ramaze/snippets/object/traits.rb",
383
- "lib/ramaze/snippets/ordered_set.rb",
384
- "lib/ramaze/snippets/proc/locals.rb",
385
- "lib/ramaze/snippets/ramaze/acquire.rb",
386
- "lib/ramaze/snippets/ramaze/caller_info.rb",
387
- "lib/ramaze/snippets/ramaze/caller_lines.rb",
388
- "lib/ramaze/snippets/ramaze/deprecated.rb",
389
- "lib/ramaze/snippets/ramaze/fiber.rb",
390
- "lib/ramaze/snippets/ramaze/state.rb",
391
- "lib/ramaze/snippets/ramaze/struct.rb",
392
- "lib/ramaze/snippets/string/camel_case.rb",
393
- "lib/ramaze/snippets/string/color.rb",
394
- "lib/ramaze/snippets/string/each.rb",
395
- "lib/ramaze/snippets/string/end_with.rb",
396
- "lib/ramaze/snippets/string/esc.rb",
397
- "lib/ramaze/snippets/string/ord.rb",
398
- "lib/ramaze/snippets/string/snake_case.rb",
399
- "lib/ramaze/snippets/string/start_with.rb",
400
- "lib/ramaze/snippets/string/unindent.rb",
401
- "lib/ramaze/snippets/thread/into.rb",
402
- "lib/ramaze/spec.rb",
403
- "lib/ramaze/spec/helper.rb",
404
- "lib/ramaze/spec/helper/bacon.rb",
405
- "lib/ramaze/spec/helper/browser.rb",
406
- "lib/ramaze/spec/helper/mock_http.rb",
407
- "lib/ramaze/spec/helper/pretty_output.rb",
408
- "lib/ramaze/spec/helper/requester.rb",
409
- "lib/ramaze/spec/helper/simple_http.rb",
410
- "lib/ramaze/spec/helper/snippets.rb",
411
- "lib/ramaze/store/default.rb",
412
- "lib/ramaze/template.rb",
413
- "lib/ramaze/template/amrita2.rb",
414
- "lib/ramaze/template/builder.rb",
415
- "lib/ramaze/template/erubis.rb",
416
- "lib/ramaze/template/ezamar.rb",
417
- "lib/ramaze/template/ezamar/element.rb",
418
- "lib/ramaze/template/ezamar/engine.rb",
419
- "lib/ramaze/template/ezamar/morpher.rb",
420
- "lib/ramaze/template/ezamar/render_partial.rb",
421
- "lib/ramaze/template/ezamar/textpow.syntax",
422
- "lib/ramaze/template/haml.rb",
423
- "lib/ramaze/template/liquid.rb",
424
- "lib/ramaze/template/markaby.rb",
425
- "lib/ramaze/template/maruku.rb",
426
- "lib/ramaze/template/nagoro.rb",
427
- "lib/ramaze/template/none.rb",
428
- "lib/ramaze/template/redcloth.rb",
429
- "lib/ramaze/template/remarkably.rb",
430
- "lib/ramaze/template/sass.rb",
431
- "lib/ramaze/template/tagz.rb",
432
- "lib/ramaze/template/tenjin.rb",
433
- "lib/ramaze/template/xslt.rb",
434
- "lib/ramaze/tool.rb",
435
- "lib/ramaze/tool/create.rb",
436
- "lib/ramaze/tool/daemonize.rb",
437
- "lib/ramaze/tool/localize.rb",
438
- "lib/ramaze/tool/mime.rb",
439
- "lib/ramaze/tool/mime_types.yaml",
440
- "lib/ramaze/tool/project_creator.rb",
441
- "lib/ramaze/tool/record.rb",
442
- "lib/ramaze/trinity.rb",
443
- "lib/ramaze/version.rb",
444
- "lib/vendor/bacon.rb",
445
- "rake_tasks/conf.rake",
446
- "rake_tasks/coverage.rake",
447
- "rake_tasks/gem.rake",
448
- "rake_tasks/git.rake",
449
- "rake_tasks/maintenance.rake",
450
- "rake_tasks/metric.rake",
451
- "rake_tasks/release.rake",
452
- "rake_tasks/spec.rake",
453
- "ramaze.gemspec",
454
- "spec/contrib/profiling.rb",
455
- "spec/contrib/sequel/fill.rb",
456
- "spec/examples/caching.rb",
457
- "spec/examples/css.rb",
458
- "spec/examples/element.rb",
459
- "spec/examples/hello.rb",
460
- "spec/examples/linking.rb",
461
- "spec/examples/simple.rb",
462
- "spec/examples/simple_auth.rb",
463
- "spec/examples/templates/template_amrita2.rb",
464
- "spec/examples/templates/template_erubis.rb",
465
- "spec/examples/templates/template_ezamar.rb",
466
- "spec/examples/templates/template_haml.rb",
467
- "spec/examples/templates/template_liquid.rb",
468
- "spec/examples/templates/template_markaby.rb",
469
- "spec/examples/templates/template_redcloth.rb",
470
- "spec/examples/templates/template_remarkably.rb",
471
- "spec/examples/templates/template_tenjin.rb",
472
- "spec/helper.rb",
473
- "spec/ramaze/action/basics.rb",
474
- "spec/ramaze/action/cache.rb",
475
- "spec/ramaze/action/file_cache.rb",
476
- "spec/ramaze/action/layout.rb",
477
- "spec/ramaze/action/render.rb",
478
- "spec/ramaze/action/view/bar.xhtml",
479
- "spec/ramaze/action/view/instancevars/layout.xhtml",
480
- "spec/ramaze/action/view/other_wrapper.xhtml",
481
- "spec/ramaze/action/view/single_wrapper.xhtml",
482
- "spec/ramaze/action/view/sub/sub_wrapper.xhtml",
483
- "spec/ramaze/adapter.rb",
484
- "spec/ramaze/adapter/ebb.rb",
485
- "spec/ramaze/adapter/mongrel.rb",
486
- "spec/ramaze/adapter/record.rb",
487
- "spec/ramaze/adapter/webrick.rb",
488
- "spec/ramaze/cache.rb",
489
- "spec/ramaze/controller.rb",
490
- "spec/ramaze/controller/actionless_templates.rb",
491
- "spec/ramaze/controller/resolve.rb",
492
- "spec/ramaze/controller/subclass.rb",
493
- "spec/ramaze/controller/template_resolving.rb",
494
- "spec/ramaze/controller/view/bar.xhtml",
495
- "spec/ramaze/controller/view/base/another.xhtml",
496
- "spec/ramaze/controller/view/greet.xhtml",
497
- "spec/ramaze/controller/view/list.xhtml",
498
- "spec/ramaze/controller/view/other/greet/other.xhtml",
499
- "spec/ramaze/controller/view/other_wrapper.xhtml",
500
- "spec/ramaze/current/request.rb",
501
- "spec/ramaze/current/session.rb",
502
- "spec/ramaze/dispatcher.rb",
503
- "spec/ramaze/dispatcher/directory.rb",
504
- "spec/ramaze/dispatcher/file.rb",
505
- "spec/ramaze/dispatcher/public/favicon.ico",
506
- "spec/ramaze/dispatcher/public/file name.txt",
507
- "spec/ramaze/dispatcher/public/test_download.css",
508
- "spec/ramaze/element.rb",
509
- "spec/ramaze/error.rb",
510
- "spec/ramaze/gestalt.rb",
511
- "spec/ramaze/helper/aspect.rb",
512
- "spec/ramaze/helper/auth.rb",
513
- "spec/ramaze/helper/cache.rb",
514
- "spec/ramaze/helper/cgi.rb",
515
- "spec/ramaze/helper/file.rb",
516
- "spec/ramaze/helper/flash.rb",
517
- "spec/ramaze/helper/form.rb",
518
- "spec/ramaze/helper/formatting.rb",
519
- "spec/ramaze/helper/link.rb",
520
- "spec/ramaze/helper/pager.rb",
521
- "spec/ramaze/helper/partial.rb",
522
- "spec/ramaze/helper/redirect.rb",
523
- "spec/ramaze/helper/simple_captcha.rb",
524
- "spec/ramaze/helper/stack.rb",
525
- "spec/ramaze/helper/user.rb",
526
- "spec/ramaze/helper/view/locals.xhtml",
527
- "spec/ramaze/helper/view/loop.xhtml",
528
- "spec/ramaze/helper/view/num.xhtml",
529
- "spec/ramaze/helper/view/partial.xhtml",
530
- "spec/ramaze/helper/view/recursive.xhtml",
531
- "spec/ramaze/helper/view/recursive_local_ivars.xhtml",
532
- "spec/ramaze/helper/view/recursive_locals.xhtml",
533
- "spec/ramaze/helper/view/test_template.xhtml",
534
- "spec/ramaze/localize.rb",
535
- "spec/ramaze/log/informer.rb",
536
- "spec/ramaze/log/syslog.rb",
537
- "spec/ramaze/morpher.rb",
538
- "spec/ramaze/params.rb",
539
- "spec/ramaze/public/error404.xhtml",
540
- "spec/ramaze/public/favicon.ico",
541
- "spec/ramaze/public/ramaze.png",
542
- "spec/ramaze/public/test_download.css",
543
- "spec/ramaze/request.rb",
544
- "spec/ramaze/request/ebb.rb",
545
- "spec/ramaze/request/mongrel.rb",
546
- "spec/ramaze/request/thin.rb",
547
- "spec/ramaze/request/webrick.rb",
548
- "spec/ramaze/rewrite.rb",
549
- "spec/ramaze/rewrite/file.css",
550
- "spec/ramaze/route.rb",
551
- "spec/ramaze/session.rb",
552
- "spec/ramaze/store/default.rb",
553
- "spec/ramaze/struct.rb",
554
- "spec/ramaze/template.rb",
555
- "spec/ramaze/template/amrita2.rb",
556
- "spec/ramaze/template/amrita2/external.amrita",
557
- "spec/ramaze/template/amrita2/sum.amrita",
558
- "spec/ramaze/template/builder.rb",
559
- "spec/ramaze/template/builder/external.rxml",
560
- "spec/ramaze/template/erubis.rb",
561
- "spec/ramaze/template/erubis/sum.rhtml",
562
- "spec/ramaze/template/ezamar.rb",
563
- "spec/ramaze/template/ezamar/another/long/action.zmr",
564
- "spec/ramaze/template/ezamar/combined.zmr",
565
- "spec/ramaze/template/ezamar/file_only.zmr",
566
- "spec/ramaze/template/ezamar/index.zmr",
567
- "spec/ramaze/template/ezamar/nested.zmr",
568
- "spec/ramaze/template/ezamar/other__index.xhtml",
569
- "spec/ramaze/template/ezamar/some__long__action.zmr",
570
- "spec/ramaze/template/ezamar/sum.zmr",
571
- "spec/ramaze/template/haml.rb",
572
- "spec/ramaze/template/haml/index.haml",
573
- "spec/ramaze/template/haml/locals.haml",
574
- "spec/ramaze/template/haml/with_vars.haml",
575
- "spec/ramaze/template/liquid.rb",
576
- "spec/ramaze/template/liquid/index.liquid",
577
- "spec/ramaze/template/liquid/products.liquid",
578
- "spec/ramaze/template/markaby.rb",
579
- "spec/ramaze/template/markaby/external.mab",
580
- "spec/ramaze/template/markaby/sum.mab",
581
- "spec/ramaze/template/nagoro.rb",
582
- "spec/ramaze/template/nagoro/another/long/action.nag",
583
- "spec/ramaze/template/nagoro/combined.nag",
584
- "spec/ramaze/template/nagoro/file_only.nag",
585
- "spec/ramaze/template/nagoro/index.nag",
586
- "spec/ramaze/template/nagoro/nested.nag",
587
- "spec/ramaze/template/nagoro/some__long__action.nag",
588
- "spec/ramaze/template/nagoro/sum.nag",
589
- "spec/ramaze/template/ramaze/external.test",
590
- "spec/ramaze/template/redcloth.rb",
591
- "spec/ramaze/template/redcloth/external.redcloth",
592
- "spec/ramaze/template/remarkably.rb",
593
- "spec/ramaze/template/remarkably/external.rem",
594
- "spec/ramaze/template/remarkably/sum.rem",
595
- "spec/ramaze/template/sass.rb",
596
- "spec/ramaze/template/sass/file.css.sass",
597
- "spec/ramaze/template/tagz.rb",
598
- "spec/ramaze/template/tagz/external.tagz",
599
- "spec/ramaze/template/tagz/sum.tagz",
600
- "spec/ramaze/template/tenjin.rb",
601
- "spec/ramaze/template/tenjin/external.tenjin",
602
- "spec/ramaze/template/xslt.rb",
603
- "spec/ramaze/template/xslt/concat_words.xsl",
604
- "spec/ramaze/template/xslt/index.xsl",
605
- "spec/ramaze/template/xslt/products.xsl",
606
- "spec/ramaze/template/xslt/ruby_version.xsl",
607
- "spec/snippets/array/put_within.rb",
608
- "spec/snippets/binding/locals.rb",
609
- "spec/snippets/kernel/constant.rb",
610
- "spec/snippets/numeric/filesize_format.rb",
611
- "spec/snippets/numeric/time.rb",
612
- "spec/snippets/object/__dir__.rb",
613
- "spec/snippets/ordered_set.rb",
614
- "spec/snippets/ramaze/acquire.rb",
615
- "spec/snippets/ramaze/caller_info.rb",
616
- "spec/snippets/ramaze/caller_lines.rb",
617
- "spec/snippets/string/camel_case.rb",
618
- "spec/snippets/string/color.rb",
619
- "spec/snippets/string/snake_case.rb",
620
- "spec/snippets/string/unindent.rb",
621
- "spec/snippets/thread/into.rb"]
622
- end