ninetails 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -4
  3. data/Rakefile +3 -3
  4. data/app/components/ninetails/element.rb +5 -1
  5. data/app/components/ninetails/element_definition.rb +2 -2
  6. data/app/components/ninetails/property_type.rb +0 -2
  7. data/app/components/ninetails/{section_template.rb → section.rb} +6 -8
  8. data/app/controllers/ninetails/application_controller.rb +1 -0
  9. data/app/controllers/ninetails/page_revisions_controller.rb +2 -3
  10. data/app/controllers/ninetails/pages_controller.rb +20 -1
  11. data/app/controllers/ninetails/sections_controller.rb +35 -0
  12. data/app/models/ninetails/page.rb +3 -16
  13. data/app/models/ninetails/page_revision.rb +2 -8
  14. data/app/models/ninetails/page_revision_section.rb +1 -1
  15. data/app/models/ninetails/page_section.rb +40 -0
  16. data/app/views/ninetails/page_revisions/index.json.jbuilder +1 -0
  17. data/app/views/ninetails/pages/_page.json.jbuilder +13 -0
  18. data/app/views/ninetails/pages/index.json.jbuilder +1 -0
  19. data/app/views/ninetails/pages/show.json.jbuilder +1 -0
  20. data/app/views/ninetails/sections/_section.json.jbuilder +1 -0
  21. data/app/views/ninetails/sections/validate.json.jbuilder +3 -0
  22. data/config/routes.rb +9 -5
  23. data/config/spring.rb +1 -0
  24. data/db/migrate/20151120120538_rename_sections_to_page_sections.rb +5 -0
  25. data/lib/ninetails/config.rb +8 -0
  26. data/lib/ninetails/engine.rb +5 -0
  27. data/lib/ninetails/key_conversion.rb +28 -0
  28. data/lib/ninetails/version.rb +1 -1
  29. data/lib/tasks/ninetails_tasks.rake +2 -2
  30. data/spec/components/element_spec.rb +3 -3
  31. data/spec/components/property_spec.rb +2 -2
  32. data/spec/components/property_type_spec.rb +5 -5
  33. data/spec/components/section_spec.rb +2 -2
  34. data/spec/dummy/app/components/{section_template → section}/billboard.rb +2 -2
  35. data/spec/dummy/app/components/{section_template → section}/document_head.rb +2 -2
  36. data/spec/dummy/app/components/section/minimal_billboard.rb +9 -0
  37. data/spec/dummy/bin/rails +5 -0
  38. data/spec/dummy/bin/rake +5 -0
  39. data/spec/dummy/bin/rspec +8 -0
  40. data/spec/dummy/bin/spring +15 -0
  41. data/spec/dummy/config/application.rb +0 -10
  42. data/spec/dummy/config/initializers/ninetails.rb +1 -0
  43. data/spec/dummy/config/spring.rb +1 -0
  44. data/spec/dummy/db/schema.rb +10 -10
  45. data/spec/dummy/log/development.log +2499 -0
  46. data/spec/dummy/log/test.log +55690 -0
  47. data/spec/factories/page_sections.rb +15 -0
  48. data/spec/models/{section_spec.rb → page_section_spec.rb} +17 -36
  49. data/spec/models/page_spec.rb +9 -14
  50. data/spec/requests/middleware_spec.rb +80 -0
  51. data/spec/requests/page_revisions_spec.rb +41 -42
  52. data/spec/requests/pages_spec.rb +54 -1
  53. data/spec/requests/sections_spec.rb +32 -0
  54. data/spec/spec_helper.rb +4 -0
  55. data/spec/support/section_helpers.rb +27 -0
  56. metadata +74 -35
  57. data/app/controllers/ninetails/section_templates_controller.rb +0 -17
  58. data/app/models/ninetails/section.rb +0 -30
  59. data/db/schema.rb +0 -53
  60. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
  61. data/spec/dummy/config/initializers/inflections.rb +0 -16
  62. data/spec/dummy/config/initializers/mime_types.rb +0 -4
  63. data/spec/dummy/config/locales/en.yml +0 -23
  64. data/spec/dummy/public/404.html +0 -67
  65. data/spec/dummy/public/422.html +0 -67
  66. data/spec/dummy/public/500.html +0 -66
  67. data/spec/dummy/public/favicon.ico +0 -0
  68. data/spec/factories/sections.rb +0 -15
  69. data/spec/requests/section_templates_spec.rb +0 -17
@@ -1,3 +1,3 @@
1
1
  module Ninetails
2
- VERSION = "0.0.2"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -1,8 +1,8 @@
1
1
  namespace :ninetails_generate do
2
2
 
3
3
  desc "Generate a blank section as a hash"
4
- task :section, [:type] => :environment do |task, args|
5
- puts "SectionTemplate::#{args[:type]}".safe_constantize.new.serialize
4
+ task :section, [:type] => :environment do |_, args|
5
+ puts "Section::#{args[:type]}".safe_constantize.new.serialize
6
6
  end
7
7
 
8
8
  end
@@ -60,9 +60,9 @@ RSpec.describe Ninetails::Element do
60
60
  expect(structure[:type]).to eq "ExampleElement"
61
61
  end
62
62
 
63
- it "should have a key for each property with a blank string as the value" do
64
- expect(structure[:foo]).to eq ""
65
- expect(structure[:bar]).to eq ""
63
+ it "should have a key for each property with nil as the value" do
64
+ expect(structure[:foo]).to eq nil
65
+ expect(structure[:bar]).to eq nil
66
66
  end
67
67
  end
68
68
 
@@ -23,11 +23,11 @@ RSpec.describe Ninetails::Property do
23
23
  end
24
24
 
25
25
  it "should represent single-level structure correctly" do
26
- expect(SecondProperty.serialize).to eq({ finally: "" })
26
+ expect(SecondProperty.serialize).to eq({ finally: nil })
27
27
  end
28
28
 
29
29
  it "should represent nested properties with nested structure" do
30
- expect(FirstProperty.serialize).to eq({ first: "", second: { finally: "" }})
30
+ expect(FirstProperty.serialize).to eq({ first: nil, second: { finally: nil }})
31
31
  end
32
32
  end
33
33
 
@@ -16,11 +16,11 @@ describe Ninetails::PropertyType do
16
16
  end
17
17
 
18
18
  describe "serializing" do
19
- it "should be a new instance of the type when the type does not respond to #structure" do
20
- expect(string_property.serialize).to eq ""
19
+ it "should be nil when the type does not respond to #structure" do
20
+ expect(string_property.serialize).to eq nil
21
21
  end
22
22
 
23
- it "should use the structure when the type responds to #structure" do
23
+ it "should use the structure when the type responds to #serialize" do
24
24
  allow(String).to receive(:respond_to?) { true }
25
25
  allow(String).to receive(:serialize) { "HELLO" }
26
26
  expect(string_property.serialize).to eq "HELLO"
@@ -49,10 +49,10 @@ describe Ninetails::PropertyType do
49
49
  expect(string_property.serialized_values).to eq "foobar"
50
50
  end
51
51
 
52
- it "should raise a TypeError if you try to set the wrong type" do
52
+ it "should raise a ArgumentError if you try to set the wrong type" do
53
53
  expect {
54
54
  string_property.serialized_values = { foo: "bar" }
55
- }.to raise_error(TypeError)
55
+ }.to raise_error(ArgumentError)
56
56
  end
57
57
 
58
58
  it "should be possible to set with a hash if the property conforms to the Ninetails::PropertyStore" do
@@ -1,12 +1,12 @@
1
1
  require 'rails_helper'
2
2
 
3
- class ExampleSection < Ninetails::SectionTemplate
3
+ class ExampleSection < Ninetails::Section
4
4
  located_in :body
5
5
  has_element :foo, Element::Text
6
6
  has_element :bar, Element::Button
7
7
  end
8
8
 
9
- RSpec.describe Ninetails::SectionTemplate do
9
+ RSpec.describe Ninetails::Section do
10
10
 
11
11
  describe "position" do
12
12
  it "should be possible to set" do
@@ -1,5 +1,5 @@
1
- module SectionTemplate
2
- class Billboard < Ninetails::SectionTemplate
1
+ module Section
2
+ class Billboard < Ninetails::Section
3
3
 
4
4
  located_in :body
5
5
 
@@ -1,5 +1,5 @@
1
- module SectionTemplate
2
- class DocumentHead < Ninetails::SectionTemplate
1
+ module Section
2
+ class DocumentHead < Ninetails::Section
3
3
 
4
4
  located_in :head
5
5
 
@@ -0,0 +1,9 @@
1
+ module Section
2
+ class MinimalBillboard < Ninetails::Section
3
+
4
+ located_in :body
5
+
6
+ has_element :background_image, Element::Figure
7
+
8
+ end
9
+ end
@@ -1,4 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
2
7
  APP_PATH = File.expand_path('../../config/application', __FILE__)
3
8
  require_relative '../config/boot'
4
9
  require 'rails/commands'
@@ -1,4 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
2
7
  require_relative '../config/boot'
3
8
  require 'rake'
4
9
  Rake.application.run
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
7
+ require 'bundler/setup'
8
+ load Gem.bin_path('rspec-core', 'rspec')
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # This file loads spring without using Bundler, in order to be fast.
4
+ # It gets overwritten when you run the `spring binstub` command.
5
+
6
+ unless defined?(Spring)
7
+ require 'rubygems'
8
+ require 'bundler'
9
+
10
+ if (match = Bundler.default_lockfile.read.match(/^GEM$.*?^ (?: )*spring \((.*?)\)$.*?^$/m))
11
+ Gem.paths = { 'GEM_PATH' => [Bundler.bundle_path.to_s, *Gem.path].uniq }
12
+ gem 'spring', match[1]
13
+ require 'spring/binstub'
14
+ end
15
+ end
@@ -21,15 +21,5 @@ module Dummy
21
21
 
22
22
  # Do not swallow errors in after_commit/after_rollback callbacks.
23
23
  config.active_record.raise_in_transactional_callbacks = true
24
-
25
- config.autoload_paths += [
26
- "#{config.root}/app/components"
27
- ]
28
-
29
- config.eager_load_paths = [
30
- Rails.root.join("app/controllers").to_s,
31
- Rails.root.join("app/components").to_s,
32
- Rails.root.join("app/models").to_s
33
- ]
34
24
  end
35
25
  end
@@ -0,0 +1 @@
1
+ Ninetails::Config.key_style = :underscore
@@ -0,0 +1 @@
1
+ Spring.application_root = ''
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20151111085201) do
14
+ ActiveRecord::Schema.define(version: 20151120120538) do
15
15
 
16
16
  # These are extensions that must be enabled in order to support this database
17
17
  enable_extension "plpgsql"
@@ -31,6 +31,15 @@ ActiveRecord::Schema.define(version: 20151111085201) do
31
31
  t.string "message"
32
32
  end
33
33
 
34
+ create_table "ninetails_page_sections", force: :cascade do |t|
35
+ t.string "name"
36
+ t.string "type"
37
+ t.json "elements"
38
+ t.json "tags"
39
+ t.datetime "created_at", null: false
40
+ t.datetime "updated_at", null: false
41
+ end
42
+
34
43
  create_table "ninetails_pages", force: :cascade do |t|
35
44
  t.integer "current_revision_id"
36
45
  t.string "name"
@@ -41,13 +50,4 @@ ActiveRecord::Schema.define(version: 20151111085201) do
41
50
 
42
51
  add_index "ninetails_pages", ["current_revision_id"], name: "index_ninetails_pages_on_current_revision_id", using: :btree
43
52
 
44
- create_table "ninetails_sections", force: :cascade do |t|
45
- t.string "name"
46
- t.string "type"
47
- t.json "elements"
48
- t.json "tags"
49
- t.datetime "created_at", null: false
50
- t.datetime "updated_at", null: false
51
- end
52
-
53
53
  end
@@ -0,0 +1,2499 @@
1
+  (16.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreatePages (20151006093040)
5
+  (0.1ms) BEGIN
6
+  (32.6ms) CREATE TABLE "ninetails_pages" ("id" serial primary key, "current_revision_id" integer, "name" character varying, "url" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
7
+  (1.0ms) CREATE INDEX "index_ninetails_pages_on_current_revision_id" ON "ninetails_pages" ("current_revision_id")
8
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151006093040"]]
9
+  (6.0ms) COMMIT
10
+ Migrating to CreatePageRevisions (20151006093559)
11
+  (6.3ms) BEGIN
12
+  (8.6ms) CREATE TABLE "ninetails_page_revisions" ("id" serial primary key, "page_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
13
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151006093559"]]
14
+  (0.6ms) COMMIT
15
+ Migrating to CreateSections (20151006093754)
16
+  (0.3ms) BEGIN
17
+  (3.2ms) CREATE TABLE "ninetails_sections" ("id" serial primary key, "name" character varying, "type" character varying, "elements" json, "tags" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
18
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151006093754"]]
19
+  (0.4ms) COMMIT
20
+ Migrating to CreatePageRevisionSections (20151006094337)
21
+  (0.2ms) BEGIN
22
+  (2.4ms) CREATE TABLE "ninetails_page_revision_sections" ("id" serial primary key, "page_revision_id" integer, "section_id" integer)
23
+  (0.7ms) CREATE INDEX "index_ninetails_page_revision_sections_on_page_revision_id" ON "ninetails_page_revision_sections" ("page_revision_id")
24
+  (0.6ms) CREATE INDEX "index_ninetails_page_revision_sections_on_section_id" ON "ninetails_page_revision_sections" ("section_id")
25
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151006094337"]]
26
+  (0.3ms) COMMIT
27
+ Migrating to AddMessageToPageRevisions (20151111085201)
28
+  (0.2ms) BEGIN
29
+  (1.1ms) ALTER TABLE "ninetails_page_revisions" ADD "message" character varying
30
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151111085201"]]
31
+  (0.2ms) COMMIT
32
+ Migrating to RenameSectionsToPageSections (20151120120538)
33
+  (0.1ms) BEGIN
34
+  (0.8ms) ALTER TABLE "sections" RENAME TO "page_sections"
35
+  (0.1ms) ROLLBACK
36
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
37
+ Migrating to RenameSectionsToPageSections (20151120120538)
38
+  (0.1ms) BEGIN
39
+  (0.5ms) ALTER TABLE "ninetails_sections" RENAME TO "ninetails_page_sections"
40
+  (0.2ms) ALTER TABLE "public"."ninetails_sections_id_seq" RENAME TO "ninetails_page_sections_id_seq"
41
+  (0.2ms) ALTER INDEX "ninetails_sections_pkey" RENAME TO "ninetails_page_sections_pkey"
42
+  (0.9ms) ALTER TABLE "ninetails_page_revisions" RENAME COLUMN "section_id" TO "page_section_id"
43
+  (0.1ms) ROLLBACK
44
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
+ Migrating to RenameSectionsToPageSections (20151120120538)
46
+  (0.1ms) BEGIN
47
+  (0.4ms) ALTER TABLE "ninetails_sections" RENAME TO "ninetails_page_sections"
48
+  (0.1ms) ALTER TABLE "public"."ninetails_sections_id_seq" RENAME TO "ninetails_page_sections_id_seq"
49
+  (0.2ms) ALTER INDEX "ninetails_sections_pkey" RENAME TO "ninetails_page_sections_pkey"
50
+  (0.2ms) ALTER TABLE "ninetails_page_revision_sections" RENAME COLUMN "section_id" TO "page_section_id"
51
+  (0.1ms) ALTER INDEX "index_ninetails_page_revision_sections_on_section_id" RENAME TO "index_ninetails_page_revision_sections_on_page_section_id"
52
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151120120538"]]
53
+  (0.6ms) COMMIT
54
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
+  (2.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
56
+ FROM pg_constraint c
57
+ JOIN pg_class t1 ON c.conrelid = t1.oid
58
+ JOIN pg_class t2 ON c.confrelid = t2.oid
59
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
60
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
61
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
62
+ WHERE c.contype = 'f'
63
+ AND t1.relname = 'ninetails_page_revision_sections'
64
+ AND t3.nspname = ANY (current_schemas(false))
65
+ ORDER BY c.conname
66
+ 
67
+  (1.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
68
+ FROM pg_constraint c
69
+ JOIN pg_class t1 ON c.conrelid = t1.oid
70
+ JOIN pg_class t2 ON c.confrelid = t2.oid
71
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
72
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
73
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
74
+ WHERE c.contype = 'f'
75
+ AND t1.relname = 'ninetails_page_revisions'
76
+ AND t3.nspname = ANY (current_schemas(false))
77
+ ORDER BY c.conname
78
+
79
+  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
80
+ FROM pg_constraint c
81
+ JOIN pg_class t1 ON c.conrelid = t1.oid
82
+ JOIN pg_class t2 ON c.confrelid = t2.oid
83
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
84
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
85
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
86
+ WHERE c.contype = 'f'
87
+ AND t1.relname = 'ninetails_page_sections'
88
+ AND t3.nspname = ANY (current_schemas(false))
89
+ ORDER BY c.conname
90
+ 
91
+  (1.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
92
+ FROM pg_constraint c
93
+ JOIN pg_class t1 ON c.conrelid = t1.oid
94
+ JOIN pg_class t2 ON c.confrelid = t2.oid
95
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
96
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
97
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
98
+ WHERE c.contype = 'f'
99
+ AND t1.relname = 'ninetails_pages'
100
+ AND t3.nspname = ANY (current_schemas(false))
101
+ ORDER BY c.conname
102
+
103
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
105
+ Migrating to RenameSectionsToPageSections (20151120120538)
106
+  (0.1ms) BEGIN
107
+  (0.3ms) ALTER TABLE "ninetails_page_revision_sections" RENAME COLUMN "page_section_id" TO "section_id"
108
+  (0.2ms) ALTER INDEX "index_ninetails_page_revision_sections_on_page_section_id" RENAME TO "index_ninetails_page_revision_sections_on_section_id"
109
+  (0.2ms) ALTER TABLE "ninetails_page_sections" RENAME TO "ninetails_sections"
110
+  (0.1ms) ALTER TABLE "public"."ninetails_page_sections_id_seq" RENAME TO "ninetails_sections_id_seq"
111
+  (0.2ms) ALTER INDEX "ninetails_page_sections_pkey" RENAME TO "ninetails_sections_pkey"
112
+ SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20151120120538"]]
113
+  (6.1ms) COMMIT
114
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
115
+  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
116
+ FROM pg_constraint c
117
+ JOIN pg_class t1 ON c.conrelid = t1.oid
118
+ JOIN pg_class t2 ON c.confrelid = t2.oid
119
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
120
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
121
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
122
+ WHERE c.contype = 'f'
123
+ AND t1.relname = 'ninetails_page_revision_sections'
124
+ AND t3.nspname = ANY (current_schemas(false))
125
+ ORDER BY c.conname
126
+
127
+  (1.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
128
+ FROM pg_constraint c
129
+ JOIN pg_class t1 ON c.conrelid = t1.oid
130
+ JOIN pg_class t2 ON c.confrelid = t2.oid
131
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
132
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
133
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
134
+ WHERE c.contype = 'f'
135
+ AND t1.relname = 'ninetails_page_revisions'
136
+ AND t3.nspname = ANY (current_schemas(false))
137
+ ORDER BY c.conname
138
+ 
139
+  (1.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
140
+ FROM pg_constraint c
141
+ JOIN pg_class t1 ON c.conrelid = t1.oid
142
+ JOIN pg_class t2 ON c.confrelid = t2.oid
143
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
144
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
145
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
146
+ WHERE c.contype = 'f'
147
+ AND t1.relname = 'ninetails_pages'
148
+ AND t3.nspname = ANY (current_schemas(false))
149
+ ORDER BY c.conname
150
+
151
+  (1.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
152
+ FROM pg_constraint c
153
+ JOIN pg_class t1 ON c.conrelid = t1.oid
154
+ JOIN pg_class t2 ON c.confrelid = t2.oid
155
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
156
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
157
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
158
+ WHERE c.contype = 'f'
159
+ AND t1.relname = 'ninetails_sections'
160
+ AND t3.nspname = ANY (current_schemas(false))
161
+ ORDER BY c.conname
162
+ 
163
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
164
+ Migrating to RenameSectionsToPageSections (20151120120538)
165
+  (0.2ms) BEGIN
166
+  (0.4ms) ALTER TABLE "ninetails_sections" RENAME TO "ninetails_page_sections"
167
+  (0.1ms) ALTER TABLE "public"."ninetails_sections_id_seq" RENAME TO "ninetails_page_sections_id_seq"
168
+  (0.2ms) ALTER INDEX "ninetails_sections_pkey" RENAME TO "ninetails_page_sections_pkey"
169
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151120120538"]]
170
+  (0.3ms) COMMIT
171
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
172
+  (1.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
173
+ FROM pg_constraint c
174
+ JOIN pg_class t1 ON c.conrelid = t1.oid
175
+ JOIN pg_class t2 ON c.confrelid = t2.oid
176
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
177
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
178
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
179
+ WHERE c.contype = 'f'
180
+ AND t1.relname = 'ninetails_page_revision_sections'
181
+ AND t3.nspname = ANY (current_schemas(false))
182
+ ORDER BY c.conname
183
+ 
184
+  (1.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
185
+ FROM pg_constraint c
186
+ JOIN pg_class t1 ON c.conrelid = t1.oid
187
+ JOIN pg_class t2 ON c.confrelid = t2.oid
188
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
189
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
190
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
191
+ WHERE c.contype = 'f'
192
+ AND t1.relname = 'ninetails_page_revisions'
193
+ AND t3.nspname = ANY (current_schemas(false))
194
+ ORDER BY c.conname
195
+
196
+  (1.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
197
+ FROM pg_constraint c
198
+ JOIN pg_class t1 ON c.conrelid = t1.oid
199
+ JOIN pg_class t2 ON c.confrelid = t2.oid
200
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
201
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
202
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
203
+ WHERE c.contype = 'f'
204
+ AND t1.relname = 'ninetails_page_sections'
205
+ AND t3.nspname = ANY (current_schemas(false))
206
+ ORDER BY c.conname
207
+ 
208
+  (1.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
209
+ FROM pg_constraint c
210
+ JOIN pg_class t1 ON c.conrelid = t1.oid
211
+ JOIN pg_class t2 ON c.confrelid = t2.oid
212
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
213
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
214
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
215
+ WHERE c.contype = 'f'
216
+ AND t1.relname = 'ninetails_pages'
217
+ AND t3.nspname = ANY (current_schemas(false))
218
+ ORDER BY c.conname
219
+
220
+
221
+
222
+ Started GET "/" for ::1 at 2015-12-01 14:34:37 +0100
223
+
224
+ AbstractController::ActionNotFound (The action 'index' could not be found for Ninetails::PagesController):
225
+ actionpack (4.2.5) lib/abstract_controller/base.rb:132:in `process'
226
+ actionview (4.2.5) lib/action_view/rendering.rb:30:in `process'
227
+ actionpack (4.2.5) lib/action_controller/metal.rb:196:in `dispatch'
228
+ actionpack (4.2.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
229
+ actionpack (4.2.5) lib/action_controller/metal.rb:237:in `block in action'
230
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `call'
231
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
232
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:45:in `serve'
233
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
234
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
235
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
236
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
237
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
238
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
239
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
240
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
241
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
242
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
243
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
244
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
245
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
246
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
247
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
248
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
249
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
250
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
251
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
252
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
253
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
254
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
255
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
256
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
257
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
258
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
259
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
260
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
261
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
262
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
263
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
264
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
265
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
266
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
267
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
268
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
269
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
270
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
271
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
272
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
273
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
274
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
275
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
276
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
277
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
278
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
279
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
280
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
281
+
282
+
283
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.5ms)
284
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
285
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
286
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
287
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
288
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (33.8ms)
289
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms)
290
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.6ms)
291
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (82.5ms)
292
+
293
+
294
+ Started GET "/favicon.ico" for ::1 at 2015-12-01 14:34:38 +0100
295
+
296
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
297
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
298
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
299
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
300
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
301
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
302
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
303
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
304
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
305
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
306
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
307
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
308
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
309
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
310
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
311
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
312
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
313
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
314
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
315
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
316
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
317
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
318
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
319
+
320
+
321
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
322
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
323
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
324
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.7ms)
325
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
326
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.7ms)
327
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
328
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
329
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
330
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
331
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (29.5ms)
332
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
333
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
334
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (67.7ms)
335
+
336
+
337
+ Started GET "/sections" for ::1 at 2015-12-01 14:34:42 +0100
338
+ Processing by Ninetails::SectionsController#index as HTML
339
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
340
+
341
+
342
+ Started GET "/sections/MinimalBillboard" for ::1 at 2015-12-01 14:34:47 +0100
343
+ Processing by Ninetails::SectionsController#show as HTML
344
+ Parameters: {"id"=>"MinimalBillboard"}
345
+ Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.0ms)
346
+
347
+
348
+ Started GET "/sections" for 127.0.0.1 at 2015-12-02 16:14:34 +0100
349
+ Processing by Ninetails::SectionsController#index as HTML
350
+ Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 0.0ms)
351
+
352
+
353
+ Started GET "/sections" for 127.0.0.1 at 2015-12-02 16:14:56 +0100
354
+ Processing by Ninetails::SectionsController#index as HTML
355
+ Completed 200 OK in 16ms (Views: 0.6ms | ActiveRecord: 0.0ms)
356
+
357
+
358
+ Started GET "/favicon.ico" for 127.0.0.1 at 2015-12-02 16:14:56 +0100
359
+
360
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
361
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
362
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
363
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
364
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
365
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
366
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
367
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
368
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
369
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
370
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
371
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
372
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
373
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
374
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
375
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
376
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
377
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
378
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
379
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
380
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
381
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
382
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
383
+
384
+
385
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
386
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
387
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
388
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.2ms)
389
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
390
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.0ms)
391
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
392
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.5ms)
393
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
394
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
395
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (37.4ms)
396
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
397
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
398
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (77.5ms)
399
+
400
+
401
+ Started GET "/sections" for ::1 at 2015-12-03 10:39:41 +0100
402
+
403
+ NoMethodError (undefined method `new' for Ninetails::KeyConversion:Module):
404
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:43:in `build'
405
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `block in build'
406
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `each'
407
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `inject'
408
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `build'
409
+ railties (4.2.5) lib/rails/engine.rb:502:in `app'
410
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
411
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
412
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
413
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
414
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
415
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
416
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
417
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
418
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
419
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
420
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
421
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
422
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
423
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
424
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
425
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
426
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
427
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
428
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
429
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
430
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
431
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
432
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
433
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
434
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
435
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
436
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
437
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
438
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
439
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
440
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
441
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
442
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
443
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
444
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
445
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
446
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
447
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
448
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
449
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
450
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
451
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
452
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
453
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
454
+
455
+
456
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.1ms)
457
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
458
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
459
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.1ms)
460
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.6ms)
461
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
462
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
463
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
464
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (31.0ms)
465
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
466
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
467
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (74.4ms)
468
+
469
+
470
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:39:42 +0100
471
+
472
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007f91f6a2a2a8>):
473
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
474
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
475
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
476
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
477
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
478
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
479
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
480
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
481
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
482
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
483
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
484
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
485
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
486
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
487
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
488
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
489
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
490
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
491
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
492
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
493
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
494
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
495
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
496
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
497
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
498
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
499
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
500
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
501
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
502
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
503
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
504
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
505
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
506
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
507
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
508
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
509
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
510
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
511
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
512
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
513
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
514
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
515
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
516
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
517
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
518
+
519
+
520
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.9ms)
521
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
522
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
523
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (29.9ms)
524
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
525
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
526
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
527
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
528
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (26.2ms)
529
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms)
530
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
531
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (57.9ms)
532
+
533
+
534
+ Started GET "/sections" for ::1 at 2015-12-03 10:40:04 +0100
535
+
536
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007f91f6a2a2a8>):
537
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
538
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
539
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
540
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
541
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
542
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
543
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
544
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
545
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
546
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
547
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
548
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
549
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
550
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
551
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
552
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
553
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
554
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
555
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
556
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
557
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
558
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
559
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
560
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
561
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
562
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
563
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
564
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
565
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
566
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
567
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
568
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
569
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
570
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
571
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
572
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
573
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
574
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
575
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
576
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
577
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
578
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
579
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
580
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
581
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
582
+
583
+
584
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.1ms)
585
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
586
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
587
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.9ms)
588
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
589
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
590
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
591
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
592
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (31.4ms)
593
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
594
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
595
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (69.1ms)
596
+
597
+
598
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:40:05 +0100
599
+
600
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007f91f6a2a2a8>):
601
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
602
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
603
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
604
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
605
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
606
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
607
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
608
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
609
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
610
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
611
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
612
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
613
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
614
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
615
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
616
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
617
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
618
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
619
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
620
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
621
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
622
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
623
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
624
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
625
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
626
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
627
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
628
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
629
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
630
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
631
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
632
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
633
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
634
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
635
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
636
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
637
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
638
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
639
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
640
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
641
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
642
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
643
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
644
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
645
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
646
+
647
+
648
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
649
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
650
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
651
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.8ms)
652
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
653
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
654
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
655
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
656
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (29.0ms)
657
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
658
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
659
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (63.3ms)
660
+
661
+
662
+ Started GET "/sections" for ::1 at 2015-12-03 10:42:02 +0100
663
+
664
+ ArgumentError (wrong number of arguments (2 for 1)):
665
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:4:in `initialize'
666
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:43:in `new'
667
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:43:in `build'
668
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `block in build'
669
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `each'
670
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `inject'
671
+ actionpack (4.2.5) lib/action_dispatch/middleware/stack.rb:118:in `build'
672
+ railties (4.2.5) lib/rails/engine.rb:502:in `app'
673
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
674
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
675
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
676
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
677
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
678
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
679
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
680
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
681
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
682
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
683
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
684
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
685
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
686
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
687
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
688
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
689
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
690
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
691
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
692
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
693
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
694
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
695
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
696
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
697
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
698
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
699
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
700
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
701
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
702
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
703
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
704
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
705
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
706
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
707
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
708
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
709
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
710
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
711
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
712
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
713
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
714
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
715
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
716
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
717
+
718
+
719
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.3ms)
720
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
721
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
722
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.1ms)
723
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
724
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
725
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
726
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
727
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (26.2ms)
728
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
729
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
730
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (62.8ms)
731
+
732
+
733
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:42:03 +0100
734
+
735
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007fbcea1cb430>):
736
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
737
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
738
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
739
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
740
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
741
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
742
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
743
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
744
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
745
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
746
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
747
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
748
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
749
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
750
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
751
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
752
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
753
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
754
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
755
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
756
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
757
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
758
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
759
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
760
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
761
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
762
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
763
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
764
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
765
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
766
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
767
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
768
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
769
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
770
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
771
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
772
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
773
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
774
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
775
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
776
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
777
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
778
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
779
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
780
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
781
+
782
+
783
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
784
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
785
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
786
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.9ms)
787
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
788
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
789
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
790
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
791
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (30.4ms)
792
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
793
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
794
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (65.8ms)
795
+
796
+
797
+ Started GET "/sections" for ::1 at 2015-12-03 10:42:31 +0100
798
+
799
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007fbcea1cb430>):
800
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
801
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
802
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
803
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
804
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
805
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
806
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
807
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
808
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
809
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
810
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
811
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
812
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
813
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
814
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
815
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
816
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
817
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
818
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
819
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
820
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
821
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
822
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
823
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
824
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
825
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
826
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
827
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
828
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
829
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
830
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
831
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
832
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
833
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
834
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
835
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
836
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
837
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
838
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
839
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
840
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
841
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
842
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
843
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
844
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
845
+
846
+
847
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.1ms)
848
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
849
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
850
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.8ms)
851
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
852
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
853
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
854
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
855
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.1ms)
856
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
857
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
858
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (64.6ms)
859
+
860
+
861
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:42:31 +0100
862
+
863
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007fbcea1cb430>):
864
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
865
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
866
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
867
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
868
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
869
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
870
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
871
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
872
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
873
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
874
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
875
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
876
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
877
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
878
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
879
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
880
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
881
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
882
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
883
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
884
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
885
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
886
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
887
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
888
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
889
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
890
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
891
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
892
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
893
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
894
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
895
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
896
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
897
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
898
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
899
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
900
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
901
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
902
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
903
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
904
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
905
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
906
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
907
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
908
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
909
+
910
+
911
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
912
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
913
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
914
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.1ms)
915
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
916
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
917
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
918
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
919
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.3ms)
920
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
921
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
922
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (63.8ms)
923
+
924
+
925
+ Started GET "/sections" for ::1 at 2015-12-03 10:43:58 +0100
926
+
927
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007fbcea1cb430>):
928
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
929
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
930
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
931
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
932
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
933
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
934
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
935
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
936
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
937
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
938
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
939
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
940
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
941
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
942
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
943
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
944
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
945
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
946
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
947
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
948
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
949
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
950
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
951
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
952
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
953
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
954
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
955
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
956
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
957
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
958
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
959
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
960
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
961
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
962
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
963
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
964
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
965
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
966
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
967
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
968
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
969
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
970
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
971
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
972
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
973
+
974
+
975
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
976
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
977
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
978
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.5ms)
979
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
980
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
981
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
982
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
983
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (27.0ms)
984
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
985
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
986
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (58.3ms)
987
+
988
+
989
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:43:58 +0100
990
+
991
+ NoMethodError (undefined method `merge_into' for #<ActionDispatch::MiddlewareStack:0x007fbcea1cb430>):
992
+ railties (4.2.5) lib/rails/engine.rb:501:in `app'
993
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
994
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
995
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
996
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
997
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
998
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
999
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
1000
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
1001
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1002
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1003
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1004
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1005
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1006
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1007
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1008
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1009
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1010
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1011
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1012
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1013
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1014
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1015
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1016
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1017
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1018
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1019
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1020
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1021
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1022
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1023
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1024
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1025
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1026
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1027
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1028
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1029
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1030
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1031
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1032
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1033
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1034
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1035
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1036
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1037
+
1038
+
1039
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
1040
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1041
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
1042
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (30.9ms)
1043
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
1044
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1045
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1046
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
1047
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (26.4ms)
1048
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
1049
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1050
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (58.3ms)
1051
+
1052
+
1053
+ Started GET "/sections" for ::1 at 2015-12-03 10:44:04 +0100
1054
+ Processing by Ninetails::SectionsController#index as HTML
1055
+ Completed 200 OK in 19ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1056
+
1057
+ NoMethodError (undefined method `each' for #<String:0x007f8bfe2472a0>):
1058
+ rack (1.6.4) lib/rack/etag.rb:65:in `digest_body'
1059
+ rack (1.6.4) lib/rack/etag.rb:28:in `call'
1060
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1061
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1062
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1063
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1064
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1065
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1066
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1067
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1068
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1069
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1070
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1071
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1072
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1073
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1074
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1075
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1076
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1077
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1078
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1079
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1080
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1081
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1082
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1083
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1084
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1085
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1086
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1087
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1088
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1089
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1090
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1091
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1092
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1093
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1094
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1095
+
1096
+
1097
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms)
1098
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1099
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1100
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.2ms)
1101
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
1102
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1103
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1104
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
1105
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (27.9ms)
1106
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1107
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
1108
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (71.5ms)
1109
+
1110
+
1111
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:44:04 +0100
1112
+
1113
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1114
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1115
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1116
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1117
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1118
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1119
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1120
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1121
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1122
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1123
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1124
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1125
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1126
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1127
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1128
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1129
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1130
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1131
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1132
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1133
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1134
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1135
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1136
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1137
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1138
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1139
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1140
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1141
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1142
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1143
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1144
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1145
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1146
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1147
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1148
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1149
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1150
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1151
+
1152
+
1153
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
1154
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
1155
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1156
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.5ms)
1157
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
1158
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1159
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
1160
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1161
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.8ms)
1162
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1163
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1164
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (64.4ms)
1165
+
1166
+
1167
+ Started GET "/sections" for ::1 at 2015-12-03 10:44:51 +0100
1168
+ Processing by Ninetails::SectionsController#index as HTML
1169
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1170
+
1171
+ NoMethodError (undefined method `each' for #<String:0x007f8bfe64ce40>):
1172
+ rack (1.6.4) lib/rack/etag.rb:65:in `digest_body'
1173
+ rack (1.6.4) lib/rack/etag.rb:28:in `call'
1174
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1175
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1176
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1177
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1178
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1179
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1180
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1181
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1182
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1183
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1184
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1185
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1186
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1187
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1188
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1189
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1190
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1191
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1192
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1193
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1194
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1195
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1196
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1197
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1198
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1199
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1200
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1201
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1202
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1203
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1204
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1205
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1206
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1207
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1208
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1209
+
1210
+
1211
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.2ms)
1212
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1213
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1214
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.4ms)
1215
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
1216
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1217
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1218
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
1219
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (30.5ms)
1220
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
1221
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1222
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (69.8ms)
1223
+
1224
+
1225
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:44:51 +0100
1226
+
1227
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1228
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1229
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1230
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1231
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1232
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1233
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1234
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1235
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1236
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1237
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1238
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1239
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1240
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1241
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1242
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1243
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1244
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1245
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1246
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1247
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1248
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1249
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1250
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1251
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1252
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1253
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1254
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1255
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1256
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1257
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1258
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1259
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1260
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1261
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1262
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1263
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1264
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1265
+
1266
+
1267
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.1ms)
1268
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms)
1269
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1270
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.9ms)
1271
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
1272
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1273
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1274
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
1275
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (31.4ms)
1276
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
1277
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1278
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (67.7ms)
1279
+
1280
+
1281
+ Started GET "/sections" for ::1 at 2015-12-03 10:44:56 +0100
1282
+ Processing by Ninetails::SectionsController#index as HTML
1283
+ Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1284
+
1285
+ NoMethodError (undefined method `each' for #<String:0x007fcb8bdd7300>):
1286
+ rack (1.6.4) lib/rack/etag.rb:65:in `digest_body'
1287
+ rack (1.6.4) lib/rack/etag.rb:28:in `call'
1288
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1289
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1290
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1291
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1292
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1293
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1294
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1295
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1296
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1297
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1298
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1299
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1300
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1301
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1302
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1303
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1304
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1305
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1306
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1307
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1308
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1309
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1310
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1311
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1312
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1313
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1314
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1315
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1316
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1317
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1318
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1319
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1320
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1321
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1322
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1323
+
1324
+
1325
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.8ms)
1326
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1327
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1328
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (31.4ms)
1329
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
1330
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1331
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1332
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1333
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (31.2ms)
1334
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1335
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1336
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (68.1ms)
1337
+
1338
+
1339
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:44:57 +0100
1340
+
1341
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1342
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1343
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1344
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1345
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1346
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1347
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1348
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1349
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1350
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1351
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1352
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1353
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1354
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1355
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1356
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1357
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1358
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1359
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1360
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1361
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1362
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1363
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1364
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1365
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1366
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1367
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1368
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1369
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1370
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1371
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1372
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1373
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1374
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1375
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1376
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1377
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1378
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1379
+
1380
+
1381
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
1382
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1383
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
1384
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.3ms)
1385
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
1386
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1387
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1388
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
1389
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (30.1ms)
1390
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1391
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
1392
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (67.0ms)
1393
+
1394
+
1395
+ Started POST "/console/repl_sessions/fcb2245851db33bc5ad935bf97681e82/trace" for ::1 at 2015-12-03 10:45:10 +0100
1396
+
1397
+
1398
+ Started POST "/console/repl_sessions/fcb2245851db33bc5ad935bf97681e82/trace" for ::1 at 2015-12-03 10:45:15 +0100
1399
+
1400
+
1401
+ Started POST "/console/repl_sessions/fcb2245851db33bc5ad935bf97681e82/trace" for ::1 at 2015-12-03 10:45:17 +0100
1402
+
1403
+
1404
+ Started POST "/console/repl_sessions/fcb2245851db33bc5ad935bf97681e82/trace" for ::1 at 2015-12-03 10:45:18 +0100
1405
+
1406
+
1407
+ Started POST "/console/repl_sessions/fcb2245851db33bc5ad935bf97681e82/trace" for ::1 at 2015-12-03 10:45:21 +0100
1408
+
1409
+
1410
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:45:36 +0100
1411
+
1412
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1413
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1414
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1415
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1416
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1417
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1418
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1419
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1420
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1421
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1422
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1423
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1424
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1425
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1426
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1427
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1428
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1429
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1430
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1431
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1432
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1433
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1434
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1435
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1436
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1437
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1438
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1439
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1440
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1441
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1442
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1443
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1444
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1445
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1446
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1447
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1448
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1449
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1450
+
1451
+
1452
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
1453
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1454
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1455
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.4ms)
1456
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
1457
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1458
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1459
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1460
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (30.3ms)
1461
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
1462
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1463
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (65.3ms)
1464
+
1465
+
1466
+ Started GET "/sections" for ::1 at 2015-12-03 10:46:22 +0100
1467
+ Processing by Ninetails::SectionsController#index as HTML
1468
+ Completed 200 OK in 17ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1469
+
1470
+
1471
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:46:22 +0100
1472
+
1473
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1474
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1475
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1476
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1477
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1478
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1479
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1480
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1481
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1482
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1483
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1484
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1485
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1486
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1487
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1488
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1489
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1490
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1491
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1492
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1493
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1494
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1495
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1496
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1497
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1498
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1499
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1500
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1501
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1502
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1503
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1504
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1505
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1506
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1507
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1508
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1509
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1510
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1511
+
1512
+
1513
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.2ms)
1514
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1515
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1516
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.0ms)
1517
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
1518
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1519
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1520
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1521
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (30.2ms)
1522
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
1523
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
1524
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (67.0ms)
1525
+
1526
+
1527
+ Started GET "/sections" for ::1 at 2015-12-03 10:46:39 +0100
1528
+ Processing by Ninetails::SectionsController#index as HTML
1529
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1530
+
1531
+
1532
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:46:39 +0100
1533
+
1534
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1535
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1536
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1537
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1538
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1539
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1540
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1541
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1542
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1543
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1544
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1545
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1546
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1547
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1548
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1549
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1550
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1551
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1552
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1553
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1554
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1555
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1556
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1557
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1558
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1559
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1560
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1561
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1562
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1563
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1564
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1565
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1566
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1567
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1568
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1569
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1570
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1571
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1572
+
1573
+
1574
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
1575
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1576
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1577
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.2ms)
1578
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
1579
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1580
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1581
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1582
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (29.7ms)
1583
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1584
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
1585
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (65.0ms)
1586
+
1587
+
1588
+ Started GET "/sections" for ::1 at 2015-12-03 10:46:46 +0100
1589
+ Processing by Ninetails::SectionsController#index as HTML
1590
+ Completed 200 OK in 17ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1591
+
1592
+
1593
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:46:46 +0100
1594
+
1595
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1596
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1597
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1598
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1599
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1600
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1601
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1602
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1603
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1604
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1605
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1606
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1607
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1608
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1609
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1610
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1611
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1612
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1613
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1614
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1615
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1616
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1617
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1618
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1619
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1620
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1621
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1622
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1623
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1624
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1625
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1626
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1627
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1628
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1629
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1630
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1631
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1632
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1633
+
1634
+
1635
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
1636
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1637
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1638
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.7ms)
1639
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
1640
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1641
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1642
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
1643
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.1ms)
1644
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1645
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1646
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (64.2ms)
1647
+
1648
+
1649
+ Started GET "/sections" for ::1 at 2015-12-03 10:47:26 +0100
1650
+ Processing by Ninetails::SectionsController#index as HTML
1651
+ Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1652
+
1653
+
1654
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:52:54 +0100
1655
+
1656
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1657
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1658
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1659
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1660
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1661
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1662
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1663
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1664
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1665
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1666
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1667
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1668
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1669
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1670
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1671
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1672
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1673
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1674
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1675
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1676
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1677
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1678
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1679
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1680
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1681
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1682
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1683
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1684
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1685
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1686
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1687
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1688
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1689
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1690
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1691
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1692
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1693
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1694
+
1695
+
1696
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.1ms)
1697
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1698
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1699
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.4ms)
1700
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
1701
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1702
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1703
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
1704
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.0ms)
1705
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
1706
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1707
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (61.9ms)
1708
+
1709
+
1710
+ Started GET "/sections" for ::1 at 2015-12-03 10:53:01 +0100
1711
+ Processing by Ninetails::SectionsController#index as HTML
1712
+ Completed 200 OK in 20ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1713
+
1714
+
1715
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:53:02 +0100
1716
+
1717
+ NoMethodError (undefined method `body' for ["Not Found"]:Array):
1718
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:10:in `call'
1719
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1720
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1721
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1722
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1723
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1724
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1725
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1726
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1727
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1728
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1729
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1730
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1731
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1732
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1733
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1734
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1735
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1736
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1737
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1738
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1739
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1740
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1741
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1742
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1743
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1744
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1745
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1746
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1747
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1748
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1749
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1750
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1751
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1752
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1753
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1754
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1755
+
1756
+
1757
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.9ms)
1758
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1759
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1760
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (32.7ms)
1761
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
1762
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1763
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1764
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.4ms)
1765
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.9ms)
1766
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1767
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1768
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (66.3ms)
1769
+
1770
+
1771
+ Started GET "/sections" for ::1 at 2015-12-03 10:54:10 +0100
1772
+ Processing by Ninetails::SectionsController#index as HTML
1773
+ Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1774
+
1775
+
1776
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:54:30 +0100
1777
+
1778
+
1779
+ Started GET "/sections" for ::1 at 2015-12-03 10:55:37 +0100
1780
+ Processing by Ninetails::SectionsController#index as HTML
1781
+ Completed 200 OK in 19ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1782
+
1783
+
1784
+ Started GET "/favicon.ico" for ::1 at 2015-12-03 10:55:37 +0100
1785
+
1786
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1787
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1788
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1789
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1790
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1791
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1792
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1793
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1794
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1795
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1796
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1797
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1798
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1799
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1800
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1801
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1802
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1803
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1804
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1805
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1806
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1807
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1808
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1809
+
1810
+
1811
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1812
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1813
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
1814
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.9ms)
1815
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1816
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.5ms)
1817
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
1818
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
1819
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
1820
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
1821
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (26.8ms)
1822
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms)
1823
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
1824
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (57.8ms)
1825
+
1826
+
1827
+ Started GET "/sections" for ::1 at 2015-12-03 10:59:07 +0100
1828
+ Processing by Ninetails::SectionsController#index as HTML
1829
+ Completed 200 OK in 18ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1830
+
1831
+ TypeError (no implicit conversion of true into String):
1832
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:21:in `include?'
1833
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:21:in `modify_keys'
1834
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:13:in `call'
1835
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1836
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1837
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1838
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1839
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1840
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1841
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1842
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1843
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1844
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1845
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1846
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1847
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1848
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1849
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1850
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1851
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1852
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1853
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1854
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1855
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1856
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1857
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1858
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1859
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1860
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1861
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1862
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1863
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1864
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1865
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1866
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1867
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1868
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1869
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1870
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1871
+
1872
+
1873
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms)
1874
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1875
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1876
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.5ms)
1877
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
1878
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
1879
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
1880
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1881
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (33.7ms)
1882
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
1883
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
1884
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (73.8ms)
1885
+
1886
+
1887
+ Started GET "/sections" for ::1 at 2015-12-03 10:59:37 +0100
1888
+ Processing by Ninetails::SectionsController#index as HTML
1889
+ Completed 200 OK in 20ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1890
+
1891
+
1892
+ Started GET "/sections" for ::1 at 2015-12-03 11:00:21 +0100
1893
+ Processing by Ninetails::SectionsController#index as HTML
1894
+ Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1895
+
1896
+
1897
+ Started GET "/sections" for ::1 at 2015-12-03 11:02:18 +0100
1898
+ Processing by Ninetails::SectionsController#index as HTML
1899
+ Completed 200 OK in 18ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1900
+
1901
+
1902
+ Started GET "/" for 127.0.0.1 at 2015-12-21 13:22:13 +0100
1903
+
1904
+ AbstractController::ActionNotFound (The action 'index' could not be found for Ninetails::PagesController):
1905
+ actionpack (4.2.5) lib/abstract_controller/base.rb:132:in `process'
1906
+ actionview (4.2.5) lib/action_view/rendering.rb:30:in `process'
1907
+ actionpack (4.2.5) lib/action_controller/metal.rb:196:in `dispatch'
1908
+ actionpack (4.2.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1909
+ actionpack (4.2.5) lib/action_controller/metal.rb:237:in `block in action'
1910
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `call'
1911
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
1912
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:45:in `serve'
1913
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1914
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
1915
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
1916
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
1917
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:9:in `call'
1918
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1919
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
1920
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
1921
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1922
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1923
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
1924
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
1925
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
1926
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
1927
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1928
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
1929
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1930
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
1931
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
1932
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
1933
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1934
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
1935
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
1936
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
1937
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1938
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1939
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1940
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1941
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
1942
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1943
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
1944
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
1945
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1946
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1947
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1948
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
1949
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1950
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1951
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1952
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1953
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
1954
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
1955
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
1956
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1957
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1958
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1959
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1960
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1961
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1962
+
1963
+
1964
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.3ms)
1965
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.6ms)
1966
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.4ms)
1967
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
1968
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
1969
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (34.9ms)
1970
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.4ms)
1971
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
1972
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (84.7ms)
1973
+
1974
+
1975
+ Started GET "/pages/%2f" for 127.0.0.1 at 2015-12-21 13:22:23 +0100
1976
+ Processing by Ninetails::PagesController#show as HTML
1977
+ Parameters: {"id"=>"/"}
1978
+ Ninetails::Page Load (2.1ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
1979
+ Completed 404 Not Found in 51ms (Views: 0.2ms | ActiveRecord: 19.2ms)
1980
+
1981
+
1982
+ Started GET "/pages/%2f.json" for 127.0.0.1 at 2015-12-21 13:22:33 +0100
1983
+ Processing by Ninetails::PagesController#show as JSON
1984
+ Parameters: {"id"=>"/"}
1985
+ Ninetails::Page Load (0.1ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
1986
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
1987
+
1988
+
1989
+ Started GET "/pages/%2f.json" for 127.0.0.1 at 2015-12-21 13:24:17 +0100
1990
+ Processing by Ninetails::PagesController#show as JSON
1991
+ Parameters: {"id"=>"/"}
1992
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
1993
+ Completed 404 Not Found in 6ms (Views: 0.1ms | ActiveRecord: 0.7ms)
1994
+
1995
+
1996
+ Started GET "/favicon.ico" for 127.0.0.1 at 2015-12-21 13:24:17 +0100
1997
+
1998
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
1999
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2000
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
2001
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2002
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
2003
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
2004
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2005
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2006
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2007
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
2008
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2009
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2010
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2011
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2012
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
2013
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2014
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
2015
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2016
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2017
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2018
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2019
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2020
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2021
+
2022
+
2023
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2024
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
2025
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2026
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.7ms)
2027
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
2028
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (71.6ms)
2029
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.4ms)
2030
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
2031
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
2032
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
2033
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.0ms)
2034
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
2035
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
2036
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (62.1ms)
2037
+
2038
+
2039
+ Started GET "/" for 127.0.0.1 at 2015-12-21 13:25:06 +0100
2040
+
2041
+ AbstractController::ActionNotFound (The action 'index' could not be found for Ninetails::PagesController):
2042
+ actionpack (4.2.5) lib/abstract_controller/base.rb:132:in `process'
2043
+ actionview (4.2.5) lib/action_view/rendering.rb:30:in `process'
2044
+ actionpack (4.2.5) lib/action_controller/metal.rb:196:in `dispatch'
2045
+ actionpack (4.2.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2046
+ actionpack (4.2.5) lib/action_controller/metal.rb:237:in `block in action'
2047
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `call'
2048
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
2049
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:45:in `serve'
2050
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2051
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
2052
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
2053
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
2054
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:9:in `call'
2055
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2056
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
2057
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
2058
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
2059
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2060
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
2061
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
2062
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
2063
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
2064
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2065
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
2066
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2067
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
2068
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
2069
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
2070
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2071
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
2072
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
2073
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
2074
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2075
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2076
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2077
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2078
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
2079
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2080
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
2081
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
2082
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2083
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2084
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2085
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
2086
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2087
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2088
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2089
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2090
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
2091
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2092
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
2093
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2094
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2095
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2096
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2097
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2098
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2099
+
2100
+
2101
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms)
2102
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
2103
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
2104
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
2105
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
2106
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.2ms)
2107
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.1ms)
2108
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.2ms)
2109
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (60.8ms)
2110
+
2111
+
2112
+ Started GET "/pages/%2f" for 127.0.0.1 at 2015-12-21 13:25:14 +0100
2113
+ Processing by Ninetails::PagesController#show as HTML
2114
+ Parameters: {"id"=>"/"}
2115
+ Ninetails::Page Load (0.1ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2116
+ Completed 404 Not Found in 4ms (Views: 0.1ms | ActiveRecord: 0.8ms)
2117
+
2118
+
2119
+ Started GET "/pages/%2f" for 127.0.0.1 at 2015-12-21 13:26:09 +0100
2120
+ Processing by Ninetails::PagesController#show as HTML
2121
+ Parameters: {"id"=>"/"}
2122
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2123
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2124
+
2125
+
2126
+ Started GET "/pages" for 127.0.0.1 at 2015-12-21 13:26:11 +0100
2127
+
2128
+ ActionController::RoutingError (No route matches [GET] "/pages"):
2129
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2130
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
2131
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2132
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
2133
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
2134
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2135
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2136
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2137
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
2138
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2139
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2140
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2141
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2142
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
2143
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2144
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
2145
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2146
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2147
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2148
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2149
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2150
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2151
+
2152
+
2153
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2154
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2155
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
2156
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2157
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2158
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (52.5ms)
2159
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
2160
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
2161
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
2162
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
2163
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (27.6ms)
2164
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
2165
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.4ms)
2166
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (61.5ms)
2167
+
2168
+
2169
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:26:25 +0100
2170
+ Processing by Ninetails::PagesController#show as JSON
2171
+ Parameters: {"id"=>"/"}
2172
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2173
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2174
+
2175
+
2176
+ Started GET "/favicon.ico" for ::1 at 2015-12-21 13:26:25 +0100
2177
+
2178
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
2179
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2180
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
2181
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2182
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
2183
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
2184
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2185
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2186
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2187
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
2188
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2189
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2190
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2191
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2192
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
2193
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2194
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
2195
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2196
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2197
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2198
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2199
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2200
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2201
+
2202
+
2203
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2204
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2205
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2206
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
2207
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2208
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.6ms)
2209
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
2210
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.3ms)
2211
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
2212
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
2213
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (29.8ms)
2214
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
2215
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
2216
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (62.9ms)
2217
+
2218
+
2219
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:26:30 +0100
2220
+ Processing by Ninetails::PagesController#show as JSON
2221
+ Parameters: {"id"=>"/"}
2222
+ Ninetails::Page Load (0.1ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2223
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
2224
+
2225
+
2226
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:03 +0100
2227
+ Processing by Ninetails::PagesController#show as JSON
2228
+ Parameters: {"id"=>"/"}
2229
+ Ninetails::Page Load (0.3ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2230
+ Completed 404 Not Found in 25ms (Views: 0.1ms | ActiveRecord: 1.6ms)
2231
+
2232
+
2233
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:04 +0100
2234
+ Processing by Ninetails::PagesController#show as JSON
2235
+ Parameters: {"id"=>"/"}
2236
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2237
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2238
+
2239
+
2240
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:04 +0100
2241
+ Processing by Ninetails::PagesController#show as JSON
2242
+ Parameters: {"id"=>"/"}
2243
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2244
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
2245
+
2246
+
2247
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:05 +0100
2248
+ Processing by Ninetails::PagesController#show as JSON
2249
+ Parameters: {"id"=>"/"}
2250
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2251
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2252
+
2253
+
2254
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:05 +0100
2255
+ Processing by Ninetails::PagesController#show as JSON
2256
+ Parameters: {"id"=>"/"}
2257
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2258
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2259
+
2260
+
2261
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:05 +0100
2262
+ Processing by Ninetails::PagesController#show as JSON
2263
+ Parameters: {"id"=>"/"}
2264
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2265
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2266
+
2267
+
2268
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:06 +0100
2269
+ Processing by Ninetails::PagesController#show as JSON
2270
+ Parameters: {"id"=>"/"}
2271
+ Ninetails::Page Load (0.1ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2272
+ Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
2273
+
2274
+
2275
+ Started GET "/pages/%2f.json" for ::1 at 2015-12-21 13:27:30 +0100
2276
+ Processing by Ninetails::PagesController#show as JSON
2277
+ Parameters: {"id"=>"/"}
2278
+ Ninetails::Page Load (0.1ms) SELECT "ninetails_pages".* FROM "ninetails_pages" WHERE "ninetails_pages"."url" = $1 LIMIT 1 [["url", "/"]]
2279
+ Completed 404 Not Found in 4ms (ActiveRecord: 0.6ms)
2280
+
2281
+ ActiveRecord::RecordNotFound (Couldn't find Ninetails::Page):
2282
+ activerecord (4.2.5) lib/active_record/core.rb:196:in `find_by!'
2283
+ /Users/damien/projects/izettle/ninetails/app/controllers/ninetails/pages_controller.rb:5:in `show'
2284
+ actionpack (4.2.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2285
+ actionpack (4.2.5) lib/abstract_controller/base.rb:198:in `process_action'
2286
+ actionpack (4.2.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
2287
+ actionpack (4.2.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2288
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
2289
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
2290
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
2291
+ actionpack (4.2.5) lib/abstract_controller/callbacks.rb:19:in `process_action'
2292
+ actionpack (4.2.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
2293
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2294
+ activesupport (4.2.5) lib/active_support/notifications.rb:164:in `block in instrument'
2295
+ activesupport (4.2.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2296
+ activesupport (4.2.5) lib/active_support/notifications.rb:164:in `instrument'
2297
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2298
+ activerecord (4.2.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2299
+ actionpack (4.2.5) lib/abstract_controller/base.rb:137:in `process'
2300
+ actionview (4.2.5) lib/action_view/rendering.rb:30:in `process'
2301
+ actionpack (4.2.5) lib/action_controller/metal.rb:196:in `dispatch'
2302
+ actionpack (4.2.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2303
+ actionpack (4.2.5) lib/action_controller/metal.rb:237:in `block in action'
2304
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `call'
2305
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
2306
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:45:in `serve'
2307
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2308
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
2309
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
2310
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
2311
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:9:in `call'
2312
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2313
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
2314
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
2315
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
2316
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2317
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
2318
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
2319
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
2320
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
2321
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2322
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
2323
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2324
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
2325
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
2326
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
2327
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2328
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
2329
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
2330
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
2331
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2332
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2333
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2334
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2335
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
2336
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2337
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
2338
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
2339
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2340
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2341
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2342
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
2343
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2344
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2345
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2346
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2347
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
2348
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2349
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
2350
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2351
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2352
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2353
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2354
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2355
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2356
+
2357
+
2358
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms)
2359
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
2360
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2361
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.8ms)
2362
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.3ms)
2363
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
2364
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
2365
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms)
2366
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (28.3ms)
2367
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.6ms)
2368
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
2369
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (67.3ms)
2370
+
2371
+
2372
+ Started GET "/pages" for ::1 at 2015-12-21 13:27:54 +0100
2373
+ Processing by Ninetails::PagesController#index as HTML
2374
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
2375
+
2376
+ ActionView::MissingTemplate (Missing template ninetails/pages/index, ninetails/application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder]}. Searched in:
2377
+ * "/Users/damien/projects/izettle/ninetails/app/views"
2378
+ ):
2379
+ actionview (4.2.5) lib/action_view/path_set.rb:46:in `find'
2380
+ actionview (4.2.5) lib/action_view/lookup_context.rb:121:in `find'
2381
+ actionview (4.2.5) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
2382
+ actionview (4.2.5) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
2383
+ actionview (4.2.5) lib/action_view/renderer/template_renderer.rb:8:in `render'
2384
+ actionview (4.2.5) lib/action_view/renderer/renderer.rb:42:in `render_template'
2385
+ actionview (4.2.5) lib/action_view/renderer/renderer.rb:23:in `render'
2386
+ actionview (4.2.5) lib/action_view/rendering.rb:100:in `_render_template'
2387
+ actionview (4.2.5) lib/action_view/rendering.rb:83:in `render_to_body'
2388
+ actionpack (4.2.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2389
+ actionpack (4.2.5) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
2390
+ actionpack (4.2.5) lib/abstract_controller/rendering.rb:25:in `render'
2391
+ actionpack (4.2.5) lib/action_controller/metal/rendering.rb:16:in `render'
2392
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
2393
+ activesupport (4.2.5) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2394
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
2395
+ activesupport (4.2.5) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2396
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
2397
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
2398
+ activerecord (4.2.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2399
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:43:in `render'
2400
+ actionpack (4.2.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2401
+ actionpack (4.2.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2402
+ actionpack (4.2.5) lib/abstract_controller/base.rb:198:in `process_action'
2403
+ actionpack (4.2.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
2404
+ actionpack (4.2.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2405
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
2406
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
2407
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
2408
+ actionpack (4.2.5) lib/abstract_controller/callbacks.rb:19:in `process_action'
2409
+ actionpack (4.2.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
2410
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2411
+ activesupport (4.2.5) lib/active_support/notifications.rb:164:in `block in instrument'
2412
+ activesupport (4.2.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2413
+ activesupport (4.2.5) lib/active_support/notifications.rb:164:in `instrument'
2414
+ actionpack (4.2.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2415
+ activerecord (4.2.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2416
+ actionpack (4.2.5) lib/abstract_controller/base.rb:137:in `process'
2417
+ actionview (4.2.5) lib/action_view/rendering.rb:30:in `process'
2418
+ actionpack (4.2.5) lib/action_controller/metal.rb:196:in `dispatch'
2419
+ actionpack (4.2.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2420
+ actionpack (4.2.5) lib/action_controller/metal.rb:237:in `block in action'
2421
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `call'
2422
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
2423
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:45:in `serve'
2424
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2425
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
2426
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
2427
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
2428
+ /Users/damien/projects/izettle/ninetails/lib/ninetails/key_conversion.rb:9:in `call'
2429
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2430
+ railties (4.2.5) lib/rails/railtie.rb:194:in `public_send'
2431
+ railties (4.2.5) lib/rails/railtie.rb:194:in `method_missing'
2432
+ actionpack (4.2.5) lib/action_dispatch/routing/mapper.rb:51:in `serve'
2433
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2434
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `each'
2435
+ actionpack (4.2.5) lib/action_dispatch/journey/router.rb:30:in `serve'
2436
+ actionpack (4.2.5) lib/action_dispatch/routing/route_set.rb:817:in `call'
2437
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
2438
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2439
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
2440
+ actionpack (4.2.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2441
+ activerecord (4.2.5) lib/active_record/query_cache.rb:36:in `call'
2442
+ activerecord (4.2.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
2443
+ activerecord (4.2.5) lib/active_record/migration.rb:377:in `call'
2444
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2445
+ activesupport (4.2.5) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
2446
+ activesupport (4.2.5) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
2447
+ activesupport (4.2.5) lib/active_support/callbacks.rb:81:in `run_callbacks'
2448
+ actionpack (4.2.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2449
+ actionpack (4.2.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2450
+ actionpack (4.2.5) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2451
+ actionpack (4.2.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2452
+ web-console (2.2.1) lib/web_console/middleware.rb:39:in `call'
2453
+ actionpack (4.2.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2454
+ railties (4.2.5) lib/rails/rack/logger.rb:38:in `call_app'
2455
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `block in call'
2456
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2457
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2458
+ activesupport (4.2.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2459
+ railties (4.2.5) lib/rails/rack/logger.rb:20:in `call'
2460
+ actionpack (4.2.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2461
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2462
+ activesupport (4.2.5) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2463
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2464
+ actionpack (4.2.5) lib/action_dispatch/middleware/static.rb:116:in `call'
2465
+ railties (4.2.5) lib/rails/engine.rb:518:in `call'
2466
+ railties (4.2.5) lib/rails/application.rb:165:in `call'
2467
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
2468
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2469
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2470
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2471
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2472
+ /Users/damien/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2473
+
2474
+
2475
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
2476
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2477
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
2478
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.5/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (34.8ms)
2479
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (0.2ms)
2480
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
2481
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
2482
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.2ms)
2483
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (27.2ms)
2484
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (0.3ms)
2485
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
2486
+ Rendered /Users/damien/.rvm/gems/ruby-2.2.2/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (60.9ms)
2487
+
2488
+
2489
+ Started GET "/pages.json" for ::1 at 2015-12-21 13:28:06 +0100
2490
+ Processing by Ninetails::PagesController#index as JSON
2491
+ Rendered /Users/damien/projects/izettle/ninetails/app/views/ninetails/pages/index.json.jbuilder (1.4ms)
2492
+ Completed 200 OK in 2ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2493
+
2494
+
2495
+ Started GET "/pages.json" for ::1 at 2015-12-21 13:29:14 +0100
2496
+ Processing by Ninetails::PagesController#index as JSON
2497
+ Ninetails::Page Load (0.2ms) SELECT "ninetails_pages".* FROM "ninetails_pages"
2498
+ Rendered /Users/damien/projects/izettle/ninetails/app/views/ninetails/pages/index.json.jbuilder (2.6ms)
2499
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.7ms)