merb_sequel 1.0.0 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +20 -0
- data/README.rdoc +139 -0
- data/Rakefile +39 -68
- data/lib/generators/templates/migration/schema/migrations/%file_name%.rb +3 -3
- data/lib/generators/templates/resource_controller/app/controllers/%file_name%.rb +11 -8
- data/lib/merb/orms/sequel/connection.rb +10 -1
- data/lib/merb/orms/sequel/model.rb +38 -0
- data/lib/merb/session/sequel_session.rb +20 -41
- data/lib/merb_sequel.rb +64 -11
- data/lib/merb_sequel/merbtasks.rb +52 -9
- data/lib/merb_sequel/rspec/sequel.rb +5 -0
- data/lib/merb_sequel/version.rb +5 -0
- data/spec/config/database.yml +11 -0
- data/spec/log/merb_test.log +1224 -0
- data/spec/log/test.log +0 -0
- data/spec/merb_sequel_session_spec.rb +53 -0
- data/spec/merb_sequel_spec.rb +15 -0
- data/spec/rspec/sequel_spec.rb +18 -0
- data/spec/sequel_ext_spec.rb +33 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_controller.rb +20 -0
- data/spec/spec_helper.rb +36 -0
- data/spec/spec_model.rb +13 -0
- data/spec/test.db +0 -0
- metadata +56 -43
- data/README +0 -49
- data/lib/sequel_ext/model.rb +0 -7
data/lib/merb_sequel.rb
CHANGED
@@ -1,11 +1,17 @@
|
|
1
1
|
if defined?(Merb::Plugins)
|
2
|
-
|
3
|
-
|
2
|
+
|
3
|
+
# Default settings
|
4
|
+
Merb::Plugins.config[:merb_sequel] = { :load_activemodel_compatibility => true }
|
5
|
+
|
6
|
+
require File.join(File.dirname(__FILE__) / "merb" / "orms" / "sequel" / "model")
|
4
7
|
require File.join(File.dirname(__FILE__) / "merb" / "orms" / "sequel" / "connection")
|
5
8
|
Merb::Plugins.add_rakefiles "merb_sequel" / "merbtasks"
|
6
9
|
|
10
|
+
# Connects to the database and handles session
|
11
|
+
#
|
12
|
+
# Connects to the database and loads sequel sessions if we use them.
|
13
|
+
# Sets router to identify models using Model.pk.
|
7
14
|
class Merb::Orms::Sequel::Connect < Merb::BootLoader
|
8
|
-
|
9
15
|
after BeforeAppLoads
|
10
16
|
|
11
17
|
def self.run
|
@@ -15,25 +21,72 @@ if defined?(Merb::Plugins)
|
|
15
21
|
require File.join(File.dirname(__FILE__) / "merb" / "session" / "sequel_session")
|
16
22
|
end
|
17
23
|
|
24
|
+
# Set identifiy to use Sequel primary key field
|
18
25
|
Merb::Router.root_behavior = Merb::Router.root_behavior.identify(Sequel::Model => :pk)
|
26
|
+
|
27
|
+
# Load compatibility extensions
|
28
|
+
if Merb::Plugins.config[:merb_sequel][:load_activemodel_compatibility]
|
29
|
+
load_activemodel_compatibility
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# Load active model plugin if available
|
34
|
+
#
|
35
|
+
# Merb > 1.0.13 expects models to be ActiveModel compatible
|
36
|
+
# Sequel 3.5.0 added plugin to make Sequel models AtciveModel
|
37
|
+
# compatible.
|
38
|
+
#
|
39
|
+
# We're loading plugin to all models here if plugin is available
|
40
|
+
# if the plugin is not available we must include compatibility module.
|
41
|
+
def self.load_activemodel_compatibility
|
42
|
+
begin
|
43
|
+
Sequel::Model.plugin :active_model
|
44
|
+
rescue LoadError, NoMethodError
|
45
|
+
Sequel::Model.send(:include, Merb::Orms::Sequel::Model::ActiveModelCompatibility)
|
46
|
+
end
|
19
47
|
end
|
20
48
|
|
21
49
|
end
|
50
|
+
|
51
|
+
# Disconnects from DB before reaping workers
|
52
|
+
#
|
53
|
+
# We must disconnect from the DB before the worker process dies to be nice
|
54
|
+
# and not cause IO blocking.
|
55
|
+
#
|
56
|
+
# Disconnect only when fork_for_class_relaod is set and we're not in
|
57
|
+
# testing mode.
|
58
|
+
Merb::BootLoader.before_worker_shutdown do
|
59
|
+
if Merb::Config[:fork_for_class_load] && !Merb.testing?
|
60
|
+
Merb.logger.info "Disconnecting database connection before worker shutdown..."
|
61
|
+
dbs = []
|
62
|
+
::Sequel::DATABASES.each { |db| db.disconnect; dbs << db }
|
63
|
+
# Cleanup disconnected databases so they can be GCed
|
64
|
+
dbs.each {|db| ::Sequel::DATABASES.delete(db) }
|
65
|
+
end
|
66
|
+
end
|
22
67
|
|
23
|
-
|
24
|
-
|
25
|
-
|
68
|
+
# Disconnects from DB before starting reloading classes
|
69
|
+
#
|
70
|
+
# We must disconnect from the DB before the worker process dies to be nice
|
71
|
+
# and not cause IO blocking.
|
72
|
+
#
|
73
|
+
# Disconnect only when fork_for_class_relaod is set and we're not in
|
74
|
+
# testing mode.
|
75
|
+
class Merb::BootLoader::DisconnectBeforeStartTransaction < Merb::BootLoader
|
76
|
+
before LoadClasses
|
77
|
+
|
26
78
|
def self.run
|
27
|
-
Merb
|
28
|
-
|
79
|
+
if Merb::Config[:fork_for_class_load] && !Merb.testing?
|
80
|
+
Merb.logger.info "Disconnecting database connection before starting transaction."
|
81
|
+
::Sequel::DATABASES.each { |db| db.disconnect }
|
82
|
+
end
|
29
83
|
end
|
30
|
-
|
31
84
|
end
|
32
85
|
|
86
|
+
# Load generators
|
33
87
|
generators = File.join(File.dirname(__FILE__), 'generators')
|
34
88
|
Merb.add_generators generators / :migration
|
35
89
|
Merb.add_generators generators / :model
|
36
90
|
Merb.add_generators generators / :resource_controller
|
37
91
|
Merb.add_generators generators / :session_migration
|
38
|
-
|
39
|
-
end
|
92
|
+
end
|
@@ -2,24 +2,68 @@ require "fileutils"
|
|
2
2
|
|
3
3
|
namespace :sequel do
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
desc "Minimalistic Sequel environment"
|
6
|
+
task :sequel_env do
|
7
|
+
Merb::Orms::Sequel.connect
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
namespace :db do
|
11
11
|
|
12
12
|
desc "Perform migration using migrations in schema/migrations"
|
13
|
-
task :migrate => :
|
13
|
+
task :migrate => :sequel_env do
|
14
|
+
require 'sequel/extensions/migration' if Merb::Orms::Sequel.new_sequel?
|
14
15
|
Sequel::Migrator.apply(Sequel::Model.db, "schema/migrations", ENV["VERSION"] ? ENV["VERSION"].to_i : nil)
|
15
16
|
end
|
16
17
|
|
18
|
+
desc "Drop all tables"
|
19
|
+
task :drop_tables => :sequel_env do
|
20
|
+
Sequel::Model.db.drop_table *Sequel::Model.db.tables
|
21
|
+
end
|
22
|
+
|
23
|
+
desc "Drop all tables and perform migrations"
|
24
|
+
task :reset => [:sequel_env, :drop_tables, :migrate]
|
25
|
+
|
26
|
+
desc "Truncate all tables in database"
|
27
|
+
task :truncate => :sequel_env do
|
28
|
+
Sequel::Model.db << "TRUNCATE #{db.tables.join(', ')} CASCADE;"
|
29
|
+
end
|
30
|
+
|
31
|
+
desc "Create the database according to the config from the database.yaml. Use [username,password] if you need another user to connect to DB than in config."
|
32
|
+
task :create, :username, :password do |t,args|
|
33
|
+
config = Merb::Orms::Sequel.config
|
34
|
+
puts "Creating database '#{config[:database]}'"
|
35
|
+
case config[:adapter]
|
36
|
+
when 'postgres'
|
37
|
+
if args.username.nil?
|
38
|
+
`createdb -U #{config[:username]} #{config[:database]}`
|
39
|
+
else
|
40
|
+
`createdb -U #{args.username} -O #{config[:username]} #{config[:database]}`
|
41
|
+
end
|
42
|
+
when 'mysql'
|
43
|
+
`mysqladmin -u #{config[:username]} #{config[:password] ? "-p'#{config[:password]}'" : ''} create #{config[:database]}`
|
44
|
+
else
|
45
|
+
raise "Adapter #{config[:adapter]} not supported for creating databases yet."
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
desc "Drop the database for enviroment from database.yaml (postgres only). Use [username,password] if you need another user to connect to DB than in config."
|
50
|
+
task :drop, :username, :password do |t,args|
|
51
|
+
config = Merb::Orms::Sequel.config
|
52
|
+
user = args.username.nil? ? config[:username]: args.username
|
53
|
+
puts "Droping database '#{config[:database]}'"
|
54
|
+
case config[:adapter]
|
55
|
+
when 'postgres'
|
56
|
+
`dropdb -U #{user} #{config[:database]}`
|
57
|
+
else
|
58
|
+
raise "Adapter #{config[:adapter]} not supported for dropping databases yet."
|
59
|
+
end
|
60
|
+
end
|
17
61
|
end
|
18
62
|
|
19
63
|
namespace :sessions do
|
20
64
|
|
21
65
|
desc "Creates session migration"
|
22
|
-
task :create => :
|
66
|
+
task :create => :sequel_env do
|
23
67
|
migration_exists = Dir[File.join(Merb.root,"schema", "migrations", "*.rb")].detect{ |f| f =~ /database_sessions\.rb/ }
|
24
68
|
if migration_exists
|
25
69
|
puts "\nThe Session Migration File already exists\n\n"
|
@@ -29,10 +73,9 @@ namespace :sequel do
|
|
29
73
|
end
|
30
74
|
|
31
75
|
desc "Clears sessions"
|
32
|
-
task :clear => :
|
76
|
+
task :clear => :sequel_env do
|
33
77
|
table_name = ((Merb::Plugins.config[:sequel] || {})[:session_table_name] || "sessions")
|
34
|
-
|
35
|
-
Merb::Orms::Sequel.connect.execute("DELETE FROM #{table_name}")
|
78
|
+
Sequel::Model.db.connect.execute("DELETE FROM #{table_name}")
|
36
79
|
end
|
37
80
|
|
38
81
|
end
|
@@ -0,0 +1,1224 @@
|
|
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
|
+
|