shakespeare 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,55 +1,55 @@
1
- # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
- # It is recommended to regenerate this file in the future when you upgrade to a
3
- # newer version of cucumber-rails. Consider adding your own code to a new file
4
- # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
- # files.
6
-
7
- ENV["RAILS_ENV"] ||= "cucumber"
8
- require File.expand_path(File.dirname(__FILE__) + '/../../../../../config/environment')
9
-
10
- require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
11
- require 'cucumber/rails/rspec'
12
- require 'cucumber/rails/world'
13
- require 'cucumber/rails/active_record'
14
- require 'cucumber/web/tableish'
15
-
16
- require 'webrat'
17
- require 'webrat/core/matchers'
18
- require 'cucumber/webrat/element_locator' # Deprecated in favor of #tableish - remove this line if you don't use #element_at or #table_at
19
-
20
- Webrat.configure do |config|
21
- config.mode = :rails
22
- config.open_error_files = false # Set to true if you want error pages to pop up in the browser
23
- end
24
-
25
-
26
- # If you set this to false, any error raised from within your app will bubble
27
- # up to your step definition and out to cucumber unless you catch it somewhere
28
- # on the way. You can make Rails rescue errors and render error pages on a
29
- # per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
30
- #
31
- # If you set this to true, Rails will rescue all errors and render error
32
- # pages, more or less in the same way your application would behave in the
33
- # default production environment. It's not recommended to do this for all
34
- # of your scenarios, as this makes it hard to discover errors in your application.
35
- ActionController::Base.allow_rescue = false
36
-
37
- # If you set this to true, each scenario will run in a database transaction.
38
- # You can still turn off transactions on a per-scenario basis, simply tagging
39
- # a feature or scenario with the @no-txn tag. If you are using Capybara,
40
- # tagging with @culerity or @javascript will also turn transactions off.
41
- #
42
- # If you set this to false, transactions will be off for all scenarios,
43
- # regardless of whether you use @no-txn or not.
44
- #
45
- # Beware that turning transactions off will leave data in your database
46
- # after each scenario, which can lead to hard-to-debug failures in
47
- # subsequent scenarios. If you do this, we recommend you create a Before
48
- # block that will explicitly put your database in a known state.
49
- Cucumber::Rails::World.use_transactional_fixtures = true
50
-
51
- # How to clean your database when transactions are turned off. See
52
- # http://github.com/bmabey/database_cleaner for more info.
53
- require 'database_cleaner'
54
- DatabaseCleaner.strategy = :truncation
55
-
1
+ # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
+ # It is recommended to regenerate this file in the future when you upgrade to a
3
+ # newer version of cucumber-rails. Consider adding your own code to a new file
4
+ # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
+ # files.
6
+
7
+ ENV["RAILS_ENV"] ||= "cucumber"
8
+ require File.expand_path(File.dirname(__FILE__) + '/../../../../../config/environment')
9
+
10
+ require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
11
+ require 'cucumber/rails/rspec'
12
+ require 'cucumber/rails/world'
13
+ require 'cucumber/rails/active_record'
14
+ require 'cucumber/web/tableish'
15
+
16
+ require 'capybara/rails'
17
+ require 'capybara/cucumber'
18
+ require 'capybara/session'
19
+ require 'cucumber/rails/capybara_javascript_emulation' # Lets you click links with onclick javascript handlers without using @culerity or @javascript
20
+ # Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
21
+ # order to ease the transition to Capybara we set the default here. If you'd
22
+ # prefer to use XPath just remove this line and adjust any selectors in your
23
+ # steps to use the XPath syntax.
24
+ Capybara.default_selector = :css
25
+
26
+ # If you set this to false, any error raised from within your app will bubble
27
+ # up to your step definition and out to cucumber unless you catch it somewhere
28
+ # on the way. You can make Rails rescue errors and render error pages on a
29
+ # per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
30
+ #
31
+ # If you set this to true, Rails will rescue all errors and render error
32
+ # pages, more or less in the same way your application would behave in the
33
+ # default production environment. It's not recommended to do this for all
34
+ # of your scenarios, as this makes it hard to discover errors in your application.
35
+ ActionController::Base.allow_rescue = false
36
+
37
+ # If you set this to true, each scenario will run in a database transaction.
38
+ # You can still turn off transactions on a per-scenario basis, simply tagging
39
+ # a feature or scenario with the @no-txn tag. If you are using Capybara,
40
+ # tagging with @culerity or @javascript will also turn transactions off.
41
+ #
42
+ # If you set this to false, transactions will be off for all scenarios,
43
+ # regardless of whether you use @no-txn or not.
44
+ #
45
+ # Beware that turning transactions off will leave data in your database
46
+ # after each scenario, which can lead to hard-to-debug failures in
47
+ # subsequent scenarios. If you do this, we recommend you create a Before
48
+ # block that will explicitly put your database in a known state.
49
+ Cucumber::Rails::World.use_transactional_fixtures = true
50
+
51
+ # How to clean your database when transactions are turned off. See
52
+ # http://github.com/bmabey/database_cleaner for more info.
53
+ require 'database_cleaner'
54
+ DatabaseCleaner.strategy = :truncation
55
+
@@ -1,32 +1,32 @@
1
- module NavigationHelpers
2
- # Maps a name to a path. Used by the
3
- #
4
- # When /^I go to (.+)$/ do |page_name|
5
- #
6
- # step definition in web_steps.rb
7
- #
8
- def path_to(page_name)
9
- case page_name
10
-
11
- when /the home\s?page/
12
- '/'
13
- when /the pages admin page/
14
- admin_pages_path
15
- when /the page for "([^"]*)"/
16
- page = Page.find_by_title($1)
17
- page_path(page)
18
-
19
- # Add more mappings here.
20
- # Here is an example that pulls values out of the Regexp:
21
- #
22
- # when /^(.*)'s profile page$/i
23
- # user_profile_path(User.find_by_login($1))
24
-
25
- else
26
- raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
27
- "Now, go and add a mapping in #{__FILE__}"
28
- end
29
- end
30
- end
31
-
32
- World(NavigationHelpers)
1
+ module NavigationHelpers
2
+ # Maps a name to a path. Used by the
3
+ #
4
+ # When /^I go to (.+)$/ do |page_name|
5
+ #
6
+ # step definition in web_steps.rb
7
+ #
8
+ def path_to(page_name)
9
+ case page_name
10
+
11
+ when /the home\s?page/
12
+ '/'
13
+ when /the pages admin page/
14
+ admin_pages_path
15
+ when /the page for "([^"]*)"/
16
+ page = Page.find_by_title($1)
17
+ page_path(page.url)
18
+
19
+ # Add more mappings here.
20
+ # Here is an example that pulls values out of the Regexp:
21
+ #
22
+ # when /^(.*)'s profile page$/i
23
+ # user_profile_path(User.find_by_login($1))
24
+
25
+ else
26
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
27
+ "Now, go and add a mapping in #{__FILE__}"
28
+ end
29
+ end
30
+ end
31
+
32
+ World(NavigationHelpers)
data/lib/shakespeare.rb CHANGED
@@ -1,7 +1,7 @@
1
- require 'shakespeare/settings'
2
- require 'shakespeare/shakespeare'
3
- require 'shakespeare/helpers'
4
- require 'shakespeare/view_helpers'
5
-
6
- ApplicationController.send(:include, Shakespeare::Helpers)
1
+ require 'shakespeare/settings'
2
+ require 'shakespeare/shakespeare'
3
+ require 'shakespeare/helpers'
4
+ require 'shakespeare/view_helpers'
5
+
6
+ ApplicationController.send(:include, Shakespeare::Helpers)
7
7
  ActionView::Base.send(:include, Shakespeare::ViewHelpers)
data/rerun.txt CHANGED
@@ -1 +1 @@
1
-
1
+
data/shakespeare.gemspec CHANGED
@@ -5,17 +5,18 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{shakespeare}
8
- s.version = "0.1.1"
8
+ s.version = "0.2.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Paul Campbell"]
12
- s.date = %q{2010-01-04}
12
+ s.date = %q{2010-02-15}
13
13
  s.email = %q{paul@rslw.com}
14
14
  s.extra_rdoc_files = [
15
15
  "README.md"
16
16
  ]
17
17
  s.files = [
18
- "README.md",
18
+ "CHANGELOG",
19
+ "README.md",
19
20
  "Rakefile",
20
21
  "app/controllers/admin/pages_controller.rb",
21
22
  "app/controllers/pages_controller.rb",
@@ -59,6 +60,7 @@ Gem::Specification.new do |s|
59
60
  "spec/spec_helper.rb",
60
61
  "spec/view_helpers_spec.rb"
61
62
  ]
63
+ s.has_rdoc = false
62
64
  s.homepage = %q{http://www.github.com/paulca/shakespeare}
63
65
  s.rdoc_options = ["--charset=UTF-8"]
64
66
  s.require_paths = ["lib"]
data/spec/blueprints.rb CHANGED
@@ -1,9 +1,11 @@
1
- require 'machinist/active_record'
2
- require 'sham'
3
- require 'faker'
4
-
5
- Sham.title { Faker::Lorem.sentence }
6
-
7
- Page.blueprint do
8
- title
1
+ require 'machinist/active_record'
2
+ require 'sham'
3
+ require 'faker'
4
+
5
+ Sham.title { Faker::Lorem.sentence }
6
+ Sham.url { Faker::Internet.domain_name }
7
+
8
+ Page.blueprint do
9
+ title
10
+ url
9
11
  end
data/spec/debug.log CHANGED
@@ -1935,3 +1935,460 @@
1935
1935
  Page Load (0.2ms) SELECT * FROM "pages" 
1936
1936
  Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('http://hendersons.com', '2010-01-04 13:35:08', 'Harry and the Hendersons', '2010-01-04 13:35:08', '', 't', '', 't', '', 't', NULL, '80s, movie')
1937
1937
  Page Load (0.4ms) SELECT * FROM "pages" 
1938
+ SQL (0.2ms) select sqlite_version(*)
1939
+ SQL (0.4ms)  SELECT name
1940
+ FROM sqlite_master
1941
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1942
+ 
1943
+ SQL (2.5ms) DROP TABLE "pages"
1944
+ SQL (1.2ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1945
+ SQL (0.2ms)  SELECT name
1946
+ FROM sqlite_master
1947
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1948
+ 
1949
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1950
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1951
+ Page Load (0.1ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1952
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1953
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1954
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1955
+ Page Load (0.2ms) SELECT * FROM "pages" 
1956
+ SQL (0.2ms) select sqlite_version(*)
1957
+ SQL (0.8ms)  SELECT name
1958
+ FROM sqlite_master
1959
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1960
+ 
1961
+ SQL (10.9ms) DROP TABLE "pages"
1962
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1963
+ SQL (0.3ms)  SELECT name
1964
+ FROM sqlite_master
1965
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1966
+ 
1967
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1968
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1969
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1970
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1971
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1972
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1973
+ Page Load (0.2ms) SELECT * FROM "pages" 
1974
+ SQL (0.4ms) select sqlite_version(*)
1975
+ SQL (0.5ms)  SELECT name
1976
+ FROM sqlite_master
1977
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1978
+ 
1979
+ SQL (2.1ms) DROP TABLE "pages"
1980
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1981
+ SQL (0.2ms)  SELECT name
1982
+ FROM sqlite_master
1983
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1984
+ 
1985
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1986
+ Page Load (0.2ms) SELECT * FROM "pages" 
1987
+ Page Load (0.2ms) SELECT * FROM "pages" 
1988
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:36:38', 'Harry and the Hendersons', '2010-02-15 13:36:38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1989
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1990
+ Page Load (0.3ms) SELECT * FROM "pages" 
1991
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1992
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1993
+ Page Update (0.1ms) UPDATE "pages" SET "keywords" = '', "updated_at" = '2010-02-15 13:36:38', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "description" = '', "noindex" = 'f', "enable_canonical" = 'f' WHERE "id" = 1
1994
+ Page Load (0.3ms) SELECT * FROM "pages" 
1995
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:36:38', 'The Departed', '2010-02-15 13:36:38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1996
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1997
+ Page Load (0.3ms) SELECT * FROM "pages" 
1998
+ Page Create (0.8ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:36:38', 'Mr. MacAllister''s Christmas', '2010-02-15 13:36:38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1999
+ Page Load (1.5ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2000
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2001
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:36:38', "content" = 'I was Home Alone' WHERE "id" = 1
2002
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2003
+ SQL (0.2ms) select sqlite_version(*)
2004
+ SQL (0.3ms)  SELECT name
2005
+ FROM sqlite_master
2006
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2007
+ 
2008
+ SQL (2.6ms) DROP TABLE "pages"
2009
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2010
+ SQL (0.3ms)  SELECT name
2011
+ FROM sqlite_master
2012
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2013
+ 
2014
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2015
+ Page Load (0.2ms) SELECT * FROM "pages" 
2016
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('http://hendersons.com', '2010-02-15 13:37:11', 'Harry and the Hendersons', '2010-02-15 13:37:11', '', 't', '', 't', '', 't', NULL, '80s, movie')
2017
+ Page Load (0.3ms) SELECT * FROM "pages" 
2018
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:37:11', 'The Departed', '2010-02-15 13:37:11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2019
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2020
+ Page Load (0.5ms) SELECT * FROM "pages" 
2021
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:37:11', 'Mr. MacAllister''s Christmas', '2010-02-15 13:37:11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2022
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2023
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2024
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:37:11', "content" = 'I was Home Alone' WHERE "id" = 1
2025
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2026
+ SQL (0.2ms) select sqlite_version(*)
2027
+ SQL (0.3ms)  SELECT name
2028
+ FROM sqlite_master
2029
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2030
+ 
2031
+ SQL (2.8ms) DROP TABLE "pages"
2032
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2033
+ SQL (0.3ms)  SELECT name
2034
+ FROM sqlite_master
2035
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2036
+ 
2037
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2038
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:37:39', 'The Departed', '2010-02-15 13:37:39', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2039
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2040
+ Page Load (0.3ms) SELECT * FROM "pages" 
2041
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:37:39', 'Mr. MacAllister''s Christmas', '2010-02-15 13:37:39', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2042
+ Page Load (0.7ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2043
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2044
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:37:39', "content" = 'I was Home Alone' WHERE "id" = 1
2045
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2046
+ SQL (0.2ms) select sqlite_version(*)
2047
+ SQL (0.3ms)  SELECT name
2048
+ FROM sqlite_master
2049
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2050
+ 
2051
+ SQL (2.9ms) DROP TABLE "pages"
2052
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2053
+ SQL (0.3ms)  SELECT name
2054
+ FROM sqlite_master
2055
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2056
+ 
2057
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2058
+ SQL (0.2ms) select sqlite_version(*)
2059
+ SQL (0.4ms)  SELECT name
2060
+ FROM sqlite_master
2061
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2062
+ 
2063
+ SQL (1.5ms) DROP TABLE "pages"
2064
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2065
+ SQL (0.2ms)  SELECT name
2066
+ FROM sqlite_master
2067
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2068
+ 
2069
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2070
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:38:12', 'The Departed', '2010-02-15 13:38:12', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2071
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2072
+ Page Load (0.4ms) SELECT * FROM "pages" 
2073
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:38:12', 'Mr. MacAllister''s Christmas', '2010-02-15 13:38:12', 'kautzergoyette.name', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2074
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2075
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2076
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:38:12', "content" = 'I was Home Alone' WHERE "id" = 1
2077
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2078
+ SQL (0.2ms) select sqlite_version(*)
2079
+ SQL (0.4ms)  SELECT name
2080
+ FROM sqlite_master
2081
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2082
+ 
2083
+ SQL (2.6ms) DROP TABLE "pages"
2084
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2085
+ SQL (0.3ms)  SELECT name
2086
+ FROM sqlite_master
2087
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2088
+ 
2089
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2090
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:40:26', 'The Departed', '2010-02-15 13:40:26', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2091
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2092
+ Page Load (0.4ms) SELECT * FROM "pages" 
2093
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:40:26', 'Mr. MacAllister''s Christmas', '2010-02-15 13:40:26', 'kautzergoyette.name', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2094
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2095
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2096
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:40:26', "content" = 'I was Home Alone' WHERE "id" = 1
2097
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2098
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."id" = 0) 
2099
+ SQL (0.2ms) select sqlite_version(*)
2100
+ SQL (0.3ms)  SELECT name
2101
+ FROM sqlite_master
2102
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2103
+ 
2104
+ SQL (2.8ms) DROP TABLE "pages"
2105
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2106
+ SQL (0.3ms)  SELECT name
2107
+ FROM sqlite_master
2108
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2109
+ 
2110
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2111
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:40:39', 'The Departed', '2010-02-15 13:40:39', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2112
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2113
+ Page Load (0.4ms) SELECT * FROM "pages" 
2114
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:40:39', 'Mr. MacAllister''s Christmas', '2010-02-15 13:40:39', 'kautzergoyette.name', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2115
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2116
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2117
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:40:39', "content" = 'I was Home Alone' WHERE "id" = 1
2118
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2119
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kautzergoyette.name') LIMIT 1
2120
+ SQL (0.2ms) select sqlite_version(*)
2121
+ SQL (0.4ms)  SELECT name
2122
+ FROM sqlite_master
2123
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2124
+ 
2125
+ SQL (2.6ms) DROP TABLE "pages"
2126
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2127
+ SQL (0.2ms)  SELECT name
2128
+ FROM sqlite_master
2129
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2130
+ 
2131
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2132
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:40:47', 'The Departed', '2010-02-15 13:40:47', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2133
+ Page Load (0.5ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2134
+ Page Load (0.3ms) SELECT * FROM "pages" 
2135
+ SQL (0.2ms) select sqlite_version(*)
2136
+ SQL (0.4ms)  SELECT name
2137
+ FROM sqlite_master
2138
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2139
+ 
2140
+ SQL (2.7ms) DROP TABLE "pages"
2141
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2142
+ SQL (0.3ms)  SELECT name
2143
+ FROM sqlite_master
2144
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2145
+ 
2146
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2147
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:41:07', 'The Departed', '2010-02-15 13:41:07', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2148
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2149
+ Page Load (0.4ms) SELECT * FROM "pages" 
2150
+ SQL (0.2ms) select sqlite_version(*)
2151
+ SQL (0.4ms)  SELECT name
2152
+ FROM sqlite_master
2153
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2154
+ 
2155
+ SQL (122.0ms) DROP TABLE "pages"
2156
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2157
+ SQL (0.4ms)  SELECT name
2158
+ FROM sqlite_master
2159
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2160
+ 
2161
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2162
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:41:46', 'The Departed', '2010-02-15 13:41:46', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2163
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2164
+ Page Load (0.4ms) SELECT * FROM "pages" 
2165
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."id" = 0) 
2166
+ SQL (0.2ms) select sqlite_version(*)
2167
+ SQL (0.4ms)  SELECT name
2168
+ FROM sqlite_master
2169
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2170
+ 
2171
+ SQL (2.9ms) DROP TABLE "pages"
2172
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2173
+ SQL (0.3ms)  SELECT name
2174
+ FROM sqlite_master
2175
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2176
+ 
2177
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2178
+ SQL (0.2ms) select sqlite_version(*)
2179
+ SQL (0.4ms)  SELECT name
2180
+ FROM sqlite_master
2181
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2182
+ 
2183
+ SQL (3.0ms) DROP TABLE "pages"
2184
+ SQL (2.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2185
+ SQL (0.2ms)  SELECT name
2186
+ FROM sqlite_master
2187
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2188
+ 
2189
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2190
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:42:59', 'The Departed', '2010-02-15 13:42:59', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2191
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2192
+ Page Load (0.4ms) SELECT * FROM "pages" 
2193
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kundesmith.co.uk') LIMIT 1
2194
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
2195
+ Page Load (0.1ms) SELECT * FROM "pages" 
2196
+ SQL (0.2ms) select sqlite_version(*)
2197
+ SQL (0.4ms)  SELECT name
2198
+ FROM sqlite_master
2199
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2200
+ 
2201
+ SQL (2.8ms) DROP TABLE "pages"
2202
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2203
+ SQL (0.3ms)  SELECT name
2204
+ FROM sqlite_master
2205
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2206
+ 
2207
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2208
+ Page Load (0.2ms) SELECT * FROM "pages" 
2209
+ Page Load (0.2ms) SELECT * FROM "pages" 
2210
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:43:04', 'Harry and the Hendersons', '2010-02-15 13:43:04', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2211
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2212
+ Page Load (0.3ms) SELECT * FROM "pages" 
2213
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kundesmith.co.uk') LIMIT 1
2214
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kundesmith.co.uk') LIMIT 1
2215
+ Page Update (0.1ms) UPDATE "pages" SET "keywords" = '', "updated_at" = '2010-02-15 13:43:04', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "canonical" = '', "description" = '', "noindex" = 'f', "enable_canonical" = 'f' WHERE "id" = 1
2216
+ Page Load (0.3ms) SELECT * FROM "pages" 
2217
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:43:04', 'The Departed', '2010-02-15 13:43:04', 'kautzergoyette.name', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2218
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2219
+ Page Load (0.3ms) SELECT * FROM "pages" 
2220
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kautzergoyette.name') LIMIT 1
2221
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
2222
+ Page Load (0.1ms) SELECT * FROM "pages" 
2223
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:43:04', 'Mr. MacAllister''s Christmas', '2010-02-15 13:43:04', 'gutmann.ca', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2224
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2225
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2226
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:43:04', "content" = 'I was Home Alone' WHERE "id" = 1
2227
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2228
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'gutmann.ca') LIMIT 1
2229
+ SQL (0.2ms) select sqlite_version(*)
2230
+ SQL (0.4ms)  SELECT name
2231
+ FROM sqlite_master
2232
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2233
+ 
2234
+ SQL (2.7ms) DROP TABLE "pages"
2235
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2236
+ SQL (0.2ms)  SELECT name
2237
+ FROM sqlite_master
2238
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2239
+ 
2240
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2241
+ Page Load (0.2ms) SELECT * FROM "pages" 
2242
+ SQL (0.2ms) select sqlite_version(*)
2243
+ SQL (0.4ms)  SELECT name
2244
+ FROM sqlite_master
2245
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2246
+ 
2247
+ SQL (2.5ms) DROP TABLE "pages"
2248
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2249
+ SQL (0.3ms)  SELECT name
2250
+ FROM sqlite_master
2251
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2252
+ 
2253
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2254
+ Page Load (0.2ms) SELECT * FROM "pages" 
2255
+ SQL (0.2ms) select sqlite_version(*)
2256
+ SQL (0.4ms)  SELECT name
2257
+ FROM sqlite_master
2258
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2259
+ 
2260
+ SQL (2.9ms) DROP TABLE "pages"
2261
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2262
+ SQL (0.3ms)  SELECT name
2263
+ FROM sqlite_master
2264
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2265
+ 
2266
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2267
+ Page Load (0.2ms) SELECT * FROM "pages" 
2268
+ SQL (0.2ms) select sqlite_version(*)
2269
+ SQL (0.3ms)  SELECT name
2270
+ FROM sqlite_master
2271
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2272
+ 
2273
+ SQL (3.1ms) DROP TABLE "pages"
2274
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2275
+ SQL (0.3ms)  SELECT name
2276
+ FROM sqlite_master
2277
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2278
+ 
2279
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2280
+ Page Load (0.6ms) SELECT * FROM "pages" 
2281
+ SQL (0.2ms) select sqlite_version(*)
2282
+ SQL (0.4ms)  SELECT name
2283
+ FROM sqlite_master
2284
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2285
+ 
2286
+ SQL (2.7ms) DROP TABLE "pages"
2287
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2288
+ SQL (0.3ms)  SELECT name
2289
+ FROM sqlite_master
2290
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2291
+ 
2292
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
2293
+ Page Load (0.2ms) SELECT * FROM "pages" 
2294
+ SQL (0.2ms) select sqlite_version(*)
2295
+ SQL (0.3ms)  SELECT name
2296
+ FROM sqlite_master
2297
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2298
+ 
2299
+ SQL (2.1ms) DROP TABLE "pages"
2300
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2301
+ SQL (0.3ms)  SELECT name
2302
+ FROM sqlite_master
2303
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2304
+ 
2305
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2306
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2307
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2308
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2309
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2310
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2311
+ Page Load (0.2ms) SELECT * FROM "pages" 
2312
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:47:39', 'Harry B', '2010-02-15 13:47:39', 'gulgowski.name', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2313
+ SQL (0.2ms) select sqlite_version(*)
2314
+ SQL (0.3ms)  SELECT name
2315
+ FROM sqlite_master
2316
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2317
+ 
2318
+ SQL (2.8ms) DROP TABLE "pages"
2319
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2320
+ SQL (0.3ms)  SELECT name
2321
+ FROM sqlite_master
2322
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2323
+ 
2324
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2325
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2326
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2327
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2328
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2329
+ Page Load (0.1ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
2330
+ Page Load (0.2ms) SELECT * FROM "pages" 
2331
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:48:00', 'Harry B', '2010-02-15 13:48:00', 'harry-b', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2332
+ SQL (0.2ms) select sqlite_version(*)
2333
+ SQL (0.4ms)  SELECT name
2334
+ FROM sqlite_master
2335
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2336
+ 
2337
+ SQL (2.8ms) DROP TABLE "pages"
2338
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2339
+ SQL (0.3ms)  SELECT name
2340
+ FROM sqlite_master
2341
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2342
+ 
2343
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2344
+ Page Load (0.2ms) SELECT * FROM "pages" 
2345
+ SQL (0.2ms) select sqlite_version(*)
2346
+ SQL (0.4ms)  SELECT name
2347
+ FROM sqlite_master
2348
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2349
+ 
2350
+ SQL (2.7ms) DROP TABLE "pages"
2351
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2352
+ SQL (0.3ms)  SELECT name
2353
+ FROM sqlite_master
2354
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2355
+ 
2356
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
2357
+ Page Load (0.2ms) SELECT * FROM "pages" 
2358
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('http://hendersons.com', '2010-02-15 13:48:58', 'Harry and the Hendersons', '2010-02-15 13:48:58', '', 't', '', 't', '', 't', NULL, '80s, movie')
2359
+ Page Load (0.3ms) SELECT * FROM "pages" 
2360
+ SQL (0.2ms) select sqlite_version(*)
2361
+ SQL (0.4ms)  SELECT name
2362
+ FROM sqlite_master
2363
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2364
+ 
2365
+ SQL (2.8ms) DROP TABLE "pages"
2366
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
2367
+ SQL (0.3ms)  SELECT name
2368
+ FROM sqlite_master
2369
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2370
+ 
2371
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2372
+ Page Load (0.2ms) SELECT * FROM "pages" 
2373
+ Page Load (0.2ms) SELECT * FROM "pages" 
2374
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('http://hendersons.com', '2010-02-15 13:49:11', 'Harry and the Hendersons', '2010-02-15 13:49:11', '', 't', '', 't', '', 't', NULL, '80s, movie')
2375
+ Page Load (0.3ms) SELECT * FROM "pages" 
2376
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:49:11', 'Harry and the Hendersons', '2010-02-15 13:49:11', 'kundesmith.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2377
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2378
+ Page Load (0.3ms) SELECT * FROM "pages" 
2379
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kundesmith.co.uk') LIMIT 1
2380
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kundesmith.co.uk') LIMIT 1
2381
+ Page Update (0.1ms) UPDATE "pages" SET "keywords" = '', "updated_at" = '2010-02-15 13:49:11', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "canonical" = '', "description" = '', "noindex" = 'f', "enable_canonical" = 'f' WHERE "id" = 1
2382
+ Page Load (0.3ms) SELECT * FROM "pages" 
2383
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:49:11', 'The Departed', '2010-02-15 13:49:11', 'kautzergoyette.name', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2384
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2385
+ Page Load (0.3ms) SELECT * FROM "pages" 
2386
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'kautzergoyette.name') LIMIT 1
2387
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
2388
+ Page Load (0.2ms) SELECT * FROM "pages" 
2389
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-02-15 13:49:11', 'Mr. MacAllister''s Christmas', '2010-02-15 13:49:11', 'gutmann.ca', NULL, NULL, NULL, NULL, NULL, NULL, NULL)
2390
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
2391
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2392
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-02-15 13:49:11', "content" = 'I was Home Alone' WHERE "id" = 1
2393
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
2394
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = 'gutmann.ca') LIMIT 1