ramaze 2008.11 → 2009.01

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 (110) hide show
  1. data/README.markdown +7 -7
  2. data/benchmark/run.rb +1 -1
  3. data/doc/CHANGELOG +662 -0
  4. data/examples/app/blog/model/entry.rb +8 -1
  5. data/examples/app/blog/spec/blog.rb +2 -2
  6. data/examples/app/rapaste/spec/rapaste.rb +1 -1
  7. data/examples/app/rapaste/start.rb +2 -2
  8. data/examples/app/rapaste/view/view.xhtml +3 -0
  9. data/examples/app/todolist/spec/todolist.rb +1 -1
  10. data/examples/app/whywiki/spec/whywiki.rb +1 -1
  11. data/examples/app/wikore/spec/wikore.rb +1 -1
  12. data/examples/app/wikore/src/model.rb +8 -2
  13. data/examples/app/wiktacular/spec/wiktacular.rb +1 -1
  14. data/examples/app/wiktacular/src/model.rb +1 -1
  15. data/examples/basic/partial.rb +28 -0
  16. data/examples/helpers/httpdigest.rb +68 -10
  17. data/examples/misc/ramaise.rb +2 -2
  18. data/examples/templates/template_amrita2.rb +1 -1
  19. data/examples/templates/template_erubis.rb +1 -1
  20. data/examples/templates/template_ezamar.rb +1 -1
  21. data/examples/templates/template_haml.rb +2 -2
  22. data/examples/templates/template_liquid.rb +1 -1
  23. data/examples/templates/template_markaby.rb +2 -2
  24. data/examples/templates/template_nagoro.rb +1 -1
  25. data/examples/templates/template_redcloth.rb +1 -1
  26. data/examples/templates/template_remarkably.rb +2 -2
  27. data/examples/templates/template_tenjin.rb +1 -1
  28. data/examples/templates/template_xslt.rb +1 -1
  29. data/lib/proto/controller/init.rb +2 -1
  30. data/lib/proto/model/init.rb +3 -3
  31. data/lib/proto/public/dispatch.fcgi +2 -2
  32. data/lib/proto/spec/main.rb +3 -3
  33. data/lib/proto/start.rb +4 -0
  34. data/lib/ramaze.rb +6 -0
  35. data/lib/ramaze/action.rb +7 -1
  36. data/lib/ramaze/action/render.rb +6 -5
  37. data/lib/ramaze/cache.rb +1 -0
  38. data/lib/ramaze/cache/file.rb +71 -0
  39. data/lib/ramaze/contrib.rb +1 -1
  40. data/lib/ramaze/contrib/email.rb +2 -0
  41. data/lib/ramaze/contrib/facebook.rb +2 -2
  42. data/lib/ramaze/contrib/file_cache.rb +2 -64
  43. data/lib/ramaze/contrib/sequel/image.rb +1 -1
  44. data/lib/ramaze/controller.rb +9 -1
  45. data/lib/ramaze/controller/resolve.rb +10 -5
  46. data/lib/ramaze/current/request.rb +87 -70
  47. data/lib/ramaze/current/session.rb +3 -5
  48. data/lib/ramaze/current/session/hash.rb +7 -11
  49. data/lib/ramaze/dispatcher/action.rb +2 -0
  50. data/lib/ramaze/dispatcher/file.rb +6 -1
  51. data/lib/ramaze/helper.rb +12 -4
  52. data/lib/ramaze/helper/aspect.rb +2 -2
  53. data/lib/ramaze/helper/bench.rb +43 -0
  54. data/lib/ramaze/helper/form.rb +5 -2
  55. data/lib/ramaze/helper/formatting.rb +4 -0
  56. data/lib/ramaze/helper/gravatar.rb +18 -1
  57. data/lib/ramaze/helper/httpdigest.rb +55 -28
  58. data/lib/ramaze/helper/markaby.rb +1 -1
  59. data/lib/ramaze/helper/maruku.rb +2 -0
  60. data/lib/ramaze/helper/paginate.rb +1 -1
  61. data/lib/ramaze/helper/partial.rb +1 -1
  62. data/lib/ramaze/helper/redirect.rb +22 -4
  63. data/lib/ramaze/helper/user.rb +4 -4
  64. data/lib/ramaze/option.rb +1 -1
  65. data/lib/ramaze/option/holder.rb +3 -3
  66. data/lib/ramaze/reloader.rb +25 -41
  67. data/lib/ramaze/reloader/watch_inotify.rb +85 -0
  68. data/lib/ramaze/reloader/watch_stat.rb +58 -0
  69. data/lib/ramaze/snippets/divide.rb +2 -0
  70. data/lib/ramaze/snippets/numeric/time.rb +1 -1
  71. data/lib/ramaze/snippets/object/__dir__.rb +3 -3
  72. data/lib/ramaze/snippets/object/acquire.rb +3 -6
  73. data/lib/ramaze/snippets/ramaze/acquire.rb +31 -0
  74. data/lib/ramaze/snippets/ramaze/deprecated.rb +2 -1
  75. data/lib/ramaze/spec/helper/mock_http.rb +6 -5
  76. data/lib/ramaze/template/ezamar/render_partial.rb +8 -0
  77. data/lib/ramaze/tool/mime.rb +1 -1
  78. data/lib/ramaze/tool/project_creator.rb +2 -1
  79. data/lib/ramaze/version.rb +2 -2
  80. data/rake_tasks/coverage.rake +4 -5
  81. data/rake_tasks/spec.rake +6 -6
  82. data/ramaze-2008.11.gem +0 -0
  83. data/ramaze.gemspec +759 -758
  84. data/spec/contrib/profiling.rb +2 -2
  85. data/spec/ramaze/action/file_cache.rb +1 -1
  86. data/spec/ramaze/action/layout.rb +1 -1
  87. data/spec/ramaze/controller/actionless_templates.rb +1 -1
  88. data/spec/ramaze/controller/resolve.rb +1 -1
  89. data/spec/ramaze/controller/template_resolving.rb +1 -1
  90. data/spec/ramaze/dispatcher/directory.rb +3 -3
  91. data/spec/ramaze/helper/aspect.rb +1 -1
  92. data/spec/ramaze/helper/partial.rb +1 -1
  93. data/spec/ramaze/localize.rb +1 -1
  94. data/spec/ramaze/rewrite.rb +1 -1
  95. data/spec/ramaze/template.rb +3 -3
  96. data/spec/ramaze/template/amrita2.rb +1 -1
  97. data/spec/ramaze/template/erubis.rb +1 -1
  98. data/spec/ramaze/template/ezamar.rb +1 -1
  99. data/spec/ramaze/template/haml.rb +2 -2
  100. data/spec/ramaze/template/nagoro.rb +1 -1
  101. data/spec/ramaze/template/redcloth.rb +1 -1
  102. data/spec/ramaze/template/sass.rb +1 -1
  103. data/spec/ramaze/template/tenjin.rb +1 -1
  104. data/spec/snippets/object/__dir__.rb +6 -0
  105. data/spec/snippets/{object → ramaze}/acquire.rb +24 -18
  106. metadata +18 -16
  107. data/lib/ramaze/contrib/auto_params.rb +0 -135
  108. data/lib/ramaze/contrib/auto_params/get_args.rb +0 -58
  109. data/spec/contrib/auto_params.rb +0 -121
  110. data/spec/snippets/divide.rb +0 -19
@@ -15,14 +15,14 @@ Ramaze::Log.loggers << Ramaze::Logger::Informer.new(output)
15
15
 
16
16
  describe 'Profiling' do
17
17
  behaves_like "http"
18
- ramaze :public_root => __DIR__/:public
18
+ ramaze :public_root => __DIR__(:public)
19
19
 
20
20
  it "should profile" do
21
21
  output = StringIO.new
22
22
  Ramaze::Log.loggers << Ramaze::Logger::Informer.new(output)
23
23
 
24
24
  get('/')
25
- output.string.should =~ /Thread ID:\s\d+/
25
+ output.string.should =~ /Thread ID:\s-?\d+/
26
26
  output.string.should =~ /Total:/
27
27
  output.string.should =~ /self\s+total\s+self\s+wait\s+child\s+call/
28
28
  end
@@ -37,7 +37,7 @@ end
37
37
  describe 'Action rendering' do
38
38
  behaves_like 'http'
39
39
 
40
- FileUtils.mkdir_p(public_root = __DIR__/:public)
40
+ FileUtils.mkdir_p(public_root = __DIR__(:public))
41
41
 
42
42
  ramaze :file_cache => true, :public_root => public_root
43
43
 
@@ -20,7 +20,7 @@ end
20
20
  class TCActionOtherLayout < Ramaze::Controller
21
21
  map '/other'
22
22
  layout '/other_wrapper'
23
- view_root __DIR__/:view
23
+ view_root __DIR__(:view)
24
24
 
25
25
  def index
26
26
  "Others Hello"
@@ -19,7 +19,7 @@ end
19
19
  describe "Testing Actionless Templates" do
20
20
  behaves_like 'http'
21
21
  ramaze :actionless_templates => false,
22
- :view_root => __DIR__/:view, :error_page => true
22
+ :view_root => __DIR__(:view), :error_page => true
23
23
 
24
24
  it "should not find template file for non existant method" do
25
25
  get('/non_existant_method').status.should == 404
@@ -15,7 +15,7 @@ end
15
15
 
16
16
  describe 'Controller resolving' do
17
17
  behaves_like 'http'
18
- ramaze :view_root => __DIR__/:view
18
+ ramaze :view_root => __DIR__(:view)
19
19
 
20
20
  it 'should work with .' do
21
21
  get('/file.ext').body.should == 'file.ext'
@@ -4,7 +4,7 @@
4
4
  require 'spec/helper'
5
5
 
6
6
  class MainController < Ramaze::Controller
7
- view_root __DIR__/:view
7
+ view_root __DIR__(:view)
8
8
 
9
9
  def greet(type, message = "Message")
10
10
  @greet = "#{type} : #{message}"
@@ -12,8 +12,8 @@ describe 'Dispatcher::Directory' do
12
12
  /test/six.txt ]
13
13
 
14
14
  @hierarchy.each do |path|
15
- FileUtils.mkdir_p(__DIR__/:public/File.dirname(path))
16
- FileUtils.touch(__DIR__/:public/path)
15
+ FileUtils.mkdir_p(__DIR__(:public, File.dirname(path)))
16
+ FileUtils.touch(__DIR__(:public, path))
17
17
  end
18
18
 
19
19
  def build_listing(path)
@@ -51,5 +51,5 @@ describe 'Dispatcher::Directory' do
51
51
  check '/test', 'Directory listing of /test', files
52
52
  end
53
53
 
54
- FileUtils.rm_rf(__DIR__/:public/:test)
54
+ FileUtils.rm_rf(__DIR__('public/test'))
55
55
  end
@@ -24,7 +24,7 @@ class TCAspectAllController < Ramaze::Controller
24
24
  map '/all'
25
25
 
26
26
  helper :aspect
27
- view_root __DIR__/:view
27
+ view_root __DIR__(:view)
28
28
 
29
29
  def test_all_first() 'first' end
30
30
  def test_all_second() 'second' end
@@ -48,7 +48,7 @@ end
48
48
 
49
49
  describe "PartialHelper" do
50
50
  behaves_like 'http'
51
- ramaze :view_root => __DIR__/:view
51
+ ramaze :view_root => __DIR__(:view)
52
52
 
53
53
  it "should render partials" do
54
54
  get('/').body.should == '<html><head><title>Title</title></head></html>'
@@ -42,7 +42,7 @@ end
42
42
  describe "Localize" do
43
43
  behaves_like 'http'
44
44
 
45
- @dir = __DIR__ / :conf
45
+ @dir = __DIR__(:conf)
46
46
  FileUtils.mkdir_p(@dir)
47
47
 
48
48
  dict = {
@@ -12,7 +12,7 @@ end
12
12
 
13
13
  describe 'Route' do
14
14
  behaves_like 'http'
15
- ramaze :public_root => __DIR__/:rewrite
15
+ ramaze :public_root => __DIR__(:rewrite)
16
16
 
17
17
  Ramaze::Rewrite[%r|^/index.php(.*)$|] = "%s"
18
18
 
@@ -21,7 +21,7 @@ end
21
21
  class TCTemplateController < Ramaze::Controller
22
22
  map '/'
23
23
  engine :TestTemplate
24
- view_root __DIR__/:template/:ramaze
24
+ view_root __DIR__('template/ramaze')
25
25
 
26
26
  def index *args
27
27
  end
@@ -32,7 +32,7 @@ end
32
32
 
33
33
  class TCMultipleTemplateRoots < Ramaze::Controller
34
34
  map '/multiple'
35
- view_root __DIR__/:helper/:view, __DIR__/:template/:ezamar
35
+ view_root __DIR__('helper/view'), __DIR__('template/ezamar')
36
36
 
37
37
  def sum
38
38
  @num1, @num2 = 1, 2
@@ -49,7 +49,7 @@ class TCMultipleTemplateRoots < Ramaze::Controller
49
49
  end
50
50
 
51
51
  describe "testing ramaze template" do
52
- ramaze :view_root => __DIR__/:view
52
+ ramaze :view_root => __DIR__(:view)
53
53
 
54
54
  def getpage page
55
55
  content = Ramaze::Controller.handle(page)
@@ -6,7 +6,7 @@ require 'spec/helper'
6
6
  spec_require 'amrita2'
7
7
 
8
8
  class TCTemplateAmritaController < Ramaze::Controller
9
- view_root __DIR__/:amrita2
9
+ view_root __DIR__(:amrita2)
10
10
  engine :Amrita2
11
11
 
12
12
  def internal
@@ -6,7 +6,7 @@ require 'spec/helper'
6
6
  spec_require 'erubis'
7
7
 
8
8
  class TCTemplateErubisController < Ramaze::Controller
9
- view_root __DIR__/:erubis
9
+ view_root __DIR__(:erubis)
10
10
  engine :Erubis
11
11
 
12
12
  def index
@@ -5,7 +5,7 @@ require 'spec/helper'
5
5
 
6
6
  class TCTemplateController < Ramaze::Controller
7
7
  map :/
8
- view_root __DIR__/:ezamar
8
+ view_root __DIR__(:ezamar)
9
9
  engine :Ezamar
10
10
 
11
11
  def index text
@@ -7,7 +7,7 @@ spec_require 'ramaze/template/haml'
7
7
 
8
8
  class TCTemplateHamlController < Ramaze::Controller
9
9
  map :/
10
- view_root __DIR__/:haml
10
+ view_root __DIR__(:haml)
11
11
  engine :Haml
12
12
 
13
13
  helper :link
@@ -22,7 +22,7 @@ end
22
22
 
23
23
  class TCRamazeLocals < Ramaze::Controller
24
24
  map '/locals'
25
- view_root __DIR__/:haml
25
+ view_root __DIR__(:haml)
26
26
 
27
27
  def output
28
28
  render_template 'locals.haml', :abc => 'def'
@@ -6,7 +6,7 @@ spec_require 'nagoro'
6
6
 
7
7
  class TCTemplateNagoroController < Ramaze::Controller
8
8
  map :/
9
- view_root __DIR__/:nagoro
9
+ view_root __DIR__(:nagoro)
10
10
  engine :Nagoro
11
11
 
12
12
  def index text
@@ -4,7 +4,7 @@ spec_require 'erubis'
4
4
  spec_require 'redcloth'
5
5
 
6
6
  class TCTemplateRedClothController < Ramaze::Controller
7
- view_root __DIR__/:redcloth
7
+ view_root __DIR__(:redcloth)
8
8
  engine :RedCloth
9
9
 
10
10
  def index
@@ -7,7 +7,7 @@ spec_require 'sass/engine'
7
7
 
8
8
  class TCTemplateSassController < Ramaze::Controller
9
9
  map '/'
10
- view_root __DIR__/:sass
10
+ view_root __DIR__(:sass)
11
11
  engine :Sass
12
12
 
13
13
  define_method('style.css') do
@@ -3,7 +3,7 @@ require 'spec/helper'
3
3
  spec_require 'tenjin'
4
4
 
5
5
  class TCTemplateTenjinController < Ramaze::Controller
6
- view_root __DIR__/:tenjin
6
+ view_root __DIR__(:tenjin)
7
7
  engine :Tenjin
8
8
 
9
9
  def index
@@ -5,4 +5,10 @@ describe '__DIR__' do
5
5
  it 'should report the directory of the current file' do
6
6
  __DIR__.should == File.dirname(File.expand_path(__FILE__))
7
7
  end
8
+
9
+ should 'join passed arguments and prefix with directory of current file' do
10
+ __DIR__(:foo).should == File.join(File.dirname(File.expand_path(__FILE__)), 'foo')
11
+ __DIR__('foo/bar').should == File.join(File.dirname(File.expand_path(__FILE__)), 'foo/bar')
12
+ __DIR__(:foo, :bar).should == File.join(File.dirname(File.expand_path(__FILE__)), 'foo/bar')
13
+ end
8
14
  end
@@ -1,11 +1,17 @@
1
1
  require 'lib/ramaze/spec/helper/snippets'
2
2
  require 'fileutils'
3
3
 
4
- describe 'acquire' do
5
- def require(name)
6
- @required << name
4
+
5
+ # Mock require to only record attempts
6
+ $required = []
7
+
8
+ module Ramaze
9
+ def self.require(name)
10
+ $required << name
7
11
  end
12
+ end
8
13
 
14
+ describe 'Ramaze::acquire' do
9
15
  before do
10
16
  dir = 'tmp_dir_for_acquire'
11
17
  FileUtils.mkdir_p(dir + '/sub')
@@ -15,43 +21,43 @@ describe 'acquire' do
15
21
  FileUtils.touch("#{dir}/#{path}")
16
22
  end
17
23
 
18
- @required = []
24
+ $required = []
19
25
  end
20
26
 
21
27
  it 'should not load a single file' do
22
- acquire 'tmp_dir_for_acquire/foo'
23
- @required.should == []
28
+ Ramaze::acquire 'tmp_dir_for_acquire/foo'
29
+ $required.should == []
24
30
  end
25
31
 
26
32
  it 'should load dir' do
27
- acquire 'tmp_dir_for_acquire/sub/*'
28
- @required.should == %w[
33
+ Ramaze::acquire 'tmp_dir_for_acquire/sub/*'
34
+ $required.should == %w[
29
35
  tmp_dir_for_acquire/sub/baz.rb]
30
36
  end
31
37
 
32
38
  it 'should be aliased to acquire' do
33
- acquire 'tmp_dir_for_acquire/sub/*'
34
- @required.should.not.be.empty
39
+ Ramaze::acquire 'tmp_dir_for_acquire/sub/*'
40
+ $required.should.not.be.empty
35
41
  end
36
42
 
37
43
  it 'should load {so,rb}, not others' do
38
- acquire 'tmp_dir_for_acquire/*'
39
- @required.sort.should == %w[
44
+ Ramaze::acquire 'tmp_dir_for_acquire/*'
45
+ $required.sort.should == %w[
40
46
  tmp_dir_for_acquire/bar.rb
41
47
  tmp_dir_for_acquire/baz.so
42
48
  tmp_dir_for_acquire/foo.rb]
43
49
  end
44
50
 
45
51
  it 'should use globbing' do
46
- acquire 'tmp_dir_for_acquire/ba*'
47
- @required.sort.should == %w[
52
+ Ramaze::acquire 'tmp_dir_for_acquire/ba*'
53
+ $required.sort.should == %w[
48
54
  tmp_dir_for_acquire/bar.rb
49
55
  tmp_dir_for_acquire/baz.so]
50
56
  end
51
57
 
52
58
  it 'should use recursive globbing' do
53
- acquire 'tmp_dir_for_acquire/**/*'
54
- @required.sort.should == %w[
59
+ Ramaze::acquire 'tmp_dir_for_acquire/**/*'
60
+ $required.sort.should == %w[
55
61
  tmp_dir_for_acquire/bar.rb
56
62
  tmp_dir_for_acquire/baz.so
57
63
  tmp_dir_for_acquire/foo.rb
@@ -59,8 +65,8 @@ describe 'acquire' do
59
65
  end
60
66
 
61
67
  it 'should accept multiple arguments' do
62
- acquire 'tmp_dir_for_acquire/*', 'tmp_dir_for_acquire/sub/*'
63
- @required.sort.should == %w[
68
+ Ramaze::acquire 'tmp_dir_for_acquire/*', 'tmp_dir_for_acquire/sub/*'
69
+ $required.sort.should == %w[
64
70
  tmp_dir_for_acquire/bar.rb
65
71
  tmp_dir_for_acquire/baz.so
66
72
  tmp_dir_for_acquire/foo.rb
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: "2008.11"
4
+ version: "2009.01"
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: 2008-11-09 00:00:00 -05:00
12
+ date: 2009-01-12 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -265,6 +265,7 @@ files:
265
265
  - examples/basic/hello.rb
266
266
  - examples/basic/layout.rb
267
267
  - examples/basic/linking.rb
268
+ - examples/basic/partial.rb
268
269
  - examples/basic/simple.rb
269
270
  - examples/helpers
270
271
  - examples/helpers/cache.rb
@@ -353,14 +354,12 @@ files:
353
354
  - lib/ramaze/adapter/webrick.rb
354
355
  - lib/ramaze/cache
355
356
  - lib/ramaze/cache.rb
357
+ - lib/ramaze/cache/file.rb
356
358
  - lib/ramaze/cache/memcached.rb
357
359
  - lib/ramaze/cache/memory.rb
358
360
  - lib/ramaze/cache/yaml_store.rb
359
361
  - lib/ramaze/contrib
360
362
  - lib/ramaze/contrib.rb
361
- - lib/ramaze/contrib/auto_params
362
- - lib/ramaze/contrib/auto_params.rb
363
- - lib/ramaze/contrib/auto_params/get_args.rb
364
363
  - lib/ramaze/contrib/email.rb
365
364
  - lib/ramaze/contrib/facebook
366
365
  - lib/ramaze/contrib/facebook.rb
@@ -408,6 +407,7 @@ files:
408
407
  - lib/ramaze/helper.rb
409
408
  - lib/ramaze/helper/aspect.rb
410
409
  - lib/ramaze/helper/auth.rb
410
+ - lib/ramaze/helper/bench.rb
411
411
  - lib/ramaze/helper/cache.rb
412
412
  - lib/ramaze/helper/cgi.rb
413
413
  - lib/ramaze/helper/flash.rb
@@ -452,7 +452,10 @@ files:
452
452
  - lib/ramaze/option/dsl.rb
453
453
  - lib/ramaze/option/holder.rb
454
454
  - lib/ramaze/option/merger.rb
455
+ - lib/ramaze/reloader
455
456
  - lib/ramaze/reloader.rb
457
+ - lib/ramaze/reloader/watch_inotify.rb
458
+ - lib/ramaze/reloader/watch_stat.rb
456
459
  - lib/ramaze/route.rb
457
460
  - lib/ramaze/setup.rb
458
461
  - lib/ramaze/snippets
@@ -483,6 +486,7 @@ files:
483
486
  - lib/ramaze/snippets/proc
484
487
  - lib/ramaze/snippets/proc/locals.rb
485
488
  - lib/ramaze/snippets/ramaze
489
+ - lib/ramaze/snippets/ramaze/acquire.rb
486
490
  - lib/ramaze/snippets/ramaze/caller_info.rb
487
491
  - lib/ramaze/snippets/ramaze/caller_lines.rb
488
492
  - lib/ramaze/snippets/ramaze/deprecated.rb
@@ -551,6 +555,7 @@ files:
551
555
  - lib/ramaze/version.rb
552
556
  - lib/vendor
553
557
  - lib/vendor/bacon.rb
558
+ - pkg
554
559
  - rake_tasks
555
560
  - rake_tasks/conf.rake
556
561
  - rake_tasks/coverage.rake
@@ -560,10 +565,10 @@ files:
560
565
  - rake_tasks/metric.rake
561
566
  - rake_tasks/release.rake
562
567
  - rake_tasks/spec.rake
568
+ - ramaze-2008.11.gem
563
569
  - ramaze.gemspec
564
570
  - spec
565
571
  - spec/contrib
566
- - spec/contrib/auto_params.rb
567
572
  - spec/contrib/profiling.rb
568
573
  - spec/contrib/sequel
569
574
  - spec/contrib/sequel/fill.rb
@@ -766,7 +771,6 @@ files:
766
771
  - spec/snippets/array/put_within.rb
767
772
  - spec/snippets/binding
768
773
  - spec/snippets/binding/locals.rb
769
- - spec/snippets/divide.rb
770
774
  - spec/snippets/kernel
771
775
  - spec/snippets/kernel/constant.rb
772
776
  - spec/snippets/numeric
@@ -774,9 +778,9 @@ files:
774
778
  - spec/snippets/numeric/time.rb
775
779
  - spec/snippets/object
776
780
  - spec/snippets/object/__dir__.rb
777
- - spec/snippets/object/acquire.rb
778
781
  - spec/snippets/ordered_set.rb
779
782
  - spec/snippets/ramaze
783
+ - spec/snippets/ramaze/acquire.rb
780
784
  - spec/snippets/ramaze/caller_info.rb
781
785
  - spec/snippets/ramaze/caller_lines.rb
782
786
  - spec/snippets/string
@@ -789,16 +793,14 @@ files:
789
793
  has_rdoc: true
790
794
  homepage: http://ramaze.rubyforge.org
791
795
  post_install_message: |-
792
-
793
796
  ============================================================
794
-
797
+
795
798
  Thank you for installing Ramaze!
796
- The main website is http://ramaze.net .
799
+ You can now do following:
800
+
801
+ * Create a new project using the `ramaze' command:
802
+ ramaze --create yourproject
797
803
 
798
- Feel free to ask questions in our IRC channel:
799
- irc.freenode.net #ramaze
800
- http://mibbit.com/?server=irc.freenode.net&channel=%23ramaze
801
-
802
804
  ============================================================
803
805
  rdoc_options: []
804
806
 
@@ -819,7 +821,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
819
821
  requirements: []
820
822
 
821
823
  rubyforge_project: ramaze
822
- rubygems_version: 1.2.0
824
+ rubygems_version: 1.3.1
823
825
  signing_key:
824
826
  specification_version: 2
825
827
  summary: Ramaze is a simple and modular web framework