merb_sequel 1.0.9 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,18 +2,22 @@
2
2
 
3
3
  A plug-in for the Merb framework that provides support for Sequel models.
4
4
 
5
- This is fork of the code in the official merb-plugins
6
- (http://github.com/wycats/merb-plugins) repository. I did separate repository
7
- and Gem to allow faster and more independent release cycle to keep up with the
8
- Sequel monthly releases.
5
+ If you use my fork on github.com/pk/merb_sequel <b>please use again the official
6
+ repository</b> on github.com/merb/merb_sequel. I'm now updating the official repository.
9
7
 
10
- Plug-in is compatible with Merb 0.9.9 and higher and Sequel 1.4.0 and
8
+ Plug-in is compatible with Merb 0.9.9 and higher and Sequel 2.7.0 and
11
9
  higher including 2.x.x and <b>3.x.x</b>.
12
10
 
13
- <b>Any issues please report to http://github.com/pk/merb_sequel/issues</b>.
11
+ <b>Any issues please report to https://merb.lighthouseapp.com/projects/7588-merb-plugins</b>.
14
12
 
15
13
 
16
14
  == Install
15
+ <b>Since 1.0.9 you can install official Merb gem</b>:
16
+
17
+ gem install merb_sequel --source http://gemcutter.org
18
+
19
+ === Following gems are RETIRED!!!
20
+
17
21
  Since version 1.0.6 I've moved gem hosting to Gemcutter. So now you need
18
22
  to install gem with:
19
23
 
@@ -25,31 +29,26 @@ gem install pk-merb_sequel --source http://gems.github.com
25
29
 
26
30
 
27
31
  === Merb < 1.1
28
- Add pk-merb_sequel as a dependency to your <b>config/dependencies.rb</b>:
29
-
30
- dependency 'pk-merb_sequel', :require_as => 'merb_sequel'
31
-
32
- <b>Because of Merb < 1.1 ORM plugin loading mechanism you neeed to change init.rb</b>:
33
-
34
- use_orm :sequel
35
-
36
- to
32
+ Add merb_sequel as a dependency to your <b>config/dependencies.rb</b>:
37
33
 
38
- Merb.orm = :sequel
39
-
40
- If you don't do this Merb will complain that there is no merb_sequel gem also
41
- if you have merb_sequel installed it will load your system wide gem instead of
42
- the pk-merb_sequel gem.
34
+ dependency 'merb_sequel'
43
35
 
44
36
 
45
37
  === Merb >= 1.1, add it as a dependency to your <b>Gemfile</b>:
46
38
 
47
- gem 'pk-merb_sequel', :require_as => 'merb_sequel'
39
+ gem 'merb_sequel'
48
40
 
49
41
  Add Sequel as you ORM of choice to init.rb:
50
42
 
51
43
  use_orm :sequel
52
44
 
45
+ === Merb >= 1.2, add it as a dependency to your <b>Gemfile</b>:
46
+
47
+ gem 'merb_sequel'
48
+
49
+ To activate the gem and set all needed to use Sequel just use:
50
+
51
+ require 'merb_sequel'
53
52
 
54
53
  == Compatibility
55
54
 
@@ -58,12 +57,14 @@ Sequel 2.11.0:: All pass
58
57
  Sequel 2.12.0:: All pass
59
58
  Sequel 3.0.0:: All pass
60
59
  Sequel 3.5.0:: All pass
60
+ Sequel 3.6.0:: All pass
61
61
 
62
62
  === Ruby 1.9.1:
63
- Sequel 2.11.0:: All pass except session spec failing due to Marshall issues.
64
- Sequel 2.12.0:: All pass except session spec failing due to Marshall issues.
65
- Sequel 3.0.0:: All pass except session spec failing due to Marshall issues.
66
- Sequel 3.5.0:: All pass except session spec failing due to Marshall issues.
63
+ Sequel 2.11.0:: All pass
64
+ Sequel 2.12.0:: All pass
65
+ Sequel 3.0.0:: All pass
66
+ Sequel 3.5.0:: All pass
67
+ Sequel 3.6.0:: All pass
67
68
 
68
69
  === ActiveModel compatibility
69
70
  In Merb > 1.0.13 we use ActiveModel interface for the ORM plugins. merb_sequel
data/Rakefile CHANGED
@@ -1,36 +1,4 @@
1
- require "rubygems"
2
- require "rake"
3
-
4
- # Assume a typical dev checkout to fetch the current merb-core version
5
- require File.expand_path('../../merb/merb-core/lib/merb-core/version', __FILE__)
6
-
7
- # Load this library's version information
8
- require File.expand_path('../lib/merb_sequel/version', __FILE__)
9
-
10
- begin
11
- require 'jeweler'
12
-
13
- Jeweler::Tasks.new do |gemspec|
14
- gemspec.version = Merb::Sequel::VERSION
15
- gemspec.name = "merb_sequel"
16
- gemspec.description = "Merb plugin that provides support for Sequel"
17
- gemspec.summary = "Merb plugin that provides support for Sequel"
18
- gemspec.authors = [ "Wayne E. Seguin", "Lance Carlson", "Lori Holden", "Pavel Kunc" ]
19
- gemspec.email = "wayneeseguin@gmail.com, lancecarlson@gmail.com, email@loriholden.com, pavel.kunc@gmail.com"
20
- gemspec.homepage = "http://github.com/merb/merb_sequel"
21
- gemspec.files = %w(CHANGELOG LICENSE Rakefile README.rdoc TODO Generators) + Dir['{lib,spec}/**/*']
22
- # Runtime dependencies
23
- gemspec.add_dependency "merb-core", ">= 0.9.9"
24
- gemspec.add_dependency "sequel", ">= 2.7.0"
25
- # Development dependencies
26
- gemspec.add_development_dependency "rspec", ">= 1.2.9"
27
- end
28
-
29
- Jeweler::GemcutterTasks.new
30
-
31
- rescue LoadError
32
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
33
- end
1
+ require 'rake'
34
2
 
35
3
  require 'spec/rake/spectask'
36
4
  Spec::Rake::SpecTask.new(:spec) do |spec|
@@ -89,4 +89,7 @@ if defined?(Merb::Plugins)
89
89
  Merb.add_generators generators / :model
90
90
  Merb.add_generators generators / :resource_controller
91
91
  Merb.add_generators generators / :session_migration
92
+
93
+ # Sets Sequel as ORM
94
+ Merb.orm = :sequel
92
95
  end
@@ -1,5 +1,5 @@
1
1
  module Merb
2
2
  module Sequel
3
- VERSION = "1.0.9".freeze
3
+ VERSION = "1.1.0".freeze
4
4
  end
5
5
  end
@@ -14,38 +14,38 @@ describe Merb::SequelSession do
14
14
  end
15
15
 
16
16
  it "should persist values" do
17
- response = request(url(:set))
17
+ response = visit(url(:set))
18
18
  response.should be_successful
19
19
  response.body.should == 'value'
20
20
 
21
- response = request(url(:get))
21
+ response = visit(url(:get))
22
22
  response.should be_successful
23
23
  response.body.should == 'value'
24
24
  end
25
25
 
26
26
  it "should persist empty data" do
27
- response = request(url(:set))
27
+ response = visit(url(:set))
28
28
  response.should be_successful
29
29
  response.body.should == 'value'
30
30
 
31
- response = request(url(:clear))
31
+ response = visit(url(:clear))
32
32
  response.should be_successful
33
33
 
34
- response = request(url(:get))
34
+ response = visit(url(:get))
35
35
  response.should be_successful
36
36
  response.body.should be_empty
37
37
  end
38
38
 
39
39
  it "should allow changes" do
40
- response = request(url(:set))
40
+ response = visit(url(:set))
41
41
  response.should be_successful
42
42
  response.body.should == 'value'
43
43
 
44
- response = request(url(:change))
44
+ response = visit(url(:change))
45
45
  response.should be_successful
46
46
  response.body.should == 'changed'
47
47
 
48
- response = request(url(:get))
48
+ response = visit(url(:get))
49
49
  response.should be_successful
50
50
  response.body.should == 'changed'
51
51
  end
@@ -2,7 +2,7 @@ require File.dirname(__FILE__) + "/spec_helper"
2
2
 
3
3
  describe Merb::Orms::Sequel::Connect do
4
4
  it "should be loaded at plugin bootstrap" do
5
- defined?(Merb::Orms::Sequel::Connect).should == "constant"
5
+ defined?(Merb::Orms::Sequel::Connect).should == 'constant'
6
6
  end
7
7
 
8
8
  it "should be Merb::BootLoader" do
@@ -12,4 +12,8 @@ describe Merb::Orms::Sequel::Connect do
12
12
  it "should provide default settings" do
13
13
  Merb::Plugins.config[:merb_sequel].should include(:load_activemodel_compatibility)
14
14
  end
15
+
16
+ it "should set Merb#orm to :sequel" do
17
+ Merb.orm.should eql :sequel
18
+ end
15
19
  end
@@ -1,11 +1,8 @@
1
- require 'rubygems'
2
-
3
1
  # Use current merb-core sources if running from a typical dev checkout.
4
2
  lib = File.expand_path('../../../merb/merb-core/lib', __FILE__)
5
3
  $LOAD_PATH.unshift(lib) if File.directory?(lib)
6
- require "merb-core"
7
- require "sequel"
8
- require "merb_sequel"
4
+ require 'merb-core'
5
+ require 'merb_sequel'
9
6
 
10
7
  Merb.start(:adapter => 'runner',
11
8
  :log_level => :error,
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb_sequel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ prerelease: false
5
+ segments:
6
+ - 1
7
+ - 1
8
+ - 0
9
+ version: 1.1.0
5
10
  platform: ruby
6
11
  authors:
7
12
  - Wayne E. Seguin
@@ -12,55 +17,85 @@ autorequire:
12
17
  bindir: bin
13
18
  cert_chain: []
14
19
 
15
- date: 2009-11-10 00:00:00 +00:00
20
+ date: 2010-04-08 00:00:00 +01:00
16
21
  default_executable:
17
22
  dependencies:
18
23
  - !ruby/object:Gem::Dependency
19
24
  name: merb-core
20
- type: :runtime
21
- version_requirement:
22
- version_requirements: !ruby/object:Gem::Requirement
25
+ prerelease: false
26
+ requirement: &id001 !ruby/object:Gem::Requirement
23
27
  requirements:
24
28
  - - ">="
25
29
  - !ruby/object:Gem::Version
26
- version: 0.9.9
27
- version:
30
+ segments:
31
+ - 1
32
+ - 1
33
+ - 0
34
+ version: 1.1.0
35
+ type: :runtime
36
+ version_requirements: *id001
28
37
  - !ruby/object:Gem::Dependency
29
38
  name: sequel
30
- type: :runtime
31
- version_requirement:
32
- version_requirements: !ruby/object:Gem::Requirement
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
33
41
  requirements:
34
42
  - - ">="
35
43
  - !ruby/object:Gem::Version
44
+ segments:
45
+ - 2
46
+ - 7
47
+ - 0
36
48
  version: 2.7.0
37
- version:
49
+ type: :runtime
50
+ version_requirements: *id002
38
51
  - !ruby/object:Gem::Dependency
39
52
  name: rspec
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ segments:
59
+ - 0
60
+ version: "0"
40
61
  type: :development
41
- version_requirement:
42
- version_requirements: !ruby/object:Gem::Requirement
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: sqlite3-ruby
65
+ prerelease: false
66
+ requirement: &id004 !ruby/object:Gem::Requirement
43
67
  requirements:
44
68
  - - ">="
45
69
  - !ruby/object:Gem::Version
46
- version: 1.2.9
47
- version:
48
- description: Merb plugin that provides support for Sequel
70
+ segments:
71
+ - 0
72
+ version: "0"
73
+ type: :development
74
+ version_requirements: *id004
75
+ - !ruby/object:Gem::Dependency
76
+ name: webrat
77
+ prerelease: false
78
+ requirement: &id005 !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ segments:
83
+ - 0
84
+ version: "0"
85
+ type: :development
86
+ version_requirements: *id005
87
+ description: Merb plugin that provides support for Sequel.
49
88
  email: wayneeseguin@gmail.com, lancecarlson@gmail.com, email@loriholden.com, pavel.kunc@gmail.com
50
89
  executables: []
51
90
 
52
91
  extensions: []
53
92
 
54
93
  extra_rdoc_files:
55
- - LICENSE
56
94
  - README.rdoc
57
- files:
58
- - CHANGELOG
59
- - Generators
60
95
  - LICENSE
61
- - README.rdoc
62
- - Rakefile
63
96
  - TODO
97
+ files:
98
+ - Rakefile
64
99
  - lib/generators/migration.rb
65
100
  - lib/generators/model.rb
66
101
  - lib/generators/resource_controller.rb
@@ -77,13 +112,11 @@ files:
77
112
  - lib/merb/orms/sequel/database.yml.sample
78
113
  - lib/merb/orms/sequel/model.rb
79
114
  - lib/merb/session/sequel_session.rb
80
- - lib/merb_sequel.rb
81
115
  - lib/merb_sequel/merbtasks.rb
82
116
  - lib/merb_sequel/rspec/sequel.rb
83
117
  - lib/merb_sequel/version.rb
118
+ - lib/merb_sequel.rb
84
119
  - spec/config/database.yml
85
- - spec/log/merb_test.log
86
- - spec/log/test.log
87
120
  - spec/merb_sequel_session_spec.rb
88
121
  - spec/merb_sequel_spec.rb
89
122
  - spec/rspec/sequel_spec.rb
@@ -92,40 +125,38 @@ files:
92
125
  - spec/spec_controller.rb
93
126
  - spec/spec_helper.rb
94
127
  - spec/spec_model.rb
95
- - spec/test.db
128
+ - README.rdoc
129
+ - LICENSE
130
+ - TODO
96
131
  has_rdoc: true
97
- homepage: http://github.com/merb/merb_sequel
132
+ homepage: http://github.com/pk/merb_sequel
98
133
  licenses: []
99
134
 
100
135
  post_install_message:
101
- rdoc_options:
102
- - --charset=UTF-8
136
+ rdoc_options: []
137
+
103
138
  require_paths:
104
139
  - lib
105
140
  required_ruby_version: !ruby/object:Gem::Requirement
106
141
  requirements:
107
142
  - - ">="
108
143
  - !ruby/object:Gem::Version
144
+ segments:
145
+ - 0
109
146
  version: "0"
110
- version:
111
147
  required_rubygems_version: !ruby/object:Gem::Requirement
112
148
  requirements:
113
149
  - - ">="
114
150
  - !ruby/object:Gem::Version
151
+ segments:
152
+ - 0
115
153
  version: "0"
116
- version:
117
154
  requirements: []
118
155
 
119
156
  rubyforge_project:
120
- rubygems_version: 1.3.5
157
+ rubygems_version: 1.3.6
121
158
  signing_key:
122
159
  specification_version: 3
123
- summary: Merb plugin that provides support for Sequel
124
- test_files:
125
- - spec/merb_sequel_session_spec.rb
126
- - spec/merb_sequel_spec.rb
127
- - spec/rspec/sequel_spec.rb
128
- - spec/sequel_ext_spec.rb
129
- - spec/spec_controller.rb
130
- - spec/spec_helper.rb
131
- - spec/spec_model.rb
160
+ summary: Merb plugin that provides support for Sequel.
161
+ test_files: []
162
+
data/CHANGELOG DELETED
@@ -1,20 +0,0 @@
1
- == 1.0.9 "Get official" 2009-11-10
2
-
3
- * Moved to gihub.com/merb and to merb_sequel
4
- * Added Merb::Sequel::VERSION constant
5
- * Moved to jeweler to match with Merb
6
-
7
- == 1.0.8
8
-
9
- * Dropped support for Sequel versions < 2.7.0
10
-
11
- == 1.0.7
12
-
13
- * Add support for ActiveModel via active_model plugin for Sequel > 3.5.0 or
14
- Merb::Orms::Sequel::Model::ActiveModelCompatibility module. Added
15
- :load_activemodel_compatibility configuration option to handle ActiveModel
16
- compatibility loading. See README for
17
- more information.
18
- * Removed Merb::Orms::Sequel::ModelExtensions in favour to Merb::Orms::Sequel::Model::ActiveModelCompatibility
19
- * Added spec.opts
20
- * Fixing session storage
data/Generators DELETED
@@ -1,4 +0,0 @@
1
- scope 'merb-gen' do
2
- dir = File.join(File.dirname(__FILE__), 'lib', 'generators/')
3
- Merb.add_generators dir + 'migration', dir + 'model', dir + 'resource_controller', dir + 'session_migration'
4
- end
@@ -1,1224 +0,0 @@
1
- Mon, 04 May 2009 19:37:20 GMT ~ info ~ Logfile created
2
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
3
- ~ SELECT * FROM `sessions` LIMIT 1
4
- ~ PRAGMA table_info('sessions')
5
- ~ PRAGMA table_info('spec_models')
6
- ~ SELECT * FROM `spec_models` LIMIT 1
7
- ~ Started request handling: Mon May 04 20:37:20 +0100 2009
8
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
9
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'ab109527e14677af2deaeb56db17647b') LIMIT 1
10
- ~ INSERT INTO `sessions` (`created_at`, `session_id`, `data`) VALUES ('2009-05-04T20:37:20+01:00', 'ab109527e14677af2deaeb56db17647b', '{"key"
11
- value')
12
- ~ SELECT * FROM `sessions` WHERE (`id` = 3) LIMIT 1
13
- ~ {:dispatch_time=>0.011258, :action_time=>0.010408, :after_filters_time=>5.3e-05, :before_filters_time=>5.4e-05}
14
- ~
15
-
16
- ~ Started request handling: Mon May 04 20:37:20 +0100 2009
17
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
18
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'ab109527e14677af2deaeb56db17647b') LIMIT 1
19
- ~ {:dispatch_time=>0.004032, :action_time=>0.003211, :after_filters_time=>4.0e-05, :before_filters_time=>3.4e-05}
20
- ~
21
-
22
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
23
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
24
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
25
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
26
- ~ SELECT * FROM `sessions` LIMIT 1
27
- ~ PRAGMA table_info('sessions')
28
- ~ PRAGMA table_info('spec_models')
29
- ~ SELECT * FROM `spec_models` LIMIT 1
30
- ~ Started request handling: Mon May 04 21:10:27 +0100 2009
31
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
32
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '2dc2ef5251576a0fd226f11f74c6fe0e') LIMIT 1
33
- ~ Transaction.begin
34
- ~ INSERT INTO `sessions` (`session_id`, `created_at`, `data`) VALUES ('2dc2ef5251576a0fd226f11f74c6fe0e', '2009-05-04T21:10:27+01:00', '{"key"
35
- value')
36
- ~ SELECT * FROM `sessions` WHERE (`id` = 4) LIMIT 1
37
- ~ Transaction.commit
38
- ~ {:dispatch_time=>0.012209, :action_time=>0.011163, :after_filters_time=>5.3e-05, :before_filters_time=>5.6e-05}
39
- ~
40
-
41
- ~ Started request handling: Mon May 04 21:10:27 +0100 2009
42
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
43
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '2dc2ef5251576a0fd226f11f74c6fe0e') LIMIT 1
44
- ~ {:dispatch_time=>0.005415, :action_time=>0.004618, :after_filters_time=>3.7e-05, :before_filters_time=>7.2e-05}
45
- ~
46
-
47
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
48
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
49
- ~ SELECT * FROM `sessions` LIMIT 1
50
- ~ PRAGMA table_info('sessions')
51
- ~ PRAGMA table_info('spec_models')
52
- ~ SELECT * FROM `spec_models` LIMIT 1
53
- ~ Started request handling: Mon May 04 21:27:19 +0100 2009
54
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
55
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'd925e8d0cb0da0e5c823c01805ef4188') LIMIT 1
56
- ~ Transaction.begin
57
- ~ INSERT INTO `sessions` (`session_id`, `data`, `created_at`) VALUES ('d925e8d0cb0da0e5c823c01805ef4188', '{"key"
58
- value', '2009-05-04T21:27:19+01:00')
59
- ~ SELECT * FROM `sessions` WHERE (`id` = 5) LIMIT 1
60
- ~ Transaction.commit
61
- ~ {:dispatch_time=>0.012154, :action_time=>0.011207, :after_filters_time=>5.5e-05, :before_filters_time=>5.6e-05}
62
- ~
63
-
64
- ~ Started request handling: Mon May 04 21:27:19 +0100 2009
65
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
66
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'd925e8d0cb0da0e5c823c01805ef4188') LIMIT 1
67
- ~ {:dispatch_time=>0.00505, :action_time=>0.004267, :after_filters_time=>4.5e-05, :before_filters_time=>3.7e-05}
68
- ~
69
-
70
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
71
- ~ SELECT * FROM `sessions` LIMIT 1
72
- ~ PRAGMA table_info('sessions')
73
- ~ PRAGMA table_info('spec_models')
74
- ~ SELECT * FROM `spec_models` LIMIT 1
75
- ~ Started request handling: Mon May 04 21:28:06 +0100 2009
76
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
77
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '3c2c0872ca2cd5bf2c4d76635882251a') LIMIT 1
78
- ~ Transaction.begin
79
- ~ INSERT INTO `sessions` (`session_id`, `data`, `created_at`) VALUES ('3c2c0872ca2cd5bf2c4d76635882251a', '{"key"
80
- value', '2009-05-04T21:28:06+01:00')
81
- ~ SELECT * FROM `sessions` WHERE (`id` = 6) LIMIT 1
82
- ~ Transaction.commit
83
- ~ {:dispatch_time=>0.01169, :action_time=>0.01081, :after_filters_time=>5.9e-05, :before_filters_time=>6.1e-05}
84
- ~
85
-
86
- ~ Started request handling: Mon May 04 21:28:06 +0100 2009
87
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
88
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '3c2c0872ca2cd5bf2c4d76635882251a') LIMIT 1
89
- ~ {:dispatch_time=>0.008146, :action_time=>0.007209, :after_filters_time=>4.5e-05, :before_filters_time=>4.2e-05}
90
- ~
91
-
92
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
93
- ~ SELECT * FROM `sessions` LIMIT 1
94
- ~ PRAGMA table_info('sessions')
95
- ~ PRAGMA table_info('spec_models')
96
- ~ SELECT * FROM `spec_models` LIMIT 1
97
- ~ Started request handling: Mon May 04 21:28:50 +0100 2009
98
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
99
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '0b1a88a7453fc5fd6155e53638f4ce98') LIMIT 1
100
- ~ Transaction.begin
101
- ~ INSERT INTO `sessions` (`session_id`, `data`, `created_at`) VALUES ('0b1a88a7453fc5fd6155e53638f4ce98', '{"key"
102
- value', '2009-05-04T21:28:50+01:00')
103
- ~ SELECT * FROM `sessions` WHERE (`id` = 7) LIMIT 1
104
- ~ Transaction.commit
105
- ~ {:dispatch_time=>0.011742, :action_time=>0.010914, :after_filters_time=>5.3e-05, :before_filters_time=>5.4e-05}
106
- ~
107
-
108
- ~ Started request handling: Mon May 04 21:28:50 +0100 2009
109
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
110
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '0b1a88a7453fc5fd6155e53638f4ce98') LIMIT 1
111
- ~ {:dispatch_time=>0.004093, :action_time=>0.003353, :after_filters_time=>3.5e-05, :before_filters_time=>3.3e-05}
112
- ~
113
-
114
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
115
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
116
- ~ SELECT * FROM `sessions` LIMIT 1
117
- ~ PRAGMA table_info('sessions')
118
- ~ PRAGMA table_info('spec_models')
119
- ~ SELECT * FROM `spec_models` LIMIT 1
120
- ~ Started request handling: Mon May 04 21:29:44 +0100 2009
121
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
122
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'fae3c5c4d910163c66e1fed2d8c75f69') LIMIT 1
123
- ~ Transaction.begin
124
- ~ INSERT INTO `sessions` (`session_id`, `data`, `created_at`) VALUES ('fae3c5c4d910163c66e1fed2d8c75f69', '{"key"
125
- value', '2009-05-04T21:29:44+01:00')
126
- ~ SELECT * FROM `sessions` WHERE (`id` = 8) LIMIT 1
127
- ~ Transaction.commit
128
- ~ {:dispatch_time=>0.011808, :action_time=>0.010965, :after_filters_time=>5.4e-05, :before_filters_time=>5.3e-05}
129
- ~
130
-
131
- ~ Started request handling: Mon May 04 21:29:44 +0100 2009
132
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
133
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'fae3c5c4d910163c66e1fed2d8c75f69') LIMIT 1
134
- ~ {:dispatch_time=>0.004727, :action_time=>0.003723, :after_filters_time=>3.5e-05, :before_filters_time=>4.2e-05}
135
- ~
136
-
137
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
138
- ~ SELECT * FROM `sessions` LIMIT 1
139
- ~ PRAGMA table_info('sessions')
140
- ~ PRAGMA table_info('spec_models')
141
- ~ SELECT * FROM `spec_models` LIMIT 1
142
- ~ Started request handling: Mon May 04 21:32:55 +0100 2009
143
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
144
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'c4ac1e91676a80d066649b2303354570') LIMIT 1
145
- ~ Transaction.begin
146
- ~ INSERT INTO `sessions` (`session_id`, `data`, `created_at`) VALUES ('c4ac1e91676a80d066649b2303354570', '{"key"
147
- value', '2009-05-04T21:32:55+01:00')
148
- ~ SELECT * FROM `sessions` WHERE (`id` = 9) LIMIT 1
149
- ~ Transaction.commit
150
- ~ {:dispatch_time=>0.012855, :action_time=>0.011816, :after_filters_time=>6.8e-05, :before_filters_time=>6.7e-05}
151
- ~
152
-
153
- ~ Started request handling: Mon May 04 21:32:55 +0100 2009
154
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
155
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'c4ac1e91676a80d066649b2303354570') LIMIT 1
156
- ~ {:dispatch_time=>0.006689, :action_time=>0.00591, :after_filters_time=>6.0e-05, :before_filters_time=>3.4e-05}
157
- ~
158
-
159
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
160
- ~ SELECT * FROM `sessions` LIMIT 1
161
- ~ PRAGMA table_info('sessions')
162
- ~ PRAGMA table_info('spec_models')
163
- ~ SELECT * FROM `spec_models` LIMIT 1
164
- ~ Started request handling: Mon May 04 21:34:08 +0100 2009
165
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
166
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '6b9db7bffcbf5fa7cf37eb93173e2de9') LIMIT 1
167
- ~ INSERT INTO `sessions` (`created_at`, `session_id`, `data`) VALUES ('2009-05-04T21:34:08+01:00', '6b9db7bffcbf5fa7cf37eb93173e2de9', '{"key"
168
- value')
169
- ~ SELECT * FROM `sessions` WHERE (`id` = 10) LIMIT 1
170
- ~ {:dispatch_time=>0.02635, :action_time=>0.025425, :after_filters_time=>5.3e-05, :before_filters_time=>5.4e-05}
171
- ~
172
-
173
- ~ Started request handling: Mon May 04 21:34:08 +0100 2009
174
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
175
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '6b9db7bffcbf5fa7cf37eb93173e2de9') LIMIT 1
176
- ~ {:dispatch_time=>0.005139, :action_time=>0.003658, :after_filters_time=>3.5e-05, :before_filters_time=>3.6e-05}
177
- ~
178
-
179
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
180
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
181
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
182
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
183
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
184
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
185
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
186
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
187
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
188
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
189
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
190
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
191
- ~ Started request handling: Sat May 09 00:08:57 +0100 2009
192
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
193
- ~ {:before_filters_time=>5.4e-05, :dispatch_time=>0.01736, :action_time=>0.016258, :after_filters_time=>5.4e-05}
194
- ~
195
-
196
- ~ Started request handling: Sat May 09 00:08:57 +0100 2009
197
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
198
- ~ {:before_filters_time=>0.000936, :dispatch_time=>0.005864, :action_time=>0.004582, :after_filters_time=>3.9e-05}
199
- ~
200
-
201
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
202
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
203
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
204
- ~ Started request handling: Thu May 14 12:53:39 +0100 2009
205
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
206
- ~ {:dispatch_time=>0.014531, :action_time=>0.013691, :after_filters_time=>5.2e-05, :before_filters_time=>5.2e-05}
207
- ~
208
-
209
- ~ Started request handling: Thu May 14 12:53:39 +0100 2009
210
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
211
- ~ {:dispatch_time=>0.004081, :action_time=>0.003294, :after_filters_time=>3.7e-05, :before_filters_time=>3.4e-05}
212
- ~
213
-
214
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
215
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
216
- ~ Started request handling: Thu May 14 12:54:35 +0100 2009
217
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
218
- ~ {:dispatch_time=>0.014599, :action_time=>0.013766, :after_filters_time=>5.2e-05, :before_filters_time=>6.1e-05}
219
- ~
220
-
221
- ~ Started request handling: Thu May 14 12:54:35 +0100 2009
222
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
223
- ~ {:dispatch_time=>0.004913, :action_time=>0.003334, :after_filters_time=>3.5e-05, :before_filters_time=>3.4e-05}
224
- ~
225
-
226
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
227
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
228
- ~ Started request handling: Thu May 14 12:55:18 +0100 2009
229
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
230
- ~ {:dispatch_time=>0.015394, :action_time=>0.014531, :after_filters_time=>5.3e-05, :before_filters_time=>5.3e-05}
231
- ~
232
-
233
- ~ Started request handling: Thu May 14 12:55:18 +0100 2009
234
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
235
- ~ {:dispatch_time=>0.004018, :action_time=>0.003256, :after_filters_time=>3.6e-05, :before_filters_time=>3.4e-05}
236
- ~
237
-
238
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
239
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
240
- ~ Started request handling: Thu May 14 12:56:24 +0100 2009
241
- ~ Params: {"format"=>nil, "action"=>"set", "id"=>nil, "controller"=>"spec_controller"}
242
- ~ {:dispatch_time=>0.014838, :action_time=>0.013986, :after_filters_time=>5.2e-05, :before_filters_time=>5.3e-05}
243
- ~
244
-
245
- ~ Started request handling: Thu May 14 12:56:24 +0100 2009
246
- ~ Params: {"format"=>nil, "action"=>"get", "id"=>nil, "controller"=>"spec_controller"}
247
- ~ {:dispatch_time=>0.007397, :action_time=>0.003565, :after_filters_time=>3.8e-05, :before_filters_time=>3.6e-05}
248
- ~
249
-
250
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
251
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
252
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
253
- ~ SELECT * FROM `sessions` LIMIT 1
254
- ~ PRAGMA table_info('sessions')
255
- ~ PRAGMA table_info('spec_models')
256
- ~ SELECT * FROM `spec_models` LIMIT 1
257
- ~ Started request handling: 2009-07-22 16:14:06 +0100
258
- ~ Params: {"controller"=>"spec_controller", "action"=>"set", "id"=>nil, "format"=>nil}
259
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '0a7f110d36bcc68fcce79c5e17e19e16') LIMIT 1
260
- ~ BEGIN
261
- ~ ROLLBACK
262
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
263
- format version 4.8 required; 123.34 given
264
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>1.1e-05, :action_time=>0.00202, :dispatch_time=>0.002432}
265
- ~
266
-
267
- ~ Started request handling: 2009-07-22 16:14:06 +0100
268
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
269
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '0a7f110d36bcc68fcce79c5e17e19e16') LIMIT 1
270
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>7.0e-06, :action_time=>0.000668, :dispatch_time=>0.000923}
271
- ~
272
-
273
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
274
- ~ SELECT * FROM `sessions` LIMIT 1
275
- ~ PRAGMA table_info('sessions')
276
- ~ PRAGMA table_info('spec_models')
277
- ~ SELECT * FROM `spec_models` LIMIT 1
278
- ~ Started request handling: 2009-07-22 16:14:13 +0100
279
- ~ Params: {"controller"=>"spec_controller", "action"=>"set", "id"=>nil, "format"=>nil}
280
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'f88a134fa69418482e586b54a4279b07') LIMIT 1
281
- ~ BEGIN
282
- ~ ROLLBACK
283
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
284
- format version 4.8 required; 123.34 given
285
- ~ {:before_filters_time=>1.2e-05, :after_filters_time=>1.1e-05, :action_time=>0.002077, :dispatch_time=>0.002463}
286
- ~
287
-
288
- ~ Started request handling: 2009-07-22 16:14:13 +0100
289
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
290
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'f88a134fa69418482e586b54a4279b07') LIMIT 1
291
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000696, :dispatch_time=>0.000954}
292
- ~
293
-
294
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
295
- ~ SELECT * FROM `sessions` LIMIT 1
296
- ~ PRAGMA table_info('sessions')
297
- ~ PRAGMA table_info('spec_models')
298
- ~ SELECT * FROM `spec_models` LIMIT 1
299
- ~ Started request handling: 2009-07-22 16:15:58 +0100
300
- ~ Params: {"controller"=>"spec_controller", "action"=>"set", "id"=>nil, "format"=>nil}
301
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'be517ac19c9ea3e924c2aedfb3911360') LIMIT 1
302
- ~ BEGIN
303
- ~ ROLLBACK
304
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
305
- format version 4.8 required; 123.34 given
306
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>1.1e-05, :action_time=>0.002453, :dispatch_time=>0.002838}
307
- ~
308
-
309
- ~ Started request handling: 2009-07-22 16:15:58 +0100
310
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
311
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'be517ac19c9ea3e924c2aedfb3911360') LIMIT 1
312
- ~ Oops! No template found. Merb was looking for /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/app/views/spec_controller/get.html.erb for content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
313
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/mixins/render.rb:129:in `render'
314
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/spec_controller.rb:8:in `get'
315
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:318:in `_call_action'
316
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:292:in `_dispatch'
317
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/merb_controller.rb:252:in `_dispatch'
318
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `block in dispatch_action'
319
- <internal:prelude>:8:in `synchronize'
320
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `dispatch_action'
321
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:74:in `handle'
322
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
323
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/application.rb:17:in `call'
324
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/middleware/static.rb:28:in `call'
325
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/test/helpers/request_helper.rb:43:in `request'
326
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/webrat-0.4.4/lib/webrat/merb_session.rb:55:in `request'
327
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/merb_sequel_session_spec.rb:20:in `block (2 levels) in <top (required)>'
328
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `instance_eval'
329
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `block in execute'
330
- /usr/local/ruby-1.9.1/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
331
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:37:in `execute'
332
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:207:in `block in run_examples'
333
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `each'
334
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `run_examples'
335
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:103:in `run'
336
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:23:in `block in run'
337
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `each'
338
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `run'
339
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/options.rb:127:in `run_examples'
340
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/command_line.rb:9:in `run'
341
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/bin/spec:4:in `<top (required)>'
342
- //usr/local/ruby/bin/spec:19:in `load'
343
- //usr/local/ruby/bin/spec:19:in `<main>'
344
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
345
- ~
346
-
347
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
348
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
349
- ~ SELECT * FROM `sessions` LIMIT 1
350
- ~ PRAGMA table_info('sessions')
351
- ~ PRAGMA table_info('spec_models')
352
- ~ SELECT * FROM `spec_models` LIMIT 1
353
- ~ Started request handling: 2009-07-22 16:17:35 +0100
354
- ~ Params: {"controller"=>"spec_controller", "action"=>"set", "id"=>nil, "format"=>nil}
355
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a507b6d82a18066c26719d895606edbc') LIMIT 1
356
- ~ BEGIN
357
- ~ ROLLBACK
358
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
359
- format version 4.8 required; 123.34 given
360
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>1.0e-05, :action_time=>0.002598, :dispatch_time=>0.003024}
361
- ~
362
-
363
- ~ Started request handling: 2009-07-22 16:17:35 +0100
364
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
365
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a507b6d82a18066c26719d895606edbc') LIMIT 1
366
- ~ Oops! No template found. Merb was looking for /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/app/views/spec_controller/get.html.erb for content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
367
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/mixins/render.rb:129:in `render'
368
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/spec_controller.rb:8:in `get'
369
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:318:in `_call_action'
370
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:292:in `_dispatch'
371
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/merb_controller.rb:252:in `_dispatch'
372
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `block in dispatch_action'
373
- <internal:prelude>:8:in `synchronize'
374
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `dispatch_action'
375
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:74:in `handle'
376
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
377
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/application.rb:17:in `call'
378
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/middleware/static.rb:28:in `call'
379
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/test/helpers/request_helper.rb:43:in `request'
380
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/webrat-0.4.4/lib/webrat/merb_session.rb:55:in `request'
381
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/merb_sequel_session_spec.rb:20:in `block (2 levels) in <top (required)>'
382
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `instance_eval'
383
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `block in execute'
384
- /usr/local/ruby-1.9.1/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
385
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:37:in `execute'
386
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:207:in `block in run_examples'
387
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `each'
388
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `run_examples'
389
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:103:in `run'
390
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:23:in `block in run'
391
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `each'
392
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `run'
393
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/options.rb:127:in `run_examples'
394
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/command_line.rb:9:in `run'
395
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/bin/spec:4:in `<top (required)>'
396
- //usr/local/ruby/bin/spec:19:in `load'
397
- //usr/local/ruby/bin/spec:19:in `<main>'
398
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
399
- ~
400
-
401
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
402
- ~ SELECT * FROM `sessions` LIMIT 1
403
- ~ PRAGMA table_info('sessions')
404
- ~ PRAGMA table_info('spec_models')
405
- ~ SELECT * FROM `spec_models` LIMIT 1
406
- ~ Started request handling: 2009-07-22 16:18:04 +0100
407
- ~ Params: {"controller"=>"spec_controller", "action"=>"set", "id"=>nil, "format"=>nil}
408
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '6591611cdf1324cee669b6860767ad73') LIMIT 1
409
- ~ BEGIN
410
- ~ ROLLBACK
411
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
412
- format version 4.8 required; 123.34 given
413
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>1.0e-05, :action_time=>0.002459, :dispatch_time=>0.002845}
414
- ~
415
-
416
- ~ Started request handling: 2009-07-22 16:18:04 +0100
417
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
418
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '6591611cdf1324cee669b6860767ad73') LIMIT 1
419
- ~ Oops! No template found. Merb was looking for /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/app/views/spec_controller/get.html.erb for content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
420
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/mixins/render.rb:129:in `render'
421
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/spec_controller.rb:8:in `get'
422
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:318:in `_call_action'
423
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:292:in `_dispatch'
424
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/merb_controller.rb:252:in `_dispatch'
425
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `block in dispatch_action'
426
- <internal:prelude>:8:in `synchronize'
427
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `dispatch_action'
428
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:74:in `handle'
429
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
430
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/application.rb:17:in `call'
431
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/middleware/static.rb:28:in `call'
432
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/test/helpers/request_helper.rb:43:in `request'
433
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/webrat-0.4.4/lib/webrat/merb_session.rb:55:in `request'
434
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/merb_sequel_session_spec.rb:20:in `block (2 levels) in <top (required)>'
435
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `instance_eval'
436
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `block in execute'
437
- /usr/local/ruby-1.9.1/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
438
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:37:in `execute'
439
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:207:in `block in run_examples'
440
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `each'
441
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `run_examples'
442
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:103:in `run'
443
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:23:in `block in run'
444
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `each'
445
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `run'
446
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/options.rb:127:in `run_examples'
447
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/command_line.rb:9:in `run'
448
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/bin/spec:4:in `<top (required)>'
449
- //usr/local/ruby/bin/spec:19:in `load'
450
- //usr/local/ruby/bin/spec:19:in `<main>'
451
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
452
- ~
453
-
454
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
455
- ~ SELECT * FROM `sessions` LIMIT 1
456
- ~ PRAGMA table_info('sessions')
457
- ~ PRAGMA table_info('spec_models')
458
- ~ SELECT * FROM `spec_models` LIMIT 1
459
- ~ Started request handling: 2009-07-22 16:18:46 +0100
460
- ~ Params: {"controller"=>"spec_controller", "action"=>"set", "id"=>nil, "format"=>nil}
461
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '9d0c78b2369cf28e3a742a4e615484df') LIMIT 1
462
- ~ BEGIN
463
- ~ ROLLBACK
464
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
465
- format version 4.8 required; 123.34 given
466
- ~ {:before_filters_time=>1.5e-05, :after_filters_time=>1.3e-05, :action_time=>0.002498, :dispatch_time=>0.002887}
467
- ~
468
-
469
- ~ Started request handling: 2009-07-22 16:18:46 +0100
470
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
471
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '9d0c78b2369cf28e3a742a4e615484df') LIMIT 1
472
- ~ Oops! No template found. Merb was looking for /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/app/views/spec_controller/get.html.erb for content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
473
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/mixins/render.rb:129:in `render'
474
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/spec_controller.rb:8:in `get'
475
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:318:in `_call_action'
476
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:292:in `_dispatch'
477
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/merb_controller.rb:252:in `_dispatch'
478
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `block in dispatch_action'
479
- <internal:prelude>:8:in `synchronize'
480
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `dispatch_action'
481
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:74:in `handle'
482
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
483
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/application.rb:17:in `call'
484
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/middleware/static.rb:28:in `call'
485
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/test/helpers/request_helper.rb:43:in `request'
486
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/webrat-0.4.4/lib/webrat/merb_session.rb:55:in `request'
487
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/merb_sequel_session_spec.rb:20:in `block (2 levels) in <top (required)>'
488
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `instance_eval'
489
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `block in execute'
490
- /usr/local/ruby-1.9.1/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
491
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:37:in `execute'
492
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:207:in `block in run_examples'
493
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `each'
494
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `run_examples'
495
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:103:in `run'
496
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:23:in `block in run'
497
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `each'
498
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `run'
499
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/options.rb:127:in `run_examples'
500
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/command_line.rb:9:in `run'
501
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/bin/spec:4:in `<top (required)>'
502
- //usr/local/ruby/bin/spec:19:in `load'
503
- //usr/local/ruby/bin/spec:19:in `<main>'
504
- ~ Params: {"controller"=>"spec_controller", "action"=>"get", "id"=>nil, "format"=>nil}
505
- ~
506
-
507
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
508
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
509
- ~ SELECT * FROM `sessions` LIMIT 1
510
- ~ PRAGMA table_info('sessions')
511
- ~ PRAGMA table_info('spec_models')
512
- ~ SELECT * FROM `spec_models` LIMIT 1
513
- ~ Started request handling: 2009-07-22 16:21:03 +0100
514
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
515
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '1630c9dc91f52a8549ac83241c57628e') LIMIT 1
516
- ~ BEGIN
517
- ~ ROLLBACK
518
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
519
- format version 4.8 required; 123.34 given
520
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002452, :dispatch_time=>0.00283}
521
- ~
522
-
523
- ~ Started request handling: 2009-07-22 16:21:03 +0100
524
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
525
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '1630c9dc91f52a8549ac83241c57628e') LIMIT 1
526
- ~ Oops! No template found. Merb was looking for /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/app/views/spec_controller/get.html.erb for content type 'html'. You might have mispelled the template or file name. Registered template extensions: erb. If you use Haml or some other template plugin, make sure you required Merb plugin dependency in your init file. - (Merb::ControllerExceptions::TemplateNotFound)
527
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/mixins/render.rb:129:in `render'
528
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/spec_controller.rb:8:in `get'
529
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:318:in `_call_action'
530
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/abstract_controller.rb:292:in `_dispatch'
531
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/controller/merb_controller.rb:252:in `_dispatch'
532
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `block in dispatch_action'
533
- <internal:prelude>:8:in `synchronize'
534
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:100:in `dispatch_action'
535
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:74:in `handle'
536
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/dispatch/dispatcher.rb:36:in `handle'
537
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/application.rb:17:in `call'
538
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/rack/middleware/static.rb:28:in `call'
539
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/merb-core-1.1/lib/merb-core/test/helpers/request_helper.rb:43:in `request'
540
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/webrat-0.4.4/lib/webrat/merb_session.rb:55:in `request'
541
- /Volumes/Data/Users/Pavel/Sites/projects/merb_sequel/spec/merb_sequel_session_spec.rb:20:in `block (2 levels) in <top (required)>'
542
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `instance_eval'
543
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:40:in `block in execute'
544
- /usr/local/ruby-1.9.1/lib/ruby/1.9.1/timeout.rb:44:in `timeout'
545
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_methods.rb:37:in `execute'
546
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:207:in `block in run_examples'
547
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `each'
548
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:205:in `run_examples'
549
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/example/example_group_methods.rb:103:in `run'
550
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:23:in `block in run'
551
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `each'
552
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/example_group_runner.rb:22:in `run'
553
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/options.rb:127:in `run_examples'
554
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/lib/spec/runner/command_line.rb:9:in `run'
555
- /usr/local/ruby-1.9.1/lib/ruby/gems/1.9.1/gems/rspec-1.2.7/bin/spec:4:in `<top (required)>'
556
- //usr/local/ruby/bin/spec:19:in `load'
557
- //usr/local/ruby/bin/spec:19:in `<main>'
558
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
559
- ~
560
-
561
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
562
- ~ SELECT * FROM `sessions` LIMIT 1
563
- ~ PRAGMA table_info('sessions')
564
- ~ PRAGMA table_info('spec_models')
565
- ~ SELECT * FROM `spec_models` LIMIT 1
566
- ~ Started request handling: 2009-07-22 16:21:27 +0100
567
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
568
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '9285f4d962fb83a8d74b9c8354714714') LIMIT 1
569
- ~ BEGIN
570
- ~ ROLLBACK
571
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
572
- format version 4.8 required; 123.34 given
573
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.002433, :dispatch_time=>0.002915}
574
- ~
575
-
576
- ~ Started request handling: 2009-07-22 16:21:27 +0100
577
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
578
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '9285f4d962fb83a8d74b9c8354714714') LIMIT 1
579
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000901, :dispatch_time=>0.001186}
580
- ~
581
-
582
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
583
- ~ SELECT * FROM `sessions` LIMIT 1
584
- ~ CREATE TABLE `sessions` (`id` integer PRIMARY KEY AUTOINCREMENT, `session_id` varchar(255), `data` text, `created_at` timestamp)
585
- ~ PRAGMA table_info('sessions')
586
- ~ PRAGMA table_info('spec_models')
587
- ~ SELECT * FROM `spec_models` LIMIT 1
588
- ~ Started request handling: 2009-07-22 16:23:51 +0100
589
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
590
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '8b35332c066ddf90b73521eab17afb35') LIMIT 1
591
- ~ BEGIN
592
- ~ ROLLBACK
593
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
594
- format version 4.8 required; 123.34 given
595
- ~ {:before_filters_time=>1.2e-05, :after_filters_time=>1.1e-05, :action_time=>0.002472, :dispatch_time=>0.002858}
596
- ~
597
-
598
- ~ Started request handling: 2009-07-22 16:23:51 +0100
599
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
600
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '8b35332c066ddf90b73521eab17afb35') LIMIT 1
601
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000785, :dispatch_time=>0.001086}
602
- ~
603
-
604
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
605
- ~ SELECT * FROM `sessions` LIMIT 1
606
- ~ PRAGMA table_info('sessions')
607
- ~ PRAGMA table_info('spec_models')
608
- ~ SELECT * FROM `spec_models` LIMIT 1
609
- ~ Started request handling: 2009-07-22 16:26:44 +0100
610
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
611
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '95b5acd6d0833797dae94b8dc0479fcb') LIMIT 1
612
- ~ BEGIN
613
- ~ ROLLBACK
614
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
615
- format version 4.8 required; 123.34 given
616
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.00257, :dispatch_time=>0.002947}
617
- ~
618
-
619
- ~ Started request handling: 2009-07-22 16:26:44 +0100
620
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
621
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '95b5acd6d0833797dae94b8dc0479fcb') LIMIT 1
622
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>6.0e-06, :action_time=>0.00076, :dispatch_time=>0.001049}
623
- ~
624
-
625
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
626
- ~ SELECT * FROM `sessions` LIMIT 1
627
- ~ PRAGMA table_info('sessions')
628
- ~ PRAGMA table_info('spec_models')
629
- ~ SELECT * FROM `spec_models` LIMIT 1
630
- ~ Started request handling: 2009-07-22 16:27:33 +0100
631
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
632
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '77e5f07e0b4ab014965ecf1535c67a18') LIMIT 1
633
- ~ BEGIN
634
- ~ ROLLBACK
635
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
636
- format version 4.8 required; 123.34 given
637
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002372, :dispatch_time=>0.002773}
638
- ~
639
-
640
- ~ Started request handling: 2009-07-22 16:27:33 +0100
641
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
642
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '77e5f07e0b4ab014965ecf1535c67a18') LIMIT 1
643
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>1.4e-05, :action_time=>0.00087, :dispatch_time=>0.001161}
644
- ~
645
-
646
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
647
- ~ SELECT * FROM `sessions` LIMIT 1
648
- ~ PRAGMA table_info('sessions')
649
- ~ PRAGMA table_info('spec_models')
650
- ~ SELECT * FROM `spec_models` LIMIT 1
651
- ~ Started request handling: 2009-07-22 16:28:16 +0100
652
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
653
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '4a8a00924c35fcf7b7f33d06904786e7') LIMIT 1
654
- ~ BEGIN
655
- ~ ROLLBACK
656
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
657
- format version 4.8 required; 123.34 given
658
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.1e-05, :action_time=>0.00293, :dispatch_time=>0.003306}
659
- ~
660
-
661
- ~ Started request handling: 2009-07-22 16:28:16 +0100
662
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
663
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '4a8a00924c35fcf7b7f33d06904786e7') LIMIT 1
664
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000883, :dispatch_time=>0.001176}
665
- ~
666
-
667
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
668
- ~ SELECT * FROM `sessions` LIMIT 1
669
- ~ PRAGMA table_info('sessions')
670
- ~ PRAGMA table_info('spec_models')
671
- ~ SELECT * FROM `spec_models` LIMIT 1
672
- ~ Started request handling: 2009-07-22 16:28:57 +0100
673
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
674
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '5707d95aa8a4b1f2cd2a392cc42e0c2e') LIMIT 1
675
- ~ BEGIN
676
- ~ ROLLBACK
677
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
678
- format version 4.8 required; 123.34 given
679
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.002521, :dispatch_time=>0.0029}
680
- ~
681
-
682
- ~ Started request handling: 2009-07-22 16:28:57 +0100
683
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
684
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '5707d95aa8a4b1f2cd2a392cc42e0c2e') LIMIT 1
685
- ~ {:before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000911, :dispatch_time=>0.001201}
686
- ~
687
-
688
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
689
- ~ SELECT * FROM `sessions` LIMIT 1
690
- ~ PRAGMA table_info('sessions')
691
- ~ PRAGMA table_info('spec_models')
692
- ~ SELECT * FROM `spec_models` LIMIT 1
693
- ~ Started request handling: 2009-07-22 16:29:23 +0100
694
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
695
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'cb6a2b6033232cb69b59da026d2232f3') LIMIT 1
696
- ~ BEGIN
697
- ~ ROLLBACK
698
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
699
- format version 4.8 required; 123.34 given
700
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.002627, :dispatch_time=>0.003026}
701
- ~
702
-
703
- ~ Started request handling: 2009-07-22 16:29:23 +0100
704
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
705
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'cb6a2b6033232cb69b59da026d2232f3') LIMIT 1
706
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000913, :dispatch_time=>0.001205}
707
- ~
708
-
709
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
710
- ~ SELECT * FROM `sessions` LIMIT 1
711
- ~ PRAGMA table_info('sessions')
712
- ~ PRAGMA table_info('spec_models')
713
- ~ SELECT * FROM `spec_models` LIMIT 1
714
- ~ Started request handling: 2009-07-22 16:29:40 +0100
715
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
716
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'f6aac0bfa1e0cc9dc2f18a1588fe46ae') LIMIT 1
717
- ~ BEGIN
718
- ~ ROLLBACK
719
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
720
- format version 4.8 required; 123.34 given
721
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.1e-05, :action_time=>0.002627, :dispatch_time=>0.003025}
722
- ~
723
-
724
- ~ Started request handling: 2009-07-22 16:29:40 +0100
725
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
726
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'f6aac0bfa1e0cc9dc2f18a1588fe46ae') LIMIT 1
727
- ~ {:before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000916, :dispatch_time=>0.001207}
728
- ~
729
-
730
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
731
- ~ SELECT * FROM `sessions` LIMIT 1
732
- ~ PRAGMA table_info('sessions')
733
- ~ PRAGMA table_info('spec_models')
734
- ~ SELECT * FROM `spec_models` LIMIT 1
735
- ~ Started request handling: 2009-07-22 16:29:52 +0100
736
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
737
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'c68049d8fc114837118efa2f9b439d46') LIMIT 1
738
- ~ BEGIN
739
- ~ ROLLBACK
740
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
741
- format version 4.8 required; 123.34 given
742
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.1e-05, :action_time=>0.002793, :dispatch_time=>0.003194}
743
- ~
744
-
745
- ~ Started request handling: 2009-07-22 16:29:52 +0100
746
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
747
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'c68049d8fc114837118efa2f9b439d46') LIMIT 1
748
- ~ {:before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000886, :dispatch_time=>0.00118}
749
- ~
750
-
751
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
752
- ~ SELECT * FROM `sessions` LIMIT 1
753
- ~ PRAGMA table_info('sessions')
754
- ~ PRAGMA table_info('spec_models')
755
- ~ SELECT * FROM `spec_models` LIMIT 1
756
- ~ Started request handling: 2009-07-22 16:30:17 +0100
757
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
758
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a81494ce0c842b31cb4756e04179070c') LIMIT 1
759
- ~ BEGIN
760
- ~ ROLLBACK
761
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
762
- format version 4.8 required; 123.34 given
763
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002617, :dispatch_time=>0.00305}
764
- ~
765
-
766
- ~ Started request handling: 2009-07-22 16:30:17 +0100
767
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
768
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a81494ce0c842b31cb4756e04179070c') LIMIT 1
769
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000884, :dispatch_time=>0.00117}
770
- ~
771
-
772
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
773
- ~ SELECT * FROM `sessions` LIMIT 1
774
- ~ PRAGMA table_info('sessions')
775
- ~ PRAGMA table_info('spec_models')
776
- ~ SELECT * FROM `spec_models` LIMIT 1
777
- ~ Started request handling: 2009-07-22 16:30:29 +0100
778
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
779
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'af06bc7afb5adbd2b27f6a68e4ce4b0e') LIMIT 1
780
- ~ BEGIN
781
- ~ ROLLBACK
782
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
783
- format version 4.8 required; 123.34 given
784
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002648, :dispatch_time=>0.003114}
785
- ~
786
-
787
- ~ Started request handling: 2009-07-22 16:30:29 +0100
788
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
789
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'af06bc7afb5adbd2b27f6a68e4ce4b0e') LIMIT 1
790
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000904, :dispatch_time=>0.001195}
791
- ~
792
-
793
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
794
- ~ SELECT * FROM `sessions` LIMIT 1
795
- ~ PRAGMA table_info('sessions')
796
- ~ PRAGMA table_info('spec_models')
797
- ~ SELECT * FROM `spec_models` LIMIT 1
798
- ~ Started request handling: 2009-07-22 16:31:46 +0100
799
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
800
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '45a1be8e2b57b399ed87b981542f2029') LIMIT 1
801
- ~ Could not persist session to Merb::SequelSession: undefined method `save' for Merb::SequelSessionStore:Class
802
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.001897, :dispatch_time=>0.002285}
803
- ~
804
-
805
- ~ Started request handling: 2009-07-22 16:31:46 +0100
806
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
807
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '45a1be8e2b57b399ed87b981542f2029') LIMIT 1
808
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000893, :dispatch_time=>0.001185}
809
- ~
810
-
811
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
812
- ~ SELECT * FROM `sessions` LIMIT 1
813
- ~ PRAGMA table_info('sessions')
814
- ~ PRAGMA table_info('spec_models')
815
- ~ SELECT * FROM `spec_models` LIMIT 1
816
- ~ Started request handling: 2009-07-22 16:32:50 +0100
817
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
818
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '44a7bcade4af7804b89476345c4a34d5') LIMIT 1
819
- ~ Could not persist session to Merb::SequelSession: undefined method `save' for Merb::SequelSessionStore:Class
820
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.1e-05, :action_time=>0.002298, :dispatch_time=>0.002693}
821
- ~
822
-
823
- ~ Started request handling: 2009-07-22 16:32:50 +0100
824
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
825
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '44a7bcade4af7804b89476345c4a34d5') LIMIT 1
826
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000903, :dispatch_time=>0.001196}
827
- ~
828
-
829
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
830
- ~ SELECT * FROM `sessions` LIMIT 1
831
- ~ PRAGMA table_info('sessions')
832
- ~ PRAGMA table_info('spec_models')
833
- ~ SELECT * FROM `spec_models` LIMIT 1
834
- ~ Started request handling: 2009-07-22 16:33:34 +0100
835
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
836
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'da0f53c4b0397508a58b88cc8c217aaf') LIMIT 1
837
- ~ BEGIN
838
- ~ ROLLBACK
839
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
840
- format version 4.8 required; 123.34 given
841
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.1e-05, :action_time=>0.002843, :dispatch_time=>0.003238}
842
- ~
843
-
844
- ~ Started request handling: 2009-07-22 16:33:34 +0100
845
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
846
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'da0f53c4b0397508a58b88cc8c217aaf') LIMIT 1
847
- ~ {:before_filters_time=>1.6e-05, :after_filters_time=>8.0e-06, :action_time=>0.000928, :dispatch_time=>0.00125}
848
- ~
849
-
850
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
851
- ~ SELECT * FROM `sessions` LIMIT 1
852
- ~ PRAGMA table_info('sessions')
853
- ~ PRAGMA table_info('spec_models')
854
- ~ SELECT * FROM `spec_models` LIMIT 1
855
- ~ Started request handling: 2009-07-22 16:34:00 +0100
856
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
857
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'ac12e177d23f2520702fe8f582f56a05') LIMIT 1
858
- ~ BEGIN
859
- ~ ROLLBACK
860
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
861
- format version 4.8 required; 123.34 given
862
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.002579, :dispatch_time=>0.002974}
863
- ~
864
-
865
- ~ Started request handling: 2009-07-22 16:34:00 +0100
866
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
867
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'ac12e177d23f2520702fe8f582f56a05') LIMIT 1
868
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000947, :dispatch_time=>0.001236}
869
- ~
870
-
871
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
872
- ~ SELECT * FROM `sessions` LIMIT 1
873
- ~ PRAGMA table_info('sessions')
874
- ~ PRAGMA table_info('spec_models')
875
- ~ SELECT * FROM `spec_models` LIMIT 1
876
- ~ Started request handling: 2009-07-22 16:34:21 +0100
877
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
878
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a0759291d0fe1686a173f7c53ee33c8a') LIMIT 1
879
- ~ BEGIN
880
- ~ ROLLBACK
881
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
882
- format version 4.8 required; 123.34 given
883
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002889, :dispatch_time=>0.003308}
884
- ~
885
-
886
- ~ Started request handling: 2009-07-22 16:34:21 +0100
887
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
888
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a0759291d0fe1686a173f7c53ee33c8a') LIMIT 1
889
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000843, :dispatch_time=>0.00113}
890
- ~
891
-
892
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
893
- ~ SELECT * FROM `sessions` LIMIT 1
894
- ~ PRAGMA table_info('sessions')
895
- ~ PRAGMA table_info('spec_models')
896
- ~ SELECT * FROM `spec_models` LIMIT 1
897
- ~ Started request handling: 2009-07-22 16:34:43 +0100
898
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
899
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'b2638c4425e96e3577ab8164e18e7b28') LIMIT 1
900
- ~ BEGIN
901
- ~ ROLLBACK
902
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
903
- format version 4.8 required; 123.34 given
904
- ~ {:before_filters_time=>1.3e-05, :after_filters_time=>1.3e-05, :action_time=>0.002779, :dispatch_time=>0.003181}
905
- ~
906
-
907
- ~ Started request handling: 2009-07-22 16:34:43 +0100
908
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
909
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'b2638c4425e96e3577ab8164e18e7b28') LIMIT 1
910
- ~ {:before_filters_time=>1.7e-05, :after_filters_time=>6.0e-06, :action_time=>0.000912, :dispatch_time=>0.001212}
911
- ~
912
-
913
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
914
- ~ SELECT * FROM `sessions` LIMIT 1
915
- ~ PRAGMA table_info('sessions')
916
- ~ PRAGMA table_info('spec_models')
917
- ~ SELECT * FROM `spec_models` LIMIT 1
918
- ~ Started request handling: 2009-07-22 16:35:14 +0100
919
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
920
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '1b7b07d4885b24f37b7067870fed0a1c') LIMIT 1
921
- ~ BEGIN
922
- ~ ROLLBACK
923
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
924
- format version 4.8 required; 123.34 given
925
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.002674, :dispatch_time=>0.003052}
926
- ~
927
-
928
- ~ Started request handling: 2009-07-22 16:35:14 +0100
929
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
930
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '1b7b07d4885b24f37b7067870fed0a1c') LIMIT 1
931
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000888, :dispatch_time=>0.001173}
932
- ~
933
-
934
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
935
- ~ SELECT * FROM `sessions` LIMIT 1
936
- ~ PRAGMA table_info('sessions')
937
- ~ PRAGMA table_info('spec_models')
938
- ~ SELECT * FROM `spec_models` LIMIT 1
939
- ~ Started request handling: 2009-07-22 16:35:30 +0100
940
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
941
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'b0ac620cd0b560189c29d0ae06ec302e') LIMIT 1
942
- ~ BEGIN
943
- ~ ROLLBACK
944
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
945
- format version 4.8 required; 123.34 given
946
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002502, :dispatch_time=>0.002881}
947
- ~
948
-
949
- ~ Started request handling: 2009-07-22 16:35:30 +0100
950
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
951
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'b0ac620cd0b560189c29d0ae06ec302e') LIMIT 1
952
- ~ {:before_filters_time=>4.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000868, :dispatch_time=>0.001172}
953
- ~
954
-
955
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
956
- ~ SELECT * FROM `sessions` LIMIT 1
957
- ~ PRAGMA table_info('sessions')
958
- ~ PRAGMA table_info('spec_models')
959
- ~ SELECT * FROM `spec_models` LIMIT 1
960
- ~ Started request handling: 2009-07-22 16:36:06 +0100
961
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
962
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '71b7e55da838132606c9e67577b6f9d9') LIMIT 1
963
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.002183, :dispatch_time=>0.002561}
964
- ~
965
-
966
- ~ Started request handling: 2009-07-22 16:36:06 +0100
967
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
968
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '71b7e55da838132606c9e67577b6f9d9') LIMIT 1
969
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.000892, :dispatch_time=>0.001186}
970
- ~
971
-
972
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
973
- ~ SELECT * FROM `sessions` LIMIT 1
974
- ~ PRAGMA table_info('sessions')
975
- ~ PRAGMA table_info('spec_models')
976
- ~ SELECT * FROM `spec_models` LIMIT 1
977
- ~ Started request handling: 2009-07-22 16:36:36 +0100
978
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
979
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '9961dca8f3553c8bda4071ad2e00d013') LIMIT 1
980
- ~ BEGIN
981
- ~ ROLLBACK
982
- ~ Could not persist session to Merb::SequelSession: incompatible marshal file format (can't be read)
983
- format version 4.8 required; 123.34 given
984
- ~ {:before_filters_time=>9.0e-06, :after_filters_time=>1.0e-05, :action_time=>0.002725, :dispatch_time=>0.003101}
985
- ~
986
-
987
- ~ Started request handling: 2009-07-22 16:36:36 +0100
988
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
989
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '9961dca8f3553c8bda4071ad2e00d013') LIMIT 1
990
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.000819, :dispatch_time=>0.001122}
991
- ~
992
-
993
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
994
- ~ SELECT * FROM `sessions` LIMIT 1
995
- ~ PRAGMA table_info('sessions')
996
- ~ PRAGMA table_info('spec_models')
997
- ~ SELECT * FROM `spec_models` LIMIT 1
998
- ~ Started request handling: 2009-07-22 16:37:24 +0100
999
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1000
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '3a7999573cf51ec1df88e1da2ec81d0b') LIMIT 1
1001
- ~ BEGIN
1002
- ~ ROLLBACK
1003
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.00305, :dispatch_time=>0.00343}
1004
- ~
1005
-
1006
- ~ Started request handling: 2009-07-22 16:37:24 +0100
1007
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1008
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '3a7999573cf51ec1df88e1da2ec81d0b') LIMIT 1
1009
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.00092, :dispatch_time=>0.001213}
1010
- ~
1011
-
1012
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1013
- ~ SELECT * FROM `sessions` LIMIT 1
1014
- ~ PRAGMA table_info('sessions')
1015
- ~ PRAGMA table_info('spec_models')
1016
- ~ SELECT * FROM `spec_models` LIMIT 1
1017
- ~ Started request handling: 2009-07-22 16:41:57 +0100
1018
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1019
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'd1b8ec9db1a0e4db58c424236a613cc9') LIMIT 1
1020
- ~ BEGIN
1021
- ~ ROLLBACK
1022
- ~ incompatible marshal file format (can't be read)
1023
- format version 4.8 required; 123.34 given
1024
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.002426, :dispatch_time=>0.002829}
1025
- ~
1026
-
1027
- ~ Started request handling: 2009-07-22 16:41:57 +0100
1028
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1029
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'd1b8ec9db1a0e4db58c424236a613cc9') LIMIT 1
1030
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000874, :dispatch_time=>0.001153}
1031
- ~
1032
-
1033
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1034
- ~ SELECT * FROM `sessions` LIMIT 1
1035
- ~ PRAGMA table_info('sessions')
1036
- ~ PRAGMA table_info('spec_models')
1037
- ~ SELECT * FROM `spec_models` LIMIT 1
1038
- ~ Started request handling: 2009-07-22 16:43:29 +0100
1039
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1040
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '7f6947e04c01098c0acebe12795b1593') LIMIT 1
1041
- ~ BEGIN
1042
- ~ ROLLBACK
1043
- ~ incompatible marshal file format (can't be read)
1044
- format version 4.8 required; 123.34 given
1045
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002355, :dispatch_time=>0.002815}
1046
- ~
1047
-
1048
- ~ Started request handling: 2009-07-22 16:43:29 +0100
1049
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1050
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '7f6947e04c01098c0acebe12795b1593') LIMIT 1
1051
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000897, :dispatch_time=>0.001193}
1052
- ~
1053
-
1054
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1055
- ~ SELECT * FROM `sessions` LIMIT 1
1056
- ~ PRAGMA table_info('sessions')
1057
- ~ PRAGMA table_info('spec_models')
1058
- ~ SELECT * FROM `spec_models` LIMIT 1
1059
- ~ Started request handling: 2009-07-22 16:43:37 +0100
1060
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1061
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'f858c497e7c393a3bc457a8bfd142eca') LIMIT 1
1062
- ~ BEGIN
1063
- ~ ROLLBACK
1064
- ~ incompatible marshal file format (can't be read)
1065
- format version 4.8 required; 123.34 given
1066
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.4e-05, :action_time=>0.002371, :dispatch_time=>0.002744}
1067
- ~
1068
-
1069
- ~ Started request handling: 2009-07-22 16:43:37 +0100
1070
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1071
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'f858c497e7c393a3bc457a8bfd142eca') LIMIT 1
1072
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.0009, :dispatch_time=>0.001196}
1073
- ~
1074
-
1075
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1076
- ~ SELECT * FROM `sessions` LIMIT 1
1077
- ~ PRAGMA table_info('sessions')
1078
- ~ PRAGMA table_info('spec_models')
1079
- ~ SELECT * FROM `spec_models` LIMIT 1
1080
- ~ Started request handling: 2009-07-22 16:45:07 +0100
1081
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1082
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '1b88811254bd85a3ebd38f10e96f9c0e') LIMIT 1
1083
- ~ BEGIN
1084
- ~ ROLLBACK
1085
- ~ incompatible marshal file format (can't be read)
1086
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1087
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.1e-05, :action_time=>0.002339, :dispatch_time=>0.002714}
1088
- ~
1089
-
1090
- ~ Started request handling: 2009-07-22 16:45:07 +0100
1091
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1092
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '1b88811254bd85a3ebd38f10e96f9c0e') LIMIT 1
1093
- ~ {:before_filters_time=>4.0e-06, :after_filters_time=>4.0e-06, :action_time=>0.000891, :dispatch_time=>0.001185}
1094
- ~
1095
-
1096
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1097
- ~ SELECT * FROM `sessions` LIMIT 1
1098
- ~ PRAGMA table_info('sessions')
1099
- ~ PRAGMA table_info('spec_models')
1100
- ~ SELECT * FROM `spec_models` LIMIT 1
1101
- ~ Started request handling: 2009-07-22 16:46:18 +0100
1102
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1103
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'c1e217798468f6faa10c8fbb43e1e794') LIMIT 1
1104
- ~ BEGIN
1105
- ~ ROLLBACK
1106
- ~ incompatible marshal file format (can't be read)
1107
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1108
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002344, :dispatch_time=>0.002719}
1109
- ~
1110
-
1111
- ~ Started request handling: 2009-07-22 16:46:18 +0100
1112
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1113
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'c1e217798468f6faa10c8fbb43e1e794') LIMIT 1
1114
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.001035, :dispatch_time=>0.001364}
1115
- ~
1116
-
1117
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1118
- ~ SELECT * FROM `sessions` LIMIT 1
1119
- ~ CREATE TABLE `sessions` (`id` integer PRIMARY KEY AUTOINCREMENT, `session_id` varchar(255), `data` text, `created_at` timestamp)
1120
- ~ PRAGMA table_info('sessions')
1121
- ~ PRAGMA table_info('spec_models')
1122
- ~ SELECT * FROM `spec_models` LIMIT 1
1123
- ~ Started request handling: 2009-07-22 16:47:25 +0100
1124
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1125
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '538594781352369364f4fb2cc305c17b') LIMIT 1
1126
- ~ BEGIN
1127
- ~ ROLLBACK
1128
- ~ incompatible marshal file format (can't be read)
1129
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1130
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.5e-05, :action_time=>0.002471, :dispatch_time=>0.002854}
1131
- ~
1132
-
1133
- ~ Started request handling: 2009-07-22 16:47:25 +0100
1134
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1135
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '538594781352369364f4fb2cc305c17b') LIMIT 1
1136
- ~ {:before_filters_time=>6.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000988, :dispatch_time=>0.001326}
1137
- ~
1138
-
1139
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1140
- ~ SELECT * FROM `sessions` LIMIT 1
1141
- ~ PRAGMA table_info('sessions')
1142
- ~ PRAGMA table_info('spec_models')
1143
- ~ SELECT * FROM `spec_models` LIMIT 1
1144
- ~ Started request handling: 2009-07-22 16:47:30 +0100
1145
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1146
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '48596471a3c0608e2b301ddafde191f1') LIMIT 1
1147
- ~ BEGIN
1148
- ~ ROLLBACK
1149
- ~ incompatible marshal file format (can't be read)
1150
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1151
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>1.0e-05, :action_time=>0.002477, :dispatch_time=>0.002857}
1152
- ~
1153
-
1154
- ~ Started request handling: 2009-07-22 16:47:30 +0100
1155
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1156
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '48596471a3c0608e2b301ddafde191f1') LIMIT 1
1157
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.00112, :dispatch_time=>0.001437}
1158
- ~
1159
-
1160
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1161
- ~ SELECT * FROM `sessions` LIMIT 1
1162
- ~ PRAGMA table_info('sessions')
1163
- ~ PRAGMA table_info('spec_models')
1164
- ~ SELECT * FROM `spec_models` LIMIT 1
1165
- ~ Started request handling: 2009-07-22 16:48:36 +0100
1166
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1167
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '663e24652f652d5017fb96ecf4590706') LIMIT 1
1168
- ~ BEGIN
1169
- ~ ROLLBACK
1170
- ~ incompatible marshal file format (can't be read)
1171
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1172
- ~ {:before_filters_time=>1.8e-05, :after_filters_time=>1.0e-05, :action_time=>0.002346, :dispatch_time=>0.00275}
1173
- ~
1174
-
1175
- ~ Started request handling: 2009-07-22 16:48:36 +0100
1176
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1177
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '663e24652f652d5017fb96ecf4590706') LIMIT 1
1178
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>5.0e-06, :action_time=>0.000818, :dispatch_time=>0.001113}
1179
- ~
1180
-
1181
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1182
- ~ SELECT * FROM `sessions` LIMIT 1
1183
- ~ PRAGMA table_info('sessions')
1184
- ~ PRAGMA table_info('spec_models')
1185
- ~ SELECT * FROM `spec_models` LIMIT 1
1186
- ~ BEGIN
1187
- ~ ROLLBACK
1188
- ~ BEGIN
1189
- ~ Started request handling: 2009-07-22 16:51:29 +0100
1190
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1191
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '24fa9e9ab2a270de08f943bd101df773') LIMIT 1
1192
- ~ incompatible marshal file format (can't be read)
1193
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1194
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>1.2e-05, :action_time=>0.002317, :dispatch_time=>0.002697}
1195
- ~
1196
-
1197
- ~ Started request handling: 2009-07-22 16:51:29 +0100
1198
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1199
- ~ SELECT * FROM `sessions` WHERE (`session_id` = '24fa9e9ab2a270de08f943bd101df773') LIMIT 1
1200
- ~ {:before_filters_time=>1.0e-05, :after_filters_time=>8.0e-06, :action_time=>0.00079, :dispatch_time=>0.001146}
1201
- ~
1202
-
1203
- ~ Connecting to the 'spec/test.db' database on '' using 'sqlite' ...
1204
- ~ SELECT * FROM `sessions` LIMIT 1
1205
- ~ PRAGMA table_info('sessions')
1206
- ~ PRAGMA table_info('spec_models')
1207
- ~ SELECT * FROM `spec_models` LIMIT 1
1208
- ~ BEGIN
1209
- ~ ROLLBACK
1210
- ~ BEGIN
1211
- ~ Started request handling: 2009-07-22 17:05:36 +0100
1212
- ~ Params: {"controller"=>"spec_controller", "action"=>:set}
1213
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a721a6a14f8084524c18f9bb8b4e833b') LIMIT 1
1214
- ~ incompatible marshal file format (can't be read)
1215
- format version 4.8 required; 123.34 given when trying to save {"key"=>"value"}
1216
- ~ {:before_filters_time=>1.1e-05, :after_filters_time=>1.1e-05, :action_time=>0.00228, :dispatch_time=>0.00266}
1217
- ~
1218
-
1219
- ~ Started request handling: 2009-07-22 17:05:36 +0100
1220
- ~ Params: {"controller"=>"spec_controller", "action"=>:get}
1221
- ~ SELECT * FROM `sessions` WHERE (`session_id` = 'a721a6a14f8084524c18f9bb8b4e833b') LIMIT 1
1222
- ~ {:before_filters_time=>5.0e-06, :after_filters_time=>6.0e-06, :action_time=>0.000724, :dispatch_time=>0.001021}
1223
- ~
1224
-