bird_on_it 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +180 -0
- data/lib/bird_on_it.rb +1 -2
- data/lib/bird_on_it/decorator.rb +2 -0
- data/lib/bird_on_it/version.rb +1 -1
- data/test/bird_on_it_test.rb +28 -24
- data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
- data/test/dummy/app/controllers/tote_bags_controller.rb +62 -0
- data/test/dummy/app/decorators/tote_bag_decorator.rb +23 -0
- data/test/dummy/app/models/tote_bag.rb +5 -0
- data/test/dummy/app/views/tote_bags/_form.html.erb +29 -0
- data/test/dummy/app/views/tote_bags/edit.html.erb +6 -0
- data/test/dummy/app/views/tote_bags/index.html.erb +31 -0
- data/test/dummy/app/views/tote_bags/new.html.erb +5 -0
- data/test/dummy/app/views/tote_bags/show.html.erb +20 -0
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140314082207_create_tote_bags.rb +11 -0
- data/test/dummy/db/schema.rb +24 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +2477 -0
- data/test/dummy/log/test.log +41 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/580936cd6180b0b516e323ab3b9290bc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a77bf3dfc15bd59697d7d51fa6a8ebaa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ab3c84b0c7e5ccef7125dd305453cb65 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c530934da9c9116acfdee38204d3cf73 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ce526a9f65d6aa96f21611970cabe56c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fa809407dd24d48afa01dc34b11c60b6 +0 -0
- metadata +57 -7
- data/README.rdoc +0 -3
- data/test/dummy/app/decorators/canvas_bag_decorator.rb +0 -7
- data/test/dummy/app/models/canvas_bag.rb +0 -7
@@ -0,0 +1,29 @@
|
|
1
|
+
<%= form_for(@tote_bag) do |f| %>
|
2
|
+
<% if @tote_bag.errors.any? %>
|
3
|
+
<div id="error_explanation">
|
4
|
+
<h2><%= pluralize(@tote_bag.errors.count, "error") %> prohibited this tote_bag from being saved:</h2>
|
5
|
+
|
6
|
+
<ul>
|
7
|
+
<% @tote_bag.errors.full_messages.each do |msg| %>
|
8
|
+
<li><%= msg %></li>
|
9
|
+
<% end %>
|
10
|
+
</ul>
|
11
|
+
</div>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<div class="field">
|
15
|
+
<%= f.label :colour %><br>
|
16
|
+
<%= f.text_field :colour %>
|
17
|
+
</div>
|
18
|
+
<div class="field">
|
19
|
+
<%= f.label :material %><br>
|
20
|
+
<%= f.text_field :material %>
|
21
|
+
</div>
|
22
|
+
<div class="field">
|
23
|
+
<%= f.label :straps %><br>
|
24
|
+
<%= f.check_box :straps %>
|
25
|
+
</div>
|
26
|
+
<div class="actions">
|
27
|
+
<%= f.submit %>
|
28
|
+
</div>
|
29
|
+
<% end %>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<h1>Listing tote_bags</h1>
|
2
|
+
|
3
|
+
<table>
|
4
|
+
<thead>
|
5
|
+
<tr>
|
6
|
+
<th>Colour</th>
|
7
|
+
<th>Material</th>
|
8
|
+
<th>Straps</th>
|
9
|
+
<th></th>
|
10
|
+
<th></th>
|
11
|
+
<th></th>
|
12
|
+
</tr>
|
13
|
+
</thead>
|
14
|
+
|
15
|
+
<tbody>
|
16
|
+
<% @tote_bags.each do |tote_bag| %>
|
17
|
+
<tr class="<%= tote_bag.css_classes %>">
|
18
|
+
<td><%= tote_bag.colour %></td>
|
19
|
+
<td><%= tote_bag.material %></td>
|
20
|
+
<td><%= tote_bag.straps %></td>
|
21
|
+
<td><%= link_to 'Show', tote_bag %></td>
|
22
|
+
<td><%= link_to 'Edit', edit_tote_bag_path(tote_bag.object) %></td>
|
23
|
+
<td><%= link_to 'Destroy', tote_bag, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
24
|
+
</tr>
|
25
|
+
<% end %>
|
26
|
+
</tbody>
|
27
|
+
</table>
|
28
|
+
|
29
|
+
<br>
|
30
|
+
|
31
|
+
<%= link_to 'New Tote bag', new_tote_bag_path %>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<p id="notice"><%= notice %></p>
|
2
|
+
|
3
|
+
<div class="<%= @tote_bag.css_classes %>"
|
4
|
+
|
5
|
+
<p>
|
6
|
+
<%= @tote_bag.colour_description %>
|
7
|
+
</p>
|
8
|
+
|
9
|
+
<p>
|
10
|
+
<%= @tote_bag.material_description %>
|
11
|
+
</p>
|
12
|
+
|
13
|
+
<p>
|
14
|
+
<%= @tote_bag.straps_description %>
|
15
|
+
</p>
|
16
|
+
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<%= link_to 'Edit', edit_tote_bag_path(@tote_bag.object) %> |
|
20
|
+
<%= link_to 'Back', tote_bags_path %>
|
data/test/dummy/config/routes.rb
CHANGED
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20140314082207) do
|
15
|
+
|
16
|
+
create_table "tote_bags", force: true do |t|
|
17
|
+
t.string "colour"
|
18
|
+
t.string "material"
|
19
|
+
t.boolean "straps"
|
20
|
+
t.datetime "created_at"
|
21
|
+
t.datetime "updated_at"
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,2477 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2014-03-14 19:11:24 +1100
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.3/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
|
6
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
7
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
8
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
9
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10
|
+
Migrating to CreateCanvasBags (20140314081610)
|
11
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "canvas_bags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "color" varchar(255), "material" varchar(255), "straps" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
13
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140314081610"]]
|
14
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
15
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
16
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "canvas_bags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "color" varchar(255), "material" varchar(255), "straps" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
17
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
18
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
20
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140314081610')[0m
|
21
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
22
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
23
|
+
Migrating to CreateCanvasBags (20140314081610)
|
24
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25
|
+
[1m[35m (0.5ms)[0m DROP TABLE "canvas_bags"
|
26
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140314081610'[0m
|
27
|
+
[1m[35m (0.8ms)[0m commit transaction
|
28
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
29
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
30
|
+
Migrating to CreateCanvasBags (20140314082207)
|
31
|
+
[1m[35m (0.1ms)[0m begin transaction
|
32
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "canvas_bags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "colour" varchar(255), "material" varchar(255), "straps" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
33
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140314082207"]]
|
34
|
+
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
35
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
36
|
+
|
37
|
+
|
38
|
+
Started GET "/" for 127.0.0.1 at 2014-03-14 19:23:00 +1100
|
39
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
40
|
+
Processing by Rails::WelcomeController#index as HTML
|
41
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.3/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
|
42
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
43
|
+
|
44
|
+
|
45
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:23:06 +1100
|
46
|
+
Processing by CanvasBagsController#index as HTML
|
47
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
48
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.8ms)
|
49
|
+
Completed 200 OK in 81ms (Views: 78.8ms | ActiveRecord: 0.2ms)
|
50
|
+
|
51
|
+
|
52
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:06 +1100
|
53
|
+
|
54
|
+
|
55
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:06 +1100
|
56
|
+
|
57
|
+
|
58
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:23:06 +1100
|
59
|
+
|
60
|
+
|
61
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:06 +1100
|
62
|
+
|
63
|
+
|
64
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:23:06 +1100
|
65
|
+
|
66
|
+
|
67
|
+
Started GET "/canvas_bags/new" for 127.0.0.1 at 2014-03-14 19:23:10 +1100
|
68
|
+
Processing by CanvasBagsController#new as HTML
|
69
|
+
Rendered canvas_bags/_form.html.erb (32.4ms)
|
70
|
+
Rendered canvas_bags/new.html.erb within layouts/application (37.2ms)
|
71
|
+
Completed 200 OK in 43ms (Views: 40.6ms | ActiveRecord: 0.5ms)
|
72
|
+
|
73
|
+
|
74
|
+
Started POST "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:23:23 +1100
|
75
|
+
Processing by CanvasBagsController#create as HTML
|
76
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"red", "material"=>"canvas", "straps"=>"1"}, "commit"=>"Create Canvas bag"}
|
77
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
78
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "canvas_bags" ("colour", "created_at", "material", "straps", "updated_at") VALUES (?, ?, ?, ?, ?) [["colour", "red"], ["created_at", Fri, 14 Mar 2014 08:23:23 UTC +00:00], ["material", "canvas"], ["straps", true], ["updated_at", Fri, 14 Mar 2014 08:23:23 UTC +00:00]]
|
79
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
80
|
+
Redirected to http://localhost:3000/canvas_bags/1
|
81
|
+
Completed 302 Found in 11ms (ActiveRecord: 5.1ms)
|
82
|
+
|
83
|
+
|
84
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:23:23 +1100
|
85
|
+
Processing by CanvasBagsController#show as HTML
|
86
|
+
Parameters: {"id"=>"1"}
|
87
|
+
[1m[35mCanvasBag Load (0.3ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
88
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.6ms)
|
89
|
+
Completed 200 OK in 37ms (Views: 5.3ms | ActiveRecord: 0.3ms)
|
90
|
+
|
91
|
+
|
92
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:23 +1100
|
93
|
+
|
94
|
+
|
95
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:23 +1100
|
96
|
+
|
97
|
+
|
98
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:23:23 +1100
|
99
|
+
|
100
|
+
|
101
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:23:29 +1100
|
102
|
+
Processing by CanvasBagsController#index as HTML
|
103
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
104
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.6ms)
|
105
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
|
106
|
+
|
107
|
+
|
108
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:29 +1100
|
109
|
+
|
110
|
+
|
111
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:23:29 +1100
|
112
|
+
|
113
|
+
|
114
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:23:29 +1100
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/canvas_bags/new" for 127.0.0.1 at 2014-03-14 19:28:24 +1100
|
118
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
119
|
+
Processing by CanvasBagsController#new as HTML
|
120
|
+
Rendered canvas_bags/_form.html.erb (32.0ms)
|
121
|
+
Rendered canvas_bags/new.html.erb within layouts/application (36.3ms)
|
122
|
+
Completed 200 OK in 63ms (Views: 59.1ms | ActiveRecord: 0.4ms)
|
123
|
+
|
124
|
+
|
125
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:24 +1100
|
126
|
+
|
127
|
+
|
128
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:24 +1100
|
129
|
+
|
130
|
+
|
131
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:24 +1100
|
132
|
+
|
133
|
+
|
134
|
+
Started POST "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:28:30 +1100
|
135
|
+
Processing by CanvasBagsController#create as HTML
|
136
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"green", "material"=>"hessian", "straps"=>"0"}, "commit"=>"Create Canvas bag"}
|
137
|
+
[1m[35m (0.2ms)[0m begin transaction
|
138
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "canvas_bags" ("colour", "created_at", "material", "straps", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["colour", "green"], ["created_at", Fri, 14 Mar 2014 08:28:30 UTC +00:00], ["material", "hessian"], ["straps", false], ["updated_at", Fri, 14 Mar 2014 08:28:30 UTC +00:00]]
|
139
|
+
[1m[35m (0.8ms)[0m commit transaction
|
140
|
+
Redirected to http://localhost:3000/canvas_bags/2
|
141
|
+
Completed 302 Found in 11ms (ActiveRecord: 4.6ms)
|
142
|
+
|
143
|
+
|
144
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:28:30 +1100
|
145
|
+
Processing by CanvasBagsController#show as HTML
|
146
|
+
Parameters: {"id"=>"2"}
|
147
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
148
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.3ms)
|
149
|
+
Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.2ms)
|
150
|
+
|
151
|
+
|
152
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:30 +1100
|
153
|
+
|
154
|
+
|
155
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:30 +1100
|
156
|
+
|
157
|
+
|
158
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:30 +1100
|
159
|
+
|
160
|
+
|
161
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:28:32 +1100
|
162
|
+
Processing by CanvasBagsController#index as HTML
|
163
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
164
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.6ms)
|
165
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
|
166
|
+
|
167
|
+
|
168
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:32 +1100
|
169
|
+
|
170
|
+
|
171
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:32 +1100
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:32 +1100
|
175
|
+
|
176
|
+
|
177
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:28:35 +1100
|
178
|
+
Processing by CanvasBagsController#show as HTML
|
179
|
+
Parameters: {"id"=>"2"}
|
180
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
181
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.1ms)
|
182
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
183
|
+
|
184
|
+
|
185
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:35 +1100
|
186
|
+
|
187
|
+
|
188
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:35 +1100
|
189
|
+
|
190
|
+
|
191
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:35 +1100
|
192
|
+
|
193
|
+
|
194
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:28:37 +1100
|
195
|
+
Processing by CanvasBagsController#index as HTML
|
196
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
197
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.0ms)
|
198
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.2ms)
|
199
|
+
|
200
|
+
|
201
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:37 +1100
|
202
|
+
|
203
|
+
|
204
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:37 +1100
|
205
|
+
|
206
|
+
|
207
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:37 +1100
|
208
|
+
|
209
|
+
|
210
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:28:38 +1100
|
211
|
+
Processing by CanvasBagsController#show as HTML
|
212
|
+
Parameters: {"id"=>"2"}
|
213
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
214
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.1ms)
|
215
|
+
Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)
|
216
|
+
|
217
|
+
|
218
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:38 +1100
|
219
|
+
|
220
|
+
|
221
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:38 +1100
|
222
|
+
|
223
|
+
|
224
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:38 +1100
|
225
|
+
|
226
|
+
|
227
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:28:44 +1100
|
228
|
+
Processing by CanvasBagsController#index as HTML
|
229
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
230
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.9ms)
|
231
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.2ms)
|
232
|
+
|
233
|
+
|
234
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:44 +1100
|
235
|
+
|
236
|
+
|
237
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:44 +1100
|
238
|
+
|
239
|
+
|
240
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:44 +1100
|
241
|
+
|
242
|
+
|
243
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:28:46 +1100
|
244
|
+
Processing by CanvasBagsController#show as HTML
|
245
|
+
Parameters: {"id"=>"2"}
|
246
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
247
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
248
|
+
Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.2ms)
|
249
|
+
|
250
|
+
|
251
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:46 +1100
|
252
|
+
|
253
|
+
|
254
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:46 +1100
|
255
|
+
|
256
|
+
|
257
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:46 +1100
|
258
|
+
|
259
|
+
|
260
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:28:47 +1100
|
261
|
+
Processing by CanvasBagsController#index as HTML
|
262
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
263
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.6ms)
|
264
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
265
|
+
|
266
|
+
|
267
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:47 +1100
|
268
|
+
|
269
|
+
|
270
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:47 +1100
|
271
|
+
|
272
|
+
|
273
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:47 +1100
|
274
|
+
|
275
|
+
|
276
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:28:58 +1100
|
277
|
+
Processing by CanvasBagsController#index as HTML
|
278
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
279
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.8ms)
|
280
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
281
|
+
|
282
|
+
|
283
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:58 +1100
|
284
|
+
|
285
|
+
|
286
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:58 +1100
|
287
|
+
|
288
|
+
|
289
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:58 +1100
|
290
|
+
|
291
|
+
|
292
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:58 +1100
|
293
|
+
|
294
|
+
|
295
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:58 +1100
|
296
|
+
|
297
|
+
|
298
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:28:59 +1100
|
299
|
+
Processing by CanvasBagsController#show as HTML
|
300
|
+
Parameters: {"id"=>"2"}
|
301
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
302
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
303
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
304
|
+
|
305
|
+
|
306
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:59 +1100
|
307
|
+
|
308
|
+
|
309
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:59 +1100
|
310
|
+
|
311
|
+
|
312
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:59 +1100
|
313
|
+
|
314
|
+
|
315
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:28:59 +1100
|
316
|
+
|
317
|
+
|
318
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:28:59 +1100
|
319
|
+
|
320
|
+
|
321
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:29:03 +1100
|
322
|
+
Processing by CanvasBagsController#show as HTML
|
323
|
+
Parameters: {"id"=>"2"}
|
324
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
325
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
326
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
|
327
|
+
|
328
|
+
|
329
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:03 +1100
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:03 +1100
|
333
|
+
|
334
|
+
|
335
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:03 +1100
|
336
|
+
|
337
|
+
|
338
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:03 +1100
|
339
|
+
|
340
|
+
|
341
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:03 +1100
|
342
|
+
|
343
|
+
|
344
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:29:30 +1100
|
345
|
+
Processing by CanvasBagsController#index as HTML
|
346
|
+
[1m[35mCanvasBag Load (0.3ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
347
|
+
Rendered canvas_bags/index.html.erb within layouts/application (8.2ms)
|
348
|
+
Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.7ms)
|
349
|
+
|
350
|
+
|
351
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:30 +1100
|
352
|
+
|
353
|
+
|
354
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:30 +1100
|
355
|
+
|
356
|
+
|
357
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:30 +1100
|
358
|
+
|
359
|
+
|
360
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:30 +1100
|
361
|
+
|
362
|
+
|
363
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:30 +1100
|
364
|
+
|
365
|
+
|
366
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:29:31 +1100
|
367
|
+
Processing by CanvasBagsController#show as HTML
|
368
|
+
Parameters: {"id"=>"2"}
|
369
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
370
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.3ms)
|
371
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)
|
372
|
+
|
373
|
+
|
374
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:31 +1100
|
375
|
+
|
376
|
+
|
377
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:31 +1100
|
378
|
+
|
379
|
+
|
380
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:31 +1100
|
381
|
+
|
382
|
+
|
383
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:31 +1100
|
384
|
+
|
385
|
+
|
386
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:31 +1100
|
387
|
+
|
388
|
+
|
389
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:29:51 +1100
|
390
|
+
Processing by CanvasBagsController#index as HTML
|
391
|
+
kjshdfkjsdhfk
|
392
|
+
[1m[35mCanvasBag Load (0.4ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
393
|
+
Rendered canvas_bags/index.html.erb within layouts/application (9.2ms)
|
394
|
+
Completed 200 OK in 17ms (Views: 13.4ms | ActiveRecord: 0.6ms)
|
395
|
+
|
396
|
+
|
397
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:51 +1100
|
398
|
+
|
399
|
+
|
400
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:51 +1100
|
401
|
+
|
402
|
+
|
403
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:51 +1100
|
404
|
+
|
405
|
+
|
406
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:51 +1100
|
407
|
+
|
408
|
+
|
409
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:51 +1100
|
410
|
+
|
411
|
+
|
412
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:29:59 +1100
|
413
|
+
Processing by CanvasBagsController#show as HTML
|
414
|
+
Parameters: {"id"=>"2"}
|
415
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
416
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.1ms)
|
417
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.2ms)
|
418
|
+
|
419
|
+
|
420
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:59 +1100
|
421
|
+
|
422
|
+
|
423
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:59 +1100
|
424
|
+
|
425
|
+
|
426
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:59 +1100
|
427
|
+
|
428
|
+
|
429
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:29:59 +1100
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:29:59 +1100
|
433
|
+
|
434
|
+
|
435
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:30:18 +1100
|
436
|
+
Processing by CanvasBagsController#show as HTML
|
437
|
+
Parameters: {"id"=>"2"}
|
438
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
439
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.0ms)
|
440
|
+
Completed 200 OK in 13ms (Views: 5.1ms | ActiveRecord: 0.5ms)
|
441
|
+
|
442
|
+
|
443
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:18 +1100
|
444
|
+
|
445
|
+
|
446
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:18 +1100
|
447
|
+
|
448
|
+
|
449
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:18 +1100
|
450
|
+
|
451
|
+
|
452
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:18 +1100
|
453
|
+
|
454
|
+
|
455
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:18 +1100
|
456
|
+
|
457
|
+
|
458
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:30:20 +1100
|
459
|
+
Processing by CanvasBagsController#index as HTML
|
460
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
461
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.7ms)
|
462
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.2ms)
|
463
|
+
|
464
|
+
|
465
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:20 +1100
|
466
|
+
|
467
|
+
|
468
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:20 +1100
|
469
|
+
|
470
|
+
|
471
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:20 +1100
|
472
|
+
|
473
|
+
|
474
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:20 +1100
|
475
|
+
|
476
|
+
|
477
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:20 +1100
|
478
|
+
|
479
|
+
|
480
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:30:24 +1100
|
481
|
+
Processing by CanvasBagsController#show as HTML
|
482
|
+
Parameters: {"id"=>"2"}
|
483
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
484
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.3ms)
|
485
|
+
Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)
|
486
|
+
|
487
|
+
|
488
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:24 +1100
|
489
|
+
|
490
|
+
|
491
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:24 +1100
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:24 +1100
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:24 +1100
|
498
|
+
|
499
|
+
|
500
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:24 +1100
|
501
|
+
|
502
|
+
|
503
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-14 19:30:25 +1100
|
504
|
+
Processing by CanvasBagsController#edit as HTML
|
505
|
+
Parameters: {"id"=>"2"}
|
506
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
507
|
+
Rendered canvas_bags/_form.html.erb (4.2ms)
|
508
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (5.9ms)
|
509
|
+
Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)
|
510
|
+
|
511
|
+
|
512
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:25 +1100
|
513
|
+
|
514
|
+
|
515
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:25 +1100
|
516
|
+
|
517
|
+
|
518
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:25 +1100
|
519
|
+
|
520
|
+
|
521
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:25 +1100
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:25 +1100
|
525
|
+
|
526
|
+
|
527
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:30:28 +1100
|
528
|
+
Processing by CanvasBagsController#index as HTML
|
529
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
530
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.1ms)
|
531
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms)
|
532
|
+
|
533
|
+
|
534
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:28 +1100
|
535
|
+
|
536
|
+
|
537
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:28 +1100
|
538
|
+
|
539
|
+
|
540
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:28 +1100
|
541
|
+
|
542
|
+
|
543
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:28 +1100
|
544
|
+
|
545
|
+
|
546
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:28 +1100
|
547
|
+
|
548
|
+
|
549
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:30:29 +1100
|
550
|
+
Processing by CanvasBagsController#show as HTML
|
551
|
+
Parameters: {"id"=>"2"}
|
552
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
553
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.3ms)
|
554
|
+
Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms)
|
555
|
+
|
556
|
+
|
557
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:29 +1100
|
558
|
+
|
559
|
+
|
560
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:29 +1100
|
561
|
+
|
562
|
+
|
563
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:29 +1100
|
564
|
+
|
565
|
+
|
566
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:29 +1100
|
567
|
+
|
568
|
+
|
569
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:30:29 +1100
|
570
|
+
|
571
|
+
|
572
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:30:47 +1100
|
573
|
+
|
574
|
+
|
575
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:33:34 +1100
|
576
|
+
Processing by CanvasBagsController#show as HTML
|
577
|
+
Parameters: {"id"=>"1"}
|
578
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
579
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.1ms)
|
580
|
+
Completed 200 OK in 16ms (Views: 5.1ms | ActiveRecord: 0.6ms)
|
581
|
+
|
582
|
+
|
583
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:33:34 +1100
|
584
|
+
|
585
|
+
|
586
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:33:34 +1100
|
587
|
+
|
588
|
+
|
589
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:33:34 +1100
|
590
|
+
|
591
|
+
|
592
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:33:34 +1100
|
593
|
+
|
594
|
+
|
595
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:33:34 +1100
|
596
|
+
|
597
|
+
|
598
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:38:40 +1100
|
599
|
+
Processing by CanvasBagsController#index as HTML
|
600
|
+
[1m[36mCanvasBag Load (0.5ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
601
|
+
Rendered canvas_bags/index.html.erb within layouts/application (12.6ms)
|
602
|
+
Completed 500 Internal Server Error in 17ms
|
603
|
+
|
604
|
+
ActionView::Template::Error (undefined method `css_classes' for #<CanvasBag:0x007fe50a3b9f38>):
|
605
|
+
15: <tbody>
|
606
|
+
16: <% @canvas_bags.each do |canvas_bag| %>
|
607
|
+
17: <tr>
|
608
|
+
18: <div class="<%= canvas_bag.css_classes %>">
|
609
|
+
19: <td><%= canvas_bag.colour %></td>
|
610
|
+
20: <td><%= canvas_bag.material %></td>
|
611
|
+
21: <td><%= canvas_bag.straps %></td>
|
612
|
+
app/views/canvas_bags/index.html.erb:18:in `block in _app_views_canvas_bags_index_html_erb__3327211986143187789_70310860273120'
|
613
|
+
app/views/canvas_bags/index.html.erb:16:in `_app_views_canvas_bags_index_html_erb__3327211986143187789_70310860273120'
|
614
|
+
app/controllers/canvas_bags_controller.rb:7:in `index'
|
615
|
+
|
616
|
+
|
617
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
618
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
619
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.3ms)
|
620
|
+
|
621
|
+
|
622
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:39:09 +1100
|
623
|
+
Processing by CanvasBagsController#index as HTML
|
624
|
+
[1m[35mCanvasBag Load (0.3ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
625
|
+
Rendered canvas_bags/index.html.erb within layouts/application (3.0ms)
|
626
|
+
Completed 200 OK in 16ms (Views: 6.8ms | ActiveRecord: 0.6ms)
|
627
|
+
|
628
|
+
|
629
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:39:09 +1100
|
630
|
+
|
631
|
+
|
632
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:39:09 +1100
|
633
|
+
|
634
|
+
|
635
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:39:09 +1100
|
636
|
+
|
637
|
+
|
638
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:39:09 +1100
|
639
|
+
|
640
|
+
|
641
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:39:09 +1100
|
642
|
+
|
643
|
+
|
644
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:39:24 +1100
|
645
|
+
Processing by CanvasBagsController#index as HTML
|
646
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
647
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.1ms)
|
648
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
649
|
+
|
650
|
+
|
651
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:39:24 +1100
|
652
|
+
|
653
|
+
|
654
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:39:24 +1100
|
655
|
+
|
656
|
+
|
657
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:39:24 +1100
|
658
|
+
|
659
|
+
|
660
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:39:24 +1100
|
661
|
+
|
662
|
+
|
663
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:39:24 +1100
|
664
|
+
|
665
|
+
|
666
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:40:28 +1100
|
667
|
+
Processing by CanvasBagsController#index as HTML
|
668
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
669
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.9ms)
|
670
|
+
Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.2ms)
|
671
|
+
|
672
|
+
|
673
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:40:28 +1100
|
674
|
+
|
675
|
+
|
676
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:40:28 +1100
|
677
|
+
|
678
|
+
|
679
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:40:28 +1100
|
680
|
+
|
681
|
+
|
682
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:40:28 +1100
|
683
|
+
|
684
|
+
|
685
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:40:28 +1100
|
686
|
+
|
687
|
+
|
688
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:40:42 +1100
|
689
|
+
Processing by CanvasBagsController#index as HTML
|
690
|
+
[1m[36mCanvasBag Load (0.3ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
691
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.0ms)
|
692
|
+
Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.3ms)
|
693
|
+
|
694
|
+
|
695
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:40:42 +1100
|
696
|
+
|
697
|
+
|
698
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:40:42 +1100
|
699
|
+
|
700
|
+
|
701
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:40:42 +1100
|
702
|
+
|
703
|
+
|
704
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:40:42 +1100
|
705
|
+
|
706
|
+
|
707
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:40:42 +1100
|
708
|
+
|
709
|
+
|
710
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:41:12 +1100
|
711
|
+
Processing by CanvasBagsController#index as HTML
|
712
|
+
[1m[35mCanvasBag Load (0.3ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
713
|
+
Rendered canvas_bags/index.html.erb within layouts/application (27.1ms)
|
714
|
+
Completed 200 OK in 33ms (Views: 31.1ms | ActiveRecord: 0.3ms)
|
715
|
+
|
716
|
+
|
717
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:41:12 +1100
|
718
|
+
|
719
|
+
|
720
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:41:12 +1100
|
721
|
+
|
722
|
+
|
723
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:41:12 +1100
|
724
|
+
|
725
|
+
|
726
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:41:12 +1100
|
727
|
+
|
728
|
+
|
729
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:41:12 +1100
|
730
|
+
|
731
|
+
|
732
|
+
Started GET "/canvas_bags/%23%3CCanvasBagDecorator:0x007fe50bc369a8%3E/edit" for 127.0.0.1 at 2014-03-14 19:42:56 +1100
|
733
|
+
Processing by CanvasBagsController#edit as HTML
|
734
|
+
Parameters: {"id"=>"#<CanvasBagDecorator:0x007fe50bc369a8>"}
|
735
|
+
[1m[36mCanvasBag Load (0.3ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "#<CanvasBagDecorator:0x007fe50bc369a8>"]]
|
736
|
+
Completed 404 Not Found in 2ms
|
737
|
+
|
738
|
+
ActiveRecord::RecordNotFound (Couldn't find CanvasBag with id=#<CanvasBagDecorator:0x007fe50bc369a8>):
|
739
|
+
app/controllers/canvas_bags_controller.rb:24:in `edit'
|
740
|
+
|
741
|
+
|
742
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
|
743
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
744
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
745
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
|
746
|
+
|
747
|
+
|
748
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:43:04 +1100
|
749
|
+
Processing by CanvasBagsController#show as HTML
|
750
|
+
Parameters: {"id"=>"1"}
|
751
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
752
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.6ms)
|
753
|
+
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
754
|
+
|
755
|
+
|
756
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:04 +1100
|
757
|
+
|
758
|
+
|
759
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:04 +1100
|
760
|
+
|
761
|
+
|
762
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:04 +1100
|
763
|
+
|
764
|
+
|
765
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:04 +1100
|
766
|
+
|
767
|
+
|
768
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:04 +1100
|
769
|
+
|
770
|
+
|
771
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:43:21 +1100
|
772
|
+
Processing by CanvasBagsController#index as HTML
|
773
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
774
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.6ms)
|
775
|
+
Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms)
|
776
|
+
|
777
|
+
|
778
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:21 +1100
|
779
|
+
|
780
|
+
|
781
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:21 +1100
|
782
|
+
|
783
|
+
|
784
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:21 +1100
|
785
|
+
|
786
|
+
|
787
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:21 +1100
|
788
|
+
|
789
|
+
|
790
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:21 +1100
|
791
|
+
|
792
|
+
|
793
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:43:22 +1100
|
794
|
+
Processing by CanvasBagsController#show as HTML
|
795
|
+
Parameters: {"id"=>"1"}
|
796
|
+
[1m[35mCanvasBag Load (0.3ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
797
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
798
|
+
Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.2ms)
|
799
|
+
|
800
|
+
|
801
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:22 +1100
|
802
|
+
|
803
|
+
|
804
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:22 +1100
|
805
|
+
|
806
|
+
|
807
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:22 +1100
|
808
|
+
|
809
|
+
|
810
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:22 +1100
|
811
|
+
|
812
|
+
|
813
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:22 +1100
|
814
|
+
|
815
|
+
|
816
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-14 19:43:25 +1100
|
817
|
+
Processing by CanvasBagsController#show as HTML
|
818
|
+
Parameters: {"id"=>"2"}
|
819
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
820
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
821
|
+
Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms)
|
822
|
+
|
823
|
+
|
824
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:25 +1100
|
825
|
+
|
826
|
+
|
827
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:25 +1100
|
828
|
+
|
829
|
+
|
830
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:25 +1100
|
831
|
+
|
832
|
+
|
833
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:25 +1100
|
834
|
+
|
835
|
+
|
836
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:25 +1100
|
837
|
+
|
838
|
+
|
839
|
+
Started GET "/canvas_bags/1/edit" for 127.0.0.1 at 2014-03-14 19:43:27 +1100
|
840
|
+
Processing by CanvasBagsController#edit as HTML
|
841
|
+
Parameters: {"id"=>"1"}
|
842
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
843
|
+
Rendered canvas_bags/_form.html.erb (4.1ms)
|
844
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (5.3ms)
|
845
|
+
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
846
|
+
|
847
|
+
|
848
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:27 +1100
|
849
|
+
|
850
|
+
|
851
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:27 +1100
|
852
|
+
|
853
|
+
|
854
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:27 +1100
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:43:27 +1100
|
858
|
+
|
859
|
+
|
860
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:43:27 +1100
|
861
|
+
|
862
|
+
|
863
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:44:09 +1100
|
864
|
+
Processing by CanvasBagsController#show as HTML
|
865
|
+
Parameters: {"id"=>"1"}
|
866
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "1"]]
|
867
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.2ms)
|
868
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
869
|
+
|
870
|
+
|
871
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:44:09 +1100
|
872
|
+
|
873
|
+
|
874
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:44:09 +1100
|
875
|
+
|
876
|
+
|
877
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:44:09 +1100
|
878
|
+
|
879
|
+
|
880
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:44:09 +1100
|
881
|
+
|
882
|
+
|
883
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:44:09 +1100
|
884
|
+
|
885
|
+
|
886
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:45:58 +1100
|
887
|
+
Processing by CanvasBagsController#show as HTML
|
888
|
+
Parameters: {"id"=>"1"}
|
889
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
890
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.0ms)
|
891
|
+
Completed 200 OK in 14ms (Views: 4.4ms | ActiveRecord: 0.7ms)
|
892
|
+
|
893
|
+
|
894
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:45:58 +1100
|
895
|
+
|
896
|
+
|
897
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:45:58 +1100
|
898
|
+
|
899
|
+
|
900
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:45:58 +1100
|
901
|
+
|
902
|
+
|
903
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:45:58 +1100
|
904
|
+
|
905
|
+
|
906
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:45:58 +1100
|
907
|
+
|
908
|
+
|
909
|
+
Started GET "/canvas_bags/%23%3CCanvasBagDecorator:0x007fe50a26b208%3E/edit" for 127.0.0.1 at 2014-03-14 19:45:59 +1100
|
910
|
+
Processing by CanvasBagsController#edit as HTML
|
911
|
+
Parameters: {"id"=>"#<CanvasBagDecorator:0x007fe50a26b208>"}
|
912
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "#<CanvasBagDecorator:0x007fe50a26b208>"]]
|
913
|
+
Completed 404 Not Found in 2ms
|
914
|
+
|
915
|
+
ActiveRecord::RecordNotFound (Couldn't find CanvasBag with id=#<CanvasBagDecorator:0x007fe50a26b208>):
|
916
|
+
app/controllers/canvas_bags_controller.rb:24:in `edit'
|
917
|
+
|
918
|
+
|
919
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
|
920
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
921
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
922
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.7ms)
|
923
|
+
|
924
|
+
|
925
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-14 19:46:02 +1100
|
926
|
+
Processing by CanvasBagsController#index as HTML
|
927
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
928
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.2ms)
|
929
|
+
Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.2ms)
|
930
|
+
|
931
|
+
|
932
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:46:02 +1100
|
933
|
+
|
934
|
+
|
935
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:46:02 +1100
|
936
|
+
|
937
|
+
|
938
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:46:02 +1100
|
939
|
+
|
940
|
+
|
941
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:46:02 +1100
|
942
|
+
|
943
|
+
|
944
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:46:02 +1100
|
945
|
+
|
946
|
+
|
947
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:46:03 +1100
|
948
|
+
Processing by CanvasBagsController#show as HTML
|
949
|
+
Parameters: {"id"=>"1"}
|
950
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "1"]]
|
951
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.7ms)
|
952
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.2ms)
|
953
|
+
|
954
|
+
|
955
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:46:03 +1100
|
956
|
+
|
957
|
+
|
958
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:46:03 +1100
|
959
|
+
|
960
|
+
|
961
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:46:03 +1100
|
962
|
+
|
963
|
+
|
964
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:46:03 +1100
|
965
|
+
|
966
|
+
|
967
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:46:03 +1100
|
968
|
+
|
969
|
+
|
970
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-14 19:47:23 +1100
|
971
|
+
Processing by CanvasBagsController#show as HTML
|
972
|
+
Parameters: {"id"=>"1"}
|
973
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
974
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.4ms)
|
975
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
976
|
+
|
977
|
+
|
978
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-14 19:47:23 +1100
|
979
|
+
|
980
|
+
|
981
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-14 19:47:23 +1100
|
982
|
+
|
983
|
+
|
984
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-14 19:47:23 +1100
|
985
|
+
|
986
|
+
|
987
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-14 19:47:23 +1100
|
988
|
+
|
989
|
+
|
990
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-14 19:47:23 +1100
|
991
|
+
|
992
|
+
|
993
|
+
Started GET "/" for 127.0.0.1 at 2014-03-20 17:02:30 +1100
|
994
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
995
|
+
Processing by Rails::WelcomeController#index as HTML
|
996
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.3/lib/rails/templates/rails/welcome/index.html.erb (2.6ms)
|
997
|
+
Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.0ms)
|
998
|
+
|
999
|
+
|
1000
|
+
Started GET "/canvas_tags" for 127.0.0.1 at 2014-03-20 17:03:00 +1100
|
1001
|
+
|
1002
|
+
ActionController::RoutingError (No route matches [GET] "/canvas_tags"):
|
1003
|
+
actionpack (4.0.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1004
|
+
actionpack (4.0.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1005
|
+
railties (4.0.3) lib/rails/rack/logger.rb:38:in `call_app'
|
1006
|
+
railties (4.0.3) lib/rails/rack/logger.rb:20:in `block in call'
|
1007
|
+
activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
1008
|
+
activesupport (4.0.3) lib/active_support/tagged_logging.rb:25:in `tagged'
|
1009
|
+
activesupport (4.0.3) lib/active_support/tagged_logging.rb:67:in `tagged'
|
1010
|
+
railties (4.0.3) lib/rails/rack/logger.rb:20:in `call'
|
1011
|
+
actionpack (4.0.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1012
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1013
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1014
|
+
activesupport (4.0.3) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1015
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1016
|
+
actionpack (4.0.3) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1017
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1018
|
+
railties (4.0.3) lib/rails/engine.rb:511:in `call'
|
1019
|
+
railties (4.0.3) lib/rails/application.rb:97:in `call'
|
1020
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1021
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1022
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1023
|
+
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
1024
|
+
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
1025
|
+
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
1026
|
+
|
1027
|
+
|
1028
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
1029
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
|
1030
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms)
|
1031
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (26.4ms)
|
1032
|
+
|
1033
|
+
|
1034
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:03:01 +1100
|
1035
|
+
Processing by CanvasBagsController#index as HTML
|
1036
|
+
[1m[35mCanvasBag Load (0.5ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
1037
|
+
Rendered canvas_bags/index.html.erb within layouts/application (3.2ms)
|
1038
|
+
Completed 200 OK in 60ms (Views: 48.6ms | ActiveRecord: 1.0ms)
|
1039
|
+
|
1040
|
+
|
1041
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:03:02 +1100
|
1042
|
+
|
1043
|
+
|
1044
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:03:02 +1100
|
1045
|
+
|
1046
|
+
|
1047
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:03:02 +1100
|
1048
|
+
|
1049
|
+
|
1050
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:03:02 +1100
|
1051
|
+
|
1052
|
+
|
1053
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:03:02 +1100
|
1054
|
+
|
1055
|
+
|
1056
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:03:05 +1100
|
1057
|
+
Processing by CanvasBagsController#show as HTML
|
1058
|
+
Parameters: {"id"=>"2"}
|
1059
|
+
[1m[36mCanvasBag Load (0.4ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1060
|
+
Rendered canvas_bags/show.html.erb within layouts/application (4.0ms)
|
1061
|
+
Completed 500 Internal Server Error in 9ms
|
1062
|
+
|
1063
|
+
ActionView::Template::Error (undefined method `colour_description' for #<CanvasBag:0x007f95fb93efe8>):
|
1064
|
+
3: <div class="<%= @canvas_bag.css_classes %>"
|
1065
|
+
4:
|
1066
|
+
5: <p>
|
1067
|
+
6: <%= @canvas_bag.colour_description %>
|
1068
|
+
7: </p>
|
1069
|
+
8:
|
1070
|
+
9: <p>
|
1071
|
+
app/views/canvas_bags/show.html.erb:6:in `_app_views_canvas_bags_show_html_erb__1992387797624730863_70141073811080'
|
1072
|
+
app/controllers/canvas_bags_controller.rb:13:in `show'
|
1073
|
+
|
1074
|
+
|
1075
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
1076
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
1077
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.9ms)
|
1078
|
+
|
1079
|
+
|
1080
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:07:05 +1100
|
1081
|
+
Processing by CanvasBagsController#show as HTML
|
1082
|
+
Parameters: {"id"=>"2"}
|
1083
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1084
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.1ms)
|
1085
|
+
Completed 200 OK in 13ms (Views: 4.8ms | ActiveRecord: 0.5ms)
|
1086
|
+
|
1087
|
+
|
1088
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:05 +1100
|
1089
|
+
|
1090
|
+
|
1091
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:07:05 +1100
|
1092
|
+
|
1093
|
+
|
1094
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:07:05 +1100
|
1095
|
+
|
1096
|
+
|
1097
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:05 +1100
|
1098
|
+
|
1099
|
+
|
1100
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:05 +1100
|
1101
|
+
|
1102
|
+
|
1103
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:07:55 +1100
|
1104
|
+
Processing by CanvasBagsController#show as HTML
|
1105
|
+
Parameters: {"id"=>"2"}
|
1106
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1107
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.5ms)
|
1108
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
1109
|
+
|
1110
|
+
|
1111
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:55 +1100
|
1112
|
+
|
1113
|
+
|
1114
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:07:55 +1100
|
1115
|
+
|
1116
|
+
|
1117
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:55 +1100
|
1118
|
+
|
1119
|
+
|
1120
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:55 +1100
|
1121
|
+
|
1122
|
+
|
1123
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:07:55 +1100
|
1124
|
+
|
1125
|
+
|
1126
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:07:56 +1100
|
1127
|
+
Processing by CanvasBagsController#edit as HTML
|
1128
|
+
Parameters: {"id"=>"2"}
|
1129
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1130
|
+
Rendered canvas_bags/_form.html.erb (15.6ms)
|
1131
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (17.2ms)
|
1132
|
+
Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms)
|
1133
|
+
|
1134
|
+
|
1135
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:56 +1100
|
1136
|
+
|
1137
|
+
|
1138
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:56 +1100
|
1139
|
+
|
1140
|
+
|
1141
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:07:56 +1100
|
1142
|
+
|
1143
|
+
|
1144
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:07:56 +1100
|
1145
|
+
|
1146
|
+
|
1147
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:07:56 +1100
|
1148
|
+
|
1149
|
+
|
1150
|
+
Started PATCH "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1151
|
+
Processing by CanvasBagsController#update as HTML
|
1152
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"green", "material"=>"hessian", "straps"=>"1"}, "commit"=>"Update Canvas bag", "id"=>"2"}
|
1153
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1154
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1155
|
+
[1m[36mSQL (4.2ms)[0m [1mUPDATE "canvas_bags" SET "straps" = ?, "updated_at" = ? WHERE "canvas_bags"."id" = 2[0m [["straps", true], ["updated_at", Thu, 20 Mar 2014 06:08:02 UTC +00:00]]
|
1156
|
+
[1m[35m (0.7ms)[0m commit transaction
|
1157
|
+
Redirected to http://localhost:3000/canvas_bags/2
|
1158
|
+
Completed 302 Found in 11ms (ActiveRecord: 5.2ms)
|
1159
|
+
|
1160
|
+
|
1161
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1162
|
+
Processing by CanvasBagsController#show as HTML
|
1163
|
+
Parameters: {"id"=>"2"}
|
1164
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1165
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.0ms)
|
1166
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
1167
|
+
|
1168
|
+
|
1169
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1170
|
+
|
1171
|
+
|
1172
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1173
|
+
|
1174
|
+
|
1175
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1176
|
+
|
1177
|
+
|
1178
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1179
|
+
|
1180
|
+
|
1181
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:02 +1100
|
1182
|
+
|
1183
|
+
|
1184
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:08:06 +1100
|
1185
|
+
Processing by CanvasBagsController#index as HTML
|
1186
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
1187
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.2ms)
|
1188
|
+
Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)
|
1189
|
+
|
1190
|
+
|
1191
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:06 +1100
|
1192
|
+
|
1193
|
+
|
1194
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:06 +1100
|
1195
|
+
|
1196
|
+
|
1197
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:06 +1100
|
1198
|
+
|
1199
|
+
|
1200
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:06 +1100
|
1201
|
+
|
1202
|
+
|
1203
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:06 +1100
|
1204
|
+
|
1205
|
+
|
1206
|
+
Started GET "/canvas_bags/new" for 127.0.0.1 at 2014-03-20 17:08:07 +1100
|
1207
|
+
Processing by CanvasBagsController#new as HTML
|
1208
|
+
Rendered canvas_bags/_form.html.erb (31.3ms)
|
1209
|
+
Rendered canvas_bags/new.html.erb within layouts/application (32.7ms)
|
1210
|
+
Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.0ms)
|
1211
|
+
|
1212
|
+
|
1213
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:07 +1100
|
1214
|
+
|
1215
|
+
|
1216
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:07 +1100
|
1217
|
+
|
1218
|
+
|
1219
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:07 +1100
|
1220
|
+
|
1221
|
+
|
1222
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:07 +1100
|
1223
|
+
|
1224
|
+
|
1225
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:07 +1100
|
1226
|
+
|
1227
|
+
|
1228
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:08:25 +1100
|
1229
|
+
Processing by CanvasBagsController#edit as HTML
|
1230
|
+
Parameters: {"id"=>"2"}
|
1231
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1232
|
+
Rendered canvas_bags/_form.html.erb (2.8ms)
|
1233
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.9ms)
|
1234
|
+
Completed 200 OK in 10ms (Views: 7.8ms | ActiveRecord: 0.2ms)
|
1235
|
+
|
1236
|
+
|
1237
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:25 +1100
|
1238
|
+
|
1239
|
+
|
1240
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:25 +1100
|
1241
|
+
|
1242
|
+
|
1243
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:25 +1100
|
1244
|
+
|
1245
|
+
|
1246
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:08:25 +1100
|
1247
|
+
|
1248
|
+
|
1249
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:08:25 +1100
|
1250
|
+
|
1251
|
+
|
1252
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:09:00 +1100
|
1253
|
+
Processing by CanvasBagsController#edit as HTML
|
1254
|
+
Parameters: {"id"=>"2"}
|
1255
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1256
|
+
Rendered canvas_bags/_form.html.erb (1.6ms)
|
1257
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (2.2ms)
|
1258
|
+
Completed 500 Internal Server Error in 13ms
|
1259
|
+
|
1260
|
+
ActionView::Template::Error (undefined method `model_name' for CanvasBagDecorator:Class):
|
1261
|
+
12: <% end %>
|
1262
|
+
13:
|
1263
|
+
14: <div class="field">
|
1264
|
+
15: <%= f.label :colour %><br>
|
1265
|
+
16: <%= f.text_field :colour %>
|
1266
|
+
17: </div>
|
1267
|
+
18: <div class="field">
|
1268
|
+
app/views/canvas_bags/_form.html.erb:15:in `block in _app_views_canvas_bags__form_html_erb__629270107402140941_70141090813920'
|
1269
|
+
app/views/canvas_bags/_form.html.erb:1:in `_app_views_canvas_bags__form_html_erb__629270107402140941_70141090813920'
|
1270
|
+
app/views/canvas_bags/edit.html.erb:3:in `_app_views_canvas_bags_edit_html_erb___974745314203867518_70141090776760'
|
1271
|
+
app/controllers/canvas_bags_controller.rb:25:in `edit'
|
1272
|
+
|
1273
|
+
|
1274
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
1275
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
1276
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.5ms)
|
1277
|
+
|
1278
|
+
|
1279
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:10:37 +1100
|
1280
|
+
Processing by CanvasBagsController#edit as HTML
|
1281
|
+
Parameters: {"id"=>"2"}
|
1282
|
+
[1m[36mCanvasBag Load (0.1ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1283
|
+
Rendered canvas_bags/_form.html.erb (8.4ms)
|
1284
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (9.1ms)
|
1285
|
+
Completed 500 Internal Server Error in 20ms
|
1286
|
+
|
1287
|
+
ActionView::Template::Error (undefined method `canvas_bag_decorator_path' for #<#<Class:0x007f95fb3e6c58>:0x007f95fb3e5ce0>):
|
1288
|
+
1: <%= form_for(@canvas_bag) do |f| %>
|
1289
|
+
2: <% if @canvas_bag.errors.any? %>
|
1290
|
+
3: <div id="error_explanation">
|
1291
|
+
4: <h2><%= pluralize(@canvas_bag.errors.count, "error") %> prohibited this canvas_bag from being saved:</h2>
|
1292
|
+
app/views/canvas_bags/_form.html.erb:1:in `_app_views_canvas_bags__form_html_erb__629270107402140941_70141090813920'
|
1293
|
+
app/views/canvas_bags/edit.html.erb:3:in `_app_views_canvas_bags_edit_html_erb___974745314203867518_70141090776760'
|
1294
|
+
app/controllers/canvas_bags_controller.rb:25:in `edit'
|
1295
|
+
|
1296
|
+
|
1297
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
1298
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
1299
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
|
1300
|
+
|
1301
|
+
|
1302
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:10:50 +1100
|
1303
|
+
Processing by CanvasBagsController#edit as HTML
|
1304
|
+
Parameters: {"id"=>"2"}
|
1305
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1306
|
+
Rendered canvas_bags/_form.html.erb (0.6ms)
|
1307
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (1.2ms)
|
1308
|
+
Completed 500 Internal Server Error in 12ms
|
1309
|
+
|
1310
|
+
ActionView::Template::Error (undefined method `model_name' for CanvasBagDecorator:Class):
|
1311
|
+
1: <%= form_for(@canvas_bag) do |f| %>
|
1312
|
+
2: <% if @canvas_bag.errors.any? %>
|
1313
|
+
3: <div id="error_explanation">
|
1314
|
+
4: <h2><%= pluralize(@canvas_bag.errors.count, "error") %> prohibited this canvas_bag from being saved:</h2>
|
1315
|
+
app/views/canvas_bags/_form.html.erb:1:in `_app_views_canvas_bags__form_html_erb__629270107402140941_70141090813920'
|
1316
|
+
app/views/canvas_bags/edit.html.erb:3:in `_app_views_canvas_bags_edit_html_erb___974745314203867518_70141090776760'
|
1317
|
+
app/controllers/canvas_bags_controller.rb:25:in `edit'
|
1318
|
+
|
1319
|
+
|
1320
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
1321
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
1322
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
1323
|
+
|
1324
|
+
|
1325
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:11:00 +1100
|
1326
|
+
Processing by CanvasBagsController#edit as HTML
|
1327
|
+
Parameters: {"id"=>"2"}
|
1328
|
+
[1m[36mCanvasBag Load (0.3ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1329
|
+
Rendered canvas_bags/_form.html.erb (3.5ms)
|
1330
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (4.8ms)
|
1331
|
+
Completed 200 OK in 20ms (Views: 8.9ms | ActiveRecord: 0.7ms)
|
1332
|
+
|
1333
|
+
|
1334
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:00 +1100
|
1335
|
+
|
1336
|
+
|
1337
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:00 +1100
|
1338
|
+
|
1339
|
+
|
1340
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:00 +1100
|
1341
|
+
|
1342
|
+
|
1343
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:00 +1100
|
1344
|
+
|
1345
|
+
|
1346
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:00 +1100
|
1347
|
+
|
1348
|
+
|
1349
|
+
Started PATCH "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1350
|
+
Processing by CanvasBagsController#update as HTML
|
1351
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"greener", "material"=>"hessian", "straps"=>"1"}, "commit"=>"Update Canvas bag", "id"=>"2"}
|
1352
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1353
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1354
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "canvas_bags" SET "colour" = ?, "updated_at" = ? WHERE "canvas_bags"."id" = 2 [["colour", "greener"], ["updated_at", Thu, 20 Mar 2014 06:11:13 UTC +00:00]]
|
1355
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
1356
|
+
Redirected to http://localhost:3000/canvas_bags/2
|
1357
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.5ms)
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1361
|
+
Processing by CanvasBagsController#show as HTML
|
1362
|
+
Parameters: {"id"=>"2"}
|
1363
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1364
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
1365
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1369
|
+
|
1370
|
+
|
1371
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1372
|
+
|
1373
|
+
|
1374
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1375
|
+
|
1376
|
+
|
1377
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1378
|
+
|
1379
|
+
|
1380
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:13 +1100
|
1381
|
+
|
1382
|
+
|
1383
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:11:17 +1100
|
1384
|
+
Processing by CanvasBagsController#index as HTML
|
1385
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
1386
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.7ms)
|
1387
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms)
|
1388
|
+
|
1389
|
+
|
1390
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:17 +1100
|
1391
|
+
|
1392
|
+
|
1393
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:17 +1100
|
1394
|
+
|
1395
|
+
|
1396
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:17 +1100
|
1397
|
+
|
1398
|
+
|
1399
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:17 +1100
|
1400
|
+
|
1401
|
+
|
1402
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:17 +1100
|
1403
|
+
|
1404
|
+
|
1405
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:11:20 +1100
|
1406
|
+
Processing by CanvasBagsController#edit as HTML
|
1407
|
+
Parameters: {"id"=>"2"}
|
1408
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1409
|
+
Rendered canvas_bags/_form.html.erb (2.6ms)
|
1410
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.7ms)
|
1411
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
1412
|
+
|
1413
|
+
|
1414
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:20 +1100
|
1415
|
+
|
1416
|
+
|
1417
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:20 +1100
|
1418
|
+
|
1419
|
+
|
1420
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:20 +1100
|
1421
|
+
|
1422
|
+
|
1423
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:20 +1100
|
1424
|
+
|
1425
|
+
|
1426
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:20 +1100
|
1427
|
+
|
1428
|
+
|
1429
|
+
Started PATCH "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1430
|
+
Processing by CanvasBagsController#update as HTML
|
1431
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"greener2", "material"=>"hessian", "straps"=>"1"}, "commit"=>"Update Canvas bag", "id"=>"2"}
|
1432
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1433
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1434
|
+
[1m[36mSQL (0.6ms)[0m [1mUPDATE "canvas_bags" SET "colour" = ?, "updated_at" = ? WHERE "canvas_bags"."id" = 2[0m [["colour", "greener2"], ["updated_at", Thu, 20 Mar 2014 06:11:23 UTC +00:00]]
|
1435
|
+
[1m[35m (1.0ms)[0m commit transaction
|
1436
|
+
Redirected to http://localhost:3000/canvas_bags/2
|
1437
|
+
Completed 302 Found in 8ms (ActiveRecord: 2.0ms)
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1441
|
+
Processing by CanvasBagsController#show as HTML
|
1442
|
+
Parameters: {"id"=>"2"}
|
1443
|
+
[1m[36mCanvasBag Load (0.1ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1444
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
1445
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
1446
|
+
|
1447
|
+
|
1448
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1449
|
+
|
1450
|
+
|
1451
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1452
|
+
|
1453
|
+
|
1454
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1455
|
+
|
1456
|
+
|
1457
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1458
|
+
|
1459
|
+
|
1460
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:23 +1100
|
1461
|
+
|
1462
|
+
|
1463
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:11:25 +1100
|
1464
|
+
Processing by CanvasBagsController#index as HTML
|
1465
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
1466
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.4ms)
|
1467
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms)
|
1468
|
+
|
1469
|
+
|
1470
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:25 +1100
|
1471
|
+
|
1472
|
+
|
1473
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:25 +1100
|
1474
|
+
|
1475
|
+
|
1476
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:25 +1100
|
1477
|
+
|
1478
|
+
|
1479
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:25 +1100
|
1480
|
+
|
1481
|
+
|
1482
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:25 +1100
|
1483
|
+
|
1484
|
+
|
1485
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:11:27 +1100
|
1486
|
+
Processing by CanvasBagsController#edit as HTML
|
1487
|
+
Parameters: {"id"=>"2"}
|
1488
|
+
[1m[36mCanvasBag Load (0.1ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1489
|
+
Rendered canvas_bags/_form.html.erb (2.3ms)
|
1490
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.1ms)
|
1491
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
1492
|
+
|
1493
|
+
|
1494
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:27 +1100
|
1495
|
+
|
1496
|
+
|
1497
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:27 +1100
|
1498
|
+
|
1499
|
+
|
1500
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:27 +1100
|
1501
|
+
|
1502
|
+
|
1503
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:27 +1100
|
1504
|
+
|
1505
|
+
|
1506
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:27 +1100
|
1507
|
+
|
1508
|
+
|
1509
|
+
Started PATCH "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1510
|
+
Processing by CanvasBagsController#update as HTML
|
1511
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"greener2", "material"=>"hessian", "straps"=>"0"}, "commit"=>"Update Canvas bag", "id"=>"2"}
|
1512
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1513
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1514
|
+
[1m[35mSQL (0.6ms)[0m UPDATE "canvas_bags" SET "straps" = ?, "updated_at" = ? WHERE "canvas_bags"."id" = 2 [["straps", false], ["updated_at", Thu, 20 Mar 2014 06:11:29 UTC +00:00]]
|
1515
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1516
|
+
Redirected to http://localhost:3000/canvas_bags/2
|
1517
|
+
Completed 302 Found in 6ms (ActiveRecord: 1.7ms)
|
1518
|
+
|
1519
|
+
|
1520
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1521
|
+
Processing by CanvasBagsController#show as HTML
|
1522
|
+
Parameters: {"id"=>"2"}
|
1523
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1524
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.8ms)
|
1525
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
1526
|
+
|
1527
|
+
|
1528
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1529
|
+
|
1530
|
+
|
1531
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1532
|
+
|
1533
|
+
|
1534
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1535
|
+
|
1536
|
+
|
1537
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1538
|
+
|
1539
|
+
|
1540
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:29 +1100
|
1541
|
+
|
1542
|
+
|
1543
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:11:33 +1100
|
1544
|
+
Processing by CanvasBagsController#index as HTML
|
1545
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
1546
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.2ms)
|
1547
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)
|
1548
|
+
|
1549
|
+
|
1550
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:33 +1100
|
1551
|
+
|
1552
|
+
|
1553
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:33 +1100
|
1554
|
+
|
1555
|
+
|
1556
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:33 +1100
|
1557
|
+
|
1558
|
+
|
1559
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:11:33 +1100
|
1560
|
+
|
1561
|
+
|
1562
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:11:33 +1100
|
1563
|
+
|
1564
|
+
|
1565
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:12:12 +1100
|
1566
|
+
Processing by CanvasBagsController#edit as HTML
|
1567
|
+
Parameters: {"id"=>"2"}
|
1568
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1569
|
+
Rendered canvas_bags/_form.html.erb (3.6ms)
|
1570
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (4.5ms)
|
1571
|
+
Completed 200 OK in 17ms (Views: 7.8ms | ActiveRecord: 0.6ms)
|
1572
|
+
|
1573
|
+
|
1574
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:12 +1100
|
1575
|
+
|
1576
|
+
|
1577
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:12 +1100
|
1578
|
+
|
1579
|
+
|
1580
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:12 +1100
|
1581
|
+
|
1582
|
+
|
1583
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:12 +1100
|
1584
|
+
|
1585
|
+
|
1586
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:12 +1100
|
1587
|
+
|
1588
|
+
|
1589
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:12:17 +1100
|
1590
|
+
Processing by CanvasBagsController#index as HTML
|
1591
|
+
[1m[36mCanvasBag Load (0.3ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
1592
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.3ms)
|
1593
|
+
Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms)
|
1594
|
+
|
1595
|
+
|
1596
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:17 +1100
|
1597
|
+
|
1598
|
+
|
1599
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:17 +1100
|
1600
|
+
|
1601
|
+
|
1602
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:17 +1100
|
1603
|
+
|
1604
|
+
|
1605
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:17 +1100
|
1606
|
+
|
1607
|
+
|
1608
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:17 +1100
|
1609
|
+
|
1610
|
+
|
1611
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:12:26 +1100
|
1612
|
+
Processing by CanvasBagsController#edit as HTML
|
1613
|
+
Parameters: {"id"=>"2"}
|
1614
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1615
|
+
Rendered canvas_bags/_form.html.erb (3.0ms)
|
1616
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (4.0ms)
|
1617
|
+
Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.2ms)
|
1618
|
+
|
1619
|
+
|
1620
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:26 +1100
|
1621
|
+
|
1622
|
+
|
1623
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:26 +1100
|
1624
|
+
|
1625
|
+
|
1626
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:26 +1100
|
1627
|
+
|
1628
|
+
|
1629
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:26 +1100
|
1630
|
+
|
1631
|
+
|
1632
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:26 +1100
|
1633
|
+
|
1634
|
+
|
1635
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:12:36 +1100
|
1636
|
+
Processing by CanvasBagsController#index as HTML
|
1637
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
1638
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.1ms)
|
1639
|
+
Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.2ms)
|
1640
|
+
|
1641
|
+
|
1642
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:36 +1100
|
1643
|
+
|
1644
|
+
|
1645
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:36 +1100
|
1646
|
+
|
1647
|
+
|
1648
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:36 +1100
|
1649
|
+
|
1650
|
+
|
1651
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:36 +1100
|
1652
|
+
|
1653
|
+
|
1654
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:36 +1100
|
1655
|
+
|
1656
|
+
|
1657
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:12:40 +1100
|
1658
|
+
Processing by CanvasBagsController#edit as HTML
|
1659
|
+
Parameters: {"id"=>"2"}
|
1660
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1661
|
+
Rendered canvas_bags/_form.html.erb (2.8ms)
|
1662
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.7ms)
|
1663
|
+
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
1664
|
+
|
1665
|
+
|
1666
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:40 +1100
|
1667
|
+
|
1668
|
+
|
1669
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:40 +1100
|
1670
|
+
|
1671
|
+
|
1672
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:40 +1100
|
1673
|
+
|
1674
|
+
|
1675
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:40 +1100
|
1676
|
+
|
1677
|
+
|
1678
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:40 +1100
|
1679
|
+
|
1680
|
+
|
1681
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:12:48 +1100
|
1682
|
+
Processing by CanvasBagsController#edit as HTML
|
1683
|
+
Parameters: {"id"=>"2"}
|
1684
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1685
|
+
Rendered canvas_bags/_form.html.erb (2.8ms)
|
1686
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.7ms)
|
1687
|
+
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms)
|
1688
|
+
|
1689
|
+
|
1690
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:48 +1100
|
1691
|
+
|
1692
|
+
|
1693
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:48 +1100
|
1694
|
+
|
1695
|
+
|
1696
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:48 +1100
|
1697
|
+
|
1698
|
+
|
1699
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:48 +1100
|
1700
|
+
|
1701
|
+
|
1702
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:48 +1100
|
1703
|
+
|
1704
|
+
|
1705
|
+
Started GET "/canvas_bags/1/edit" for 127.0.0.1 at 2014-03-20 17:12:51 +1100
|
1706
|
+
Processing by CanvasBagsController#edit as HTML
|
1707
|
+
Parameters: {"id"=>"1"}
|
1708
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
1709
|
+
Rendered canvas_bags/_form.html.erb (2.9ms)
|
1710
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.8ms)
|
1711
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.1ms)
|
1712
|
+
|
1713
|
+
|
1714
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:51 +1100
|
1715
|
+
|
1716
|
+
|
1717
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:51 +1100
|
1718
|
+
|
1719
|
+
|
1720
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:51 +1100
|
1721
|
+
|
1722
|
+
|
1723
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:51 +1100
|
1724
|
+
|
1725
|
+
|
1726
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:51 +1100
|
1727
|
+
|
1728
|
+
|
1729
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:12:53 +1100
|
1730
|
+
Processing by CanvasBagsController#index as HTML
|
1731
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
1732
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.8ms)
|
1733
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms)
|
1734
|
+
|
1735
|
+
|
1736
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:53 +1100
|
1737
|
+
|
1738
|
+
|
1739
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:53 +1100
|
1740
|
+
|
1741
|
+
|
1742
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:53 +1100
|
1743
|
+
|
1744
|
+
|
1745
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:53 +1100
|
1746
|
+
|
1747
|
+
|
1748
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:53 +1100
|
1749
|
+
|
1750
|
+
|
1751
|
+
Started GET "/canvas_bags/1/edit" for 127.0.0.1 at 2014-03-20 17:12:54 +1100
|
1752
|
+
Processing by CanvasBagsController#edit as HTML
|
1753
|
+
Parameters: {"id"=>"1"}
|
1754
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
1755
|
+
Rendered canvas_bags/_form.html.erb (2.2ms)
|
1756
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.0ms)
|
1757
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
1758
|
+
|
1759
|
+
|
1760
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:54 +1100
|
1761
|
+
|
1762
|
+
|
1763
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:54 +1100
|
1764
|
+
|
1765
|
+
|
1766
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:54 +1100
|
1767
|
+
|
1768
|
+
|
1769
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:54 +1100
|
1770
|
+
|
1771
|
+
|
1772
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:54 +1100
|
1773
|
+
|
1774
|
+
|
1775
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:12:57 +1100
|
1776
|
+
Processing by CanvasBagsController#edit as HTML
|
1777
|
+
Parameters: {"id"=>"2"}
|
1778
|
+
[1m[36mCanvasBag Load (0.1ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1779
|
+
Rendered canvas_bags/_form.html.erb (2.8ms)
|
1780
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.8ms)
|
1781
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
1782
|
+
|
1783
|
+
|
1784
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:57 +1100
|
1785
|
+
|
1786
|
+
|
1787
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:57 +1100
|
1788
|
+
|
1789
|
+
|
1790
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:57 +1100
|
1791
|
+
|
1792
|
+
|
1793
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:57 +1100
|
1794
|
+
|
1795
|
+
|
1796
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:57 +1100
|
1797
|
+
|
1798
|
+
|
1799
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-20 17:12:59 +1100
|
1800
|
+
Processing by CanvasBagsController#show as HTML
|
1801
|
+
Parameters: {"id"=>"1"}
|
1802
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
1803
|
+
Rendered canvas_bags/show.html.erb within layouts/application (2.0ms)
|
1804
|
+
Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
1805
|
+
|
1806
|
+
|
1807
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:59 +1100
|
1808
|
+
|
1809
|
+
|
1810
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:59 +1100
|
1811
|
+
|
1812
|
+
|
1813
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:59 +1100
|
1814
|
+
|
1815
|
+
|
1816
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:12:59 +1100
|
1817
|
+
|
1818
|
+
|
1819
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:12:59 +1100
|
1820
|
+
|
1821
|
+
|
1822
|
+
Started GET "/canvas_bags/1" for 127.0.0.1 at 2014-03-20 17:13:01 +1100
|
1823
|
+
Processing by CanvasBagsController#show as HTML
|
1824
|
+
Parameters: {"id"=>"1"}
|
1825
|
+
[1m[36mCanvasBag Load (0.3ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1826
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.9ms)
|
1827
|
+
Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.3ms)
|
1828
|
+
|
1829
|
+
|
1830
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:01 +1100
|
1831
|
+
|
1832
|
+
|
1833
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:01 +1100
|
1834
|
+
|
1835
|
+
|
1836
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:01 +1100
|
1837
|
+
|
1838
|
+
|
1839
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:01 +1100
|
1840
|
+
|
1841
|
+
|
1842
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:01 +1100
|
1843
|
+
|
1844
|
+
|
1845
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:13:25 +1100
|
1846
|
+
Processing by CanvasBagsController#show as HTML
|
1847
|
+
Parameters: {"id"=>"2"}
|
1848
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1849
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.5ms)
|
1850
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
1851
|
+
|
1852
|
+
|
1853
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:25 +1100
|
1854
|
+
|
1855
|
+
|
1856
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:25 +1100
|
1857
|
+
|
1858
|
+
|
1859
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:25 +1100
|
1860
|
+
|
1861
|
+
|
1862
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:25 +1100
|
1863
|
+
|
1864
|
+
|
1865
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:25 +1100
|
1866
|
+
|
1867
|
+
|
1868
|
+
Started GET "/canvas_bags/%23%3CCanvasBagDecorator:0x007f95fb9fcca0%3E/edit" for 127.0.0.1 at 2014-03-20 17:13:27 +1100
|
1869
|
+
Processing by CanvasBagsController#edit as HTML
|
1870
|
+
Parameters: {"id"=>"#<CanvasBagDecorator:0x007f95fb9fcca0>"}
|
1871
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "#<CanvasBagDecorator:0x007f95fb9fcca0>"]]
|
1872
|
+
Completed 404 Not Found in 1ms
|
1873
|
+
|
1874
|
+
ActiveRecord::RecordNotFound (Couldn't find CanvasBag with id=#<CanvasBagDecorator:0x007f95fb9fcca0>):
|
1875
|
+
app/controllers/canvas_bags_controller.rb:24:in `edit'
|
1876
|
+
|
1877
|
+
|
1878
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
|
1879
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (35.7ms)
|
1880
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
1881
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (48.9ms)
|
1882
|
+
|
1883
|
+
|
1884
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:13:37 +1100
|
1885
|
+
Processing by CanvasBagsController#show as HTML
|
1886
|
+
Parameters: {"id"=>"2"}
|
1887
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1888
|
+
Rendered canvas_bags/show.html.erb within layouts/application (2.3ms)
|
1889
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
1890
|
+
|
1891
|
+
|
1892
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:37 +1100
|
1893
|
+
|
1894
|
+
|
1895
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:37 +1100
|
1896
|
+
|
1897
|
+
|
1898
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:37 +1100
|
1899
|
+
|
1900
|
+
|
1901
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:37 +1100
|
1902
|
+
|
1903
|
+
|
1904
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:37 +1100
|
1905
|
+
|
1906
|
+
|
1907
|
+
Started GET "/canvas_bags/new" for 127.0.0.1 at 2014-03-20 17:13:55 +1100
|
1908
|
+
Processing by CanvasBagsController#new as HTML
|
1909
|
+
Rendered canvas_bags/_form.html.erb (3.7ms)
|
1910
|
+
Rendered canvas_bags/new.html.erb within layouts/application (4.4ms)
|
1911
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
1912
|
+
|
1913
|
+
|
1914
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:55 +1100
|
1915
|
+
|
1916
|
+
|
1917
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:55 +1100
|
1918
|
+
|
1919
|
+
|
1920
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:55 +1100
|
1921
|
+
|
1922
|
+
|
1923
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:13:55 +1100
|
1924
|
+
|
1925
|
+
|
1926
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:13:55 +1100
|
1927
|
+
|
1928
|
+
|
1929
|
+
Started POST "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1930
|
+
Processing by CanvasBagsController#create as HTML
|
1931
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"test", "material"=>"test", "straps"=>"1"}, "commit"=>"Create Canvas bag"}
|
1932
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1933
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "canvas_bags" ("colour", "created_at", "material", "straps", "updated_at") VALUES (?, ?, ?, ?, ?) [["colour", "test"], ["created_at", Thu, 20 Mar 2014 06:14:15 UTC +00:00], ["material", "test"], ["straps", true], ["updated_at", Thu, 20 Mar 2014 06:14:15 UTC +00:00]]
|
1934
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
1935
|
+
Redirected to http://localhost:3000/canvas_bags/3
|
1936
|
+
Completed 302 Found in 16ms (ActiveRecord: 2.2ms)
|
1937
|
+
|
1938
|
+
|
1939
|
+
Started GET "/canvas_bags/3" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1940
|
+
Processing by CanvasBagsController#show as HTML
|
1941
|
+
Parameters: {"id"=>"3"}
|
1942
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "3"]]
|
1943
|
+
Rendered canvas_bags/show.html.erb within layouts/application (1.2ms)
|
1944
|
+
Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)
|
1945
|
+
|
1946
|
+
|
1947
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1948
|
+
|
1949
|
+
|
1950
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1951
|
+
|
1952
|
+
|
1953
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1954
|
+
|
1955
|
+
|
1956
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1957
|
+
|
1958
|
+
|
1959
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:14:15 +1100
|
1960
|
+
|
1961
|
+
|
1962
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:14:19 +1100
|
1963
|
+
Processing by CanvasBagsController#index as HTML
|
1964
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
1965
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.5ms)
|
1966
|
+
Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms)
|
1967
|
+
|
1968
|
+
|
1969
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:14:19 +1100
|
1970
|
+
|
1971
|
+
|
1972
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:14:19 +1100
|
1973
|
+
|
1974
|
+
|
1975
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:14:19 +1100
|
1976
|
+
|
1977
|
+
|
1978
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:14:19 +1100
|
1979
|
+
|
1980
|
+
|
1981
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:14:19 +1100
|
1982
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" ORDER BY "canvas_bags"."id" ASC LIMIT 1[0m
|
1983
|
+
|
1984
|
+
|
1985
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:18:31 +1100
|
1986
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1987
|
+
Processing by CanvasBagsController#show as HTML
|
1988
|
+
Parameters: {"id"=>"2"}
|
1989
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
1990
|
+
Rendered canvas_bags/show.html.erb within layouts/application (18.7ms)
|
1991
|
+
Completed 200 OK in 51ms (Views: 41.5ms | ActiveRecord: 0.5ms)
|
1992
|
+
|
1993
|
+
|
1994
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:32 +1100
|
1995
|
+
|
1996
|
+
|
1997
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:32 +1100
|
1998
|
+
|
1999
|
+
|
2000
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:32 +1100
|
2001
|
+
|
2002
|
+
|
2003
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:32 +1100
|
2004
|
+
|
2005
|
+
|
2006
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:32 +1100
|
2007
|
+
|
2008
|
+
|
2009
|
+
Started GET "/canvas_bags/3/edit" for 127.0.0.1 at 2014-03-20 17:18:34 +1100
|
2010
|
+
Processing by CanvasBagsController#edit as HTML
|
2011
|
+
Parameters: {"id"=>"3"}
|
2012
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "3"]]
|
2013
|
+
Rendered canvas_bags/_form.html.erb (12.9ms)
|
2014
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (19.2ms)
|
2015
|
+
Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms)
|
2016
|
+
|
2017
|
+
|
2018
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:34 +1100
|
2019
|
+
|
2020
|
+
|
2021
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:34 +1100
|
2022
|
+
|
2023
|
+
|
2024
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:34 +1100
|
2025
|
+
|
2026
|
+
|
2027
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:34 +1100
|
2028
|
+
|
2029
|
+
|
2030
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:34 +1100
|
2031
|
+
|
2032
|
+
|
2033
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:18:38 +1100
|
2034
|
+
Processing by CanvasBagsController#index as HTML
|
2035
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
2036
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.5ms)
|
2037
|
+
Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.2ms)
|
2038
|
+
|
2039
|
+
|
2040
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:38 +1100
|
2041
|
+
|
2042
|
+
|
2043
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:38 +1100
|
2044
|
+
|
2045
|
+
|
2046
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:38 +1100
|
2047
|
+
|
2048
|
+
|
2049
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:38 +1100
|
2050
|
+
|
2051
|
+
|
2052
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:38 +1100
|
2053
|
+
|
2054
|
+
|
2055
|
+
Started GET "/canvas_bags/2/edit" for 127.0.0.1 at 2014-03-20 17:18:40 +1100
|
2056
|
+
Processing by CanvasBagsController#edit as HTML
|
2057
|
+
Parameters: {"id"=>"2"}
|
2058
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2059
|
+
Rendered canvas_bags/_form.html.erb (2.7ms)
|
2060
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.9ms)
|
2061
|
+
Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.2ms)
|
2062
|
+
|
2063
|
+
|
2064
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:40 +1100
|
2065
|
+
|
2066
|
+
|
2067
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:40 +1100
|
2068
|
+
|
2069
|
+
|
2070
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:40 +1100
|
2071
|
+
|
2072
|
+
|
2073
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:40 +1100
|
2074
|
+
|
2075
|
+
|
2076
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:40 +1100
|
2077
|
+
|
2078
|
+
|
2079
|
+
Started PATCH "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2080
|
+
Processing by CanvasBagsController#update as HTML
|
2081
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"npn8YtcRikNvQhyLWu1DGTUY2NoKBfQu+HCaPJPOYTM=", "canvas_bag"=>{"colour"=>"greener6", "material"=>"hessian", "straps"=>"0"}, "commit"=>"Update Canvas bag", "id"=>"2"}
|
2082
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
2083
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2084
|
+
[1m[35mSQL (2.7ms)[0m UPDATE "canvas_bags" SET "colour" = ?, "updated_at" = ? WHERE "canvas_bags"."id" = 2 [["colour", "greener6"], ["updated_at", Thu, 20 Mar 2014 06:18:47 UTC +00:00]]
|
2085
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
2086
|
+
Redirected to http://localhost:3000/canvas_bags/2
|
2087
|
+
Completed 302 Found in 9ms (ActiveRecord: 3.7ms)
|
2088
|
+
|
2089
|
+
|
2090
|
+
Started GET "/canvas_bags/2" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2091
|
+
Processing by CanvasBagsController#show as HTML
|
2092
|
+
Parameters: {"id"=>"2"}
|
2093
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "2"]]
|
2094
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.9ms)
|
2095
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
|
2096
|
+
|
2097
|
+
|
2098
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2099
|
+
|
2100
|
+
|
2101
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2102
|
+
|
2103
|
+
|
2104
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2105
|
+
|
2106
|
+
|
2107
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2108
|
+
|
2109
|
+
|
2110
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:47 +1100
|
2111
|
+
|
2112
|
+
|
2113
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:18:49 +1100
|
2114
|
+
Processing by CanvasBagsController#index as HTML
|
2115
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags"[0m
|
2116
|
+
Rendered canvas_bags/index.html.erb within layouts/application (1.5ms)
|
2117
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
2118
|
+
|
2119
|
+
|
2120
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:49 +1100
|
2121
|
+
|
2122
|
+
|
2123
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:49 +1100
|
2124
|
+
|
2125
|
+
|
2126
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:49 +1100
|
2127
|
+
|
2128
|
+
|
2129
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:49 +1100
|
2130
|
+
|
2131
|
+
|
2132
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:49 +1100
|
2133
|
+
|
2134
|
+
|
2135
|
+
Started GET "/canvas_bags/3/edit" for 127.0.0.1 at 2014-03-20 17:18:54 +1100
|
2136
|
+
Processing by CanvasBagsController#edit as HTML
|
2137
|
+
Parameters: {"id"=>"3"}
|
2138
|
+
[1m[35mCanvasBag Load (0.1ms)[0m SELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1 [["id", "3"]]
|
2139
|
+
Rendered canvas_bags/_form.html.erb (2.7ms)
|
2140
|
+
Rendered canvas_bags/edit.html.erb within layouts/application (3.6ms)
|
2141
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.1ms)
|
2142
|
+
|
2143
|
+
|
2144
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:54 +1100
|
2145
|
+
|
2146
|
+
|
2147
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:54 +1100
|
2148
|
+
|
2149
|
+
|
2150
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:54 +1100
|
2151
|
+
|
2152
|
+
|
2153
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:18:54 +1100
|
2154
|
+
|
2155
|
+
|
2156
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:18:54 +1100
|
2157
|
+
|
2158
|
+
|
2159
|
+
Started GET "/canvas_bags/3" for 127.0.0.1 at 2014-03-20 17:19:41 +1100
|
2160
|
+
Processing by CanvasBagsController#show as HTML
|
2161
|
+
Parameters: {"id"=>"3"}
|
2162
|
+
[1m[36mCanvasBag Load (0.1ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" WHERE "canvas_bags"."id" = ? LIMIT 1[0m [["id", "3"]]
|
2163
|
+
Rendered canvas_bags/show.html.erb within layouts/application (0.9ms)
|
2164
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
2165
|
+
|
2166
|
+
|
2167
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:19:41 +1100
|
2168
|
+
|
2169
|
+
|
2170
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:19:41 +1100
|
2171
|
+
|
2172
|
+
|
2173
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:19:41 +1100
|
2174
|
+
|
2175
|
+
|
2176
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:19:41 +1100
|
2177
|
+
|
2178
|
+
|
2179
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:19:41 +1100
|
2180
|
+
|
2181
|
+
|
2182
|
+
Started GET "/canvas_bags" for 127.0.0.1 at 2014-03-20 17:24:01 +1100
|
2183
|
+
Processing by CanvasBagsController#index as HTML
|
2184
|
+
[1m[35mCanvasBag Load (0.2ms)[0m SELECT "canvas_bags".* FROM "canvas_bags"
|
2185
|
+
Rendered canvas_bags/index.html.erb within layouts/application (2.5ms)
|
2186
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms)
|
2187
|
+
|
2188
|
+
|
2189
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-20 17:24:01 +1100
|
2190
|
+
|
2191
|
+
|
2192
|
+
Started GET "/assets/canvas_bags.css?body=1" for 127.0.0.1 at 2014-03-20 17:24:01 +1100
|
2193
|
+
|
2194
|
+
|
2195
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-20 17:24:01 +1100
|
2196
|
+
|
2197
|
+
|
2198
|
+
Started GET "/assets/canvas_bags.js?body=1" for 127.0.0.1 at 2014-03-20 17:24:01 +1100
|
2199
|
+
|
2200
|
+
|
2201
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-20 17:24:01 +1100
|
2202
|
+
[1m[36mCanvasBag Load (0.2ms)[0m [1mSELECT "canvas_bags".* FROM "canvas_bags" ORDER BY "canvas_bags"."id" ASC LIMIT 1[0m
|
2203
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2204
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2205
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2206
|
+
Migrating to CreateToteBags (20140314082207)
|
2207
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2208
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "tote_bags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "colour" varchar(255), "material" varchar(255), "straps" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
2209
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140314082207"]]
|
2210
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
2211
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2212
|
+
|
2213
|
+
|
2214
|
+
Started GET "/" for 127.0.0.1 at 2014-03-21 17:08:21 +1100
|
2215
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2216
|
+
Processing by Rails::WelcomeController#index as HTML
|
2217
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-4.0.3/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
|
2218
|
+
Completed 200 OK in 33ms (Views: 32.9ms | ActiveRecord: 0.0ms)
|
2219
|
+
|
2220
|
+
|
2221
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:08:25 +1100
|
2222
|
+
Processing by ToteBagsController#index as HTML
|
2223
|
+
[1m[35mToteBag Load (0.2ms)[0m SELECT "tote_bags".* FROM "tote_bags"
|
2224
|
+
Rendered tote_bags/index.html.erb within layouts/application (1.0ms)
|
2225
|
+
Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.2ms)
|
2226
|
+
|
2227
|
+
|
2228
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:08:25 +1100
|
2229
|
+
|
2230
|
+
|
2231
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:08:25 +1100
|
2232
|
+
|
2233
|
+
|
2234
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:08:25 +1100
|
2235
|
+
|
2236
|
+
|
2237
|
+
Started GET "/tote_bags/new" for 127.0.0.1 at 2014-03-21 17:08:27 +1100
|
2238
|
+
Processing by ToteBagsController#new as HTML
|
2239
|
+
Rendered tote_bags/_form.html.erb (20.0ms)
|
2240
|
+
Rendered tote_bags/new.html.erb within layouts/application (25.2ms)
|
2241
|
+
Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.3ms)
|
2242
|
+
|
2243
|
+
|
2244
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:08:27 +1100
|
2245
|
+
|
2246
|
+
|
2247
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:08:27 +1100
|
2248
|
+
|
2249
|
+
|
2250
|
+
Started POST "/tote_bags" for 127.0.0.1 at 2014-03-21 17:08:36 +1100
|
2251
|
+
Processing by ToteBagsController#create as HTML
|
2252
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vv+a5Yen16nRAkw/C2QeZE9BRmgJ2TXda3bcl8ez/LU=", "tote_bag"=>{"colour"=>"white", "material"=>"not sure", "straps"=>"1"}, "commit"=>"Create Tote bag"}
|
2253
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2254
|
+
[1m[35mSQL (29.9ms)[0m INSERT INTO "tote_bags" ("colour", "created_at", "material", "straps", "updated_at") VALUES (?, ?, ?, ?, ?) [["colour", "white"], ["created_at", Fri, 21 Mar 2014 06:08:36 UTC +00:00], ["material", "not sure"], ["straps", true], ["updated_at", Fri, 21 Mar 2014 06:08:36 UTC +00:00]]
|
2255
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
2256
|
+
Redirected to http://localhost:3000/tote_bags/1
|
2257
|
+
Completed 302 Found in 35ms (ActiveRecord: 30.7ms)
|
2258
|
+
|
2259
|
+
|
2260
|
+
Started GET "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:08:36 +1100
|
2261
|
+
Processing by ToteBagsController#show as HTML
|
2262
|
+
Parameters: {"id"=>"1"}
|
2263
|
+
[1m[35mToteBag Load (0.2ms)[0m SELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
2264
|
+
Rendered tote_bags/show.html.erb within layouts/application (1.3ms)
|
2265
|
+
Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
2266
|
+
|
2267
|
+
|
2268
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:08:36 +1100
|
2269
|
+
|
2270
|
+
|
2271
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:08:36 +1100
|
2272
|
+
|
2273
|
+
|
2274
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:08:42 +1100
|
2275
|
+
Processing by ToteBagsController#index as HTML
|
2276
|
+
[1m[36mToteBag Load (0.2ms)[0m [1mSELECT "tote_bags".* FROM "tote_bags"[0m
|
2277
|
+
Rendered tote_bags/index.html.erb within layouts/application (0.8ms)
|
2278
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
2279
|
+
|
2280
|
+
|
2281
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:08:42 +1100
|
2282
|
+
|
2283
|
+
|
2284
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:08:42 +1100
|
2285
|
+
|
2286
|
+
|
2287
|
+
Started GET "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:08:58 +1100
|
2288
|
+
Processing by ToteBagsController#show as HTML
|
2289
|
+
Parameters: {"id"=>"1"}
|
2290
|
+
[1m[35mToteBag Load (0.2ms)[0m SELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
2291
|
+
Rendered tote_bags/show.html.erb within layouts/application (0.7ms)
|
2292
|
+
Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.2ms)
|
2293
|
+
|
2294
|
+
|
2295
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:08:58 +1100
|
2296
|
+
|
2297
|
+
|
2298
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:08:58 +1100
|
2299
|
+
|
2300
|
+
|
2301
|
+
Started GET "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:09:32 +1100
|
2302
|
+
Processing by ToteBagsController#show as HTML
|
2303
|
+
Parameters: {"id"=>"1"}
|
2304
|
+
[1m[36mToteBag Load (0.2ms)[0m [1mSELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2305
|
+
Rendered tote_bags/show.html.erb within layouts/application (0.8ms)
|
2306
|
+
Completed 200 OK in 13ms (Views: 3.8ms | ActiveRecord: 0.7ms)
|
2307
|
+
|
2308
|
+
|
2309
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:09:32 +1100
|
2310
|
+
|
2311
|
+
|
2312
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:09:32 +1100
|
2313
|
+
|
2314
|
+
|
2315
|
+
Started GET "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:10:52 +1100
|
2316
|
+
Processing by ToteBagsController#show as HTML
|
2317
|
+
Parameters: {"id"=>"1"}
|
2318
|
+
[1m[35mToteBag Load (0.1ms)[0m SELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
2319
|
+
Rendered tote_bags/show.html.erb within layouts/application (0.8ms)
|
2320
|
+
Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
2321
|
+
|
2322
|
+
|
2323
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:10:52 +1100
|
2324
|
+
|
2325
|
+
|
2326
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:10:52 +1100
|
2327
|
+
|
2328
|
+
|
2329
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:12:05 +1100
|
2330
|
+
Processing by ToteBagsController#index as HTML
|
2331
|
+
[1m[36mToteBag Load (0.2ms)[0m [1mSELECT "tote_bags".* FROM "tote_bags"[0m
|
2332
|
+
Rendered tote_bags/index.html.erb within layouts/application (1.0ms)
|
2333
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
2334
|
+
|
2335
|
+
|
2336
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:05 +1100
|
2337
|
+
|
2338
|
+
|
2339
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:05 +1100
|
2340
|
+
|
2341
|
+
|
2342
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:12:05 +1100
|
2343
|
+
|
2344
|
+
|
2345
|
+
Started GET "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:12:06 +1100
|
2346
|
+
Processing by ToteBagsController#show as HTML
|
2347
|
+
Parameters: {"id"=>"1"}
|
2348
|
+
[1m[35mToteBag Load (0.2ms)[0m SELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
2349
|
+
Rendered tote_bags/show.html.erb within layouts/application (0.9ms)
|
2350
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms)
|
2351
|
+
|
2352
|
+
|
2353
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:06 +1100
|
2354
|
+
|
2355
|
+
|
2356
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:06 +1100
|
2357
|
+
|
2358
|
+
|
2359
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:12:06 +1100
|
2360
|
+
|
2361
|
+
|
2362
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:12:08 +1100
|
2363
|
+
Processing by ToteBagsController#index as HTML
|
2364
|
+
[1m[36mToteBag Load (0.3ms)[0m [1mSELECT "tote_bags".* FROM "tote_bags"[0m
|
2365
|
+
Rendered tote_bags/index.html.erb within layouts/application (0.9ms)
|
2366
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
|
2367
|
+
|
2368
|
+
|
2369
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:08 +1100
|
2370
|
+
|
2371
|
+
|
2372
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:08 +1100
|
2373
|
+
|
2374
|
+
|
2375
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:12:08 +1100
|
2376
|
+
|
2377
|
+
|
2378
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:12:09 +1100
|
2379
|
+
Processing by ToteBagsController#index as HTML
|
2380
|
+
[1m[35mToteBag Load (0.3ms)[0m SELECT "tote_bags".* FROM "tote_bags"
|
2381
|
+
Rendered tote_bags/index.html.erb within layouts/application (1.1ms)
|
2382
|
+
Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.3ms)
|
2383
|
+
|
2384
|
+
|
2385
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:09 +1100
|
2386
|
+
|
2387
|
+
|
2388
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:12:09 +1100
|
2389
|
+
|
2390
|
+
|
2391
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:12:09 +1100
|
2392
|
+
|
2393
|
+
|
2394
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:13:47 +1100
|
2395
|
+
Processing by ToteBagsController#index as HTML
|
2396
|
+
[1m[36mToteBag Load (0.2ms)[0m [1mSELECT "tote_bags".* FROM "tote_bags"[0m
|
2397
|
+
Rendered tote_bags/index.html.erb within layouts/application (0.7ms)
|
2398
|
+
Completed 500 Internal Server Error in 13ms
|
2399
|
+
|
2400
|
+
ActionView::Template::Error (couldn't find file 'jquery-ujs'
|
2401
|
+
(in /Users/andrewcroome/src/bird-on-it/test/dummy/app/assets/javascripts/application.js:13)):
|
2402
|
+
3: <head>
|
2403
|
+
4: <title>Dummy</title>
|
2404
|
+
5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
|
2405
|
+
6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
|
2406
|
+
7: <%= csrf_meta_tags %>
|
2407
|
+
8: </head>
|
2408
|
+
9: <body>
|
2409
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__4508208055620503958_70310675665980'
|
2410
|
+
app/controllers/tote_bags_controller.rb:7:in `index'
|
2411
|
+
|
2412
|
+
|
2413
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
2414
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
2415
|
+
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-4.0.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
|
2416
|
+
|
2417
|
+
|
2418
|
+
Started GET "/tote_bags" for 127.0.0.1 at 2014-03-21 17:14:10 +1100
|
2419
|
+
Processing by ToteBagsController#index as HTML
|
2420
|
+
[1m[35mToteBag Load (0.2ms)[0m SELECT "tote_bags".* FROM "tote_bags"
|
2421
|
+
Rendered tote_bags/index.html.erb within layouts/application (0.9ms)
|
2422
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
2423
|
+
|
2424
|
+
|
2425
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:14:10 +1100
|
2426
|
+
|
2427
|
+
|
2428
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:14:10 +1100
|
2429
|
+
|
2430
|
+
|
2431
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:14:10 +1100
|
2432
|
+
|
2433
|
+
|
2434
|
+
Started GET "/tote_bags/1/edit" for 127.0.0.1 at 2014-03-21 17:14:12 +1100
|
2435
|
+
Processing by ToteBagsController#edit as HTML
|
2436
|
+
Parameters: {"id"=>"1"}
|
2437
|
+
[1m[36mToteBag Load (0.2ms)[0m [1mSELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2438
|
+
Rendered tote_bags/_form.html.erb (4.8ms)
|
2439
|
+
Rendered tote_bags/edit.html.erb within layouts/application (6.3ms)
|
2440
|
+
Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms)
|
2441
|
+
|
2442
|
+
|
2443
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:14:12 +1100
|
2444
|
+
|
2445
|
+
|
2446
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:14:12 +1100
|
2447
|
+
|
2448
|
+
|
2449
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:14:12 +1100
|
2450
|
+
|
2451
|
+
|
2452
|
+
Started PATCH "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:14:14 +1100
|
2453
|
+
Processing by ToteBagsController#update as HTML
|
2454
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vv+a5Yen16nRAkw/C2QeZE9BRmgJ2TXda3bcl8ez/LU=", "tote_bag"=>{"colour"=>"white2", "material"=>"not sure", "straps"=>"1"}, "commit"=>"Update Tote bag", "id"=>"1"}
|
2455
|
+
[1m[35mToteBag Load (0.2ms)[0m SELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
2456
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2457
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "tote_bags" SET "colour" = ?, "updated_at" = ? WHERE "tote_bags"."id" = 1 [["colour", "white2"], ["updated_at", Fri, 21 Mar 2014 06:14:14 UTC +00:00]]
|
2458
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
2459
|
+
Redirected to http://localhost:3000/tote_bags/1
|
2460
|
+
Completed 302 Found in 8ms (ActiveRecord: 1.6ms)
|
2461
|
+
|
2462
|
+
|
2463
|
+
Started GET "/tote_bags/1" for 127.0.0.1 at 2014-03-21 17:14:14 +1100
|
2464
|
+
Processing by ToteBagsController#show as HTML
|
2465
|
+
Parameters: {"id"=>"1"}
|
2466
|
+
[1m[35mToteBag Load (0.1ms)[0m SELECT "tote_bags".* FROM "tote_bags" WHERE "tote_bags"."id" = ? LIMIT 1 [["id", "1"]]
|
2467
|
+
Rendered tote_bags/show.html.erb within layouts/application (1.0ms)
|
2468
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
2469
|
+
|
2470
|
+
|
2471
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-21 17:14:14 +1100
|
2472
|
+
|
2473
|
+
|
2474
|
+
Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-03-21 17:14:14 +1100
|
2475
|
+
|
2476
|
+
|
2477
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-21 17:14:14 +1100
|