bread 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0e8027cf13f5a7e44e18d3f34c45603caf4bf29e
4
- data.tar.gz: c2683c97974e9b483bf1ad3e6cef4a941cf16a7e
3
+ metadata.gz: 9dddf9bec9d9c5924da11d0161408b651ca33355
4
+ data.tar.gz: 308292d29923318b87df9f048f54254d98356015
5
5
  SHA512:
6
- metadata.gz: fe0369dcd7ccb742df886727440cb5d2713cd6addcce04b40cec45278d9e1f9e9c0c57e179fe0015396fead0ac242efa16b223af3e9043b03970717cd4adeeb0
7
- data.tar.gz: 048f1ef5da222f6be35be27b4a44677f1005bd3910d5d3da382db0921567868102d8a815e4ef4ed143225fb0bb320180588afa1b0ea5ebbe3b6c6472e3bb6712
6
+ metadata.gz: feee9d3d20681bdff9933768e79d768cd867072eea640e421df9c8518b73e7ab1460e57fba912fc56d549abc87afdce2cf5b095a92d5c5ab70f2b4079dde620c
7
+ data.tar.gz: 388b949a593d771631f42cb2df673d91c5d2877d501823895fd1c97171035d9eb5239c5edb16d035f681abeb1ff51610315dfc69b89b3356703256ac43e6f3de
data/.gitignore CHANGED
@@ -15,3 +15,8 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+
19
+ test/dummy/log/*.log
20
+ test/dummy/db/*.sqlite3*
21
+ test/dummy/public/system
22
+ test/dummy/public/uploads
data/lib/bread.rb CHANGED
@@ -12,4 +12,7 @@ require "bread/config"
12
12
 
13
13
 
14
14
  module Bread
15
+ def self.config(&block)
16
+ Config.instance.config(&block)
17
+ end
15
18
  end
data/lib/bread/config.rb CHANGED
@@ -9,9 +9,8 @@ module Bread
9
9
  if File.exists? config_file
10
10
  load config_file
11
11
  else
12
- puts "ACHEI NAO".on_red
13
- # `rails g bread:install`
14
- # self.reload!
12
+ `rails g bread:install`
13
+ self.reload!
15
14
  end
16
15
  end
17
16
 
@@ -20,11 +19,6 @@ module Bread
20
19
  cmd.instance_eval(&block)
21
20
  @crumb_definitions = cmd.crumb_definitions
22
21
  end
23
-
24
-
25
-
26
-
27
-
28
-
22
+
29
23
  end
30
24
  end
@@ -10,8 +10,13 @@ module Bread
10
10
  end
11
11
 
12
12
  def bread_keys
13
+ block = self.class.bread_block
14
+ if block.nil?
15
+ puts "breadcrumbs: HEY! write some breadcrumbs for #{controller_name}##{action_name}".black.on_light_yellow
16
+ return []
17
+ end
13
18
  cmd = ControllerLayoutCommand.new(self)
14
- cmd.instance_eval(&self.class.bread_block)
19
+ cmd.instance_eval(&block)
15
20
  cmd.keys
16
21
  end
17
22
 
data/lib/bread/helper.rb CHANGED
@@ -6,7 +6,7 @@ module Bread
6
6
 
7
7
  crumb_definitions = Config.instance.crumb_definitions
8
8
  keys_for_current_action = controller.bread_keys
9
-
9
+
10
10
  @crumbs = []
11
11
  keys_for_current_action.map do |key|
12
12
  crumbs_to_block = crumb_definitions[key] || :crumb_definitions_not_found
data/lib/bread/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Bread
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -1,15 +1,12 @@
1
1
  Bread.config do
2
2
 
3
- # # products
4
- # key(:all_products) { bread_to("Contacts", :products, icon: 'list') }
5
- # key(:make_product) { bread_to("Add", [:products, :new], icon: 'plus', target: '_blank') }
6
- # key(:products_by_category) { bread_to(@category.name, [:products, :by_category, @category], icon: 'filter') }
7
- # key(:view_product) { bread_to(@product.name, @product) }
8
- # key(:change_product) { bread_to("Edit", [@product, :edit]) }
9
- # key(:product_timeline) { bread_to("Timeline", [@product, :timeline]) }
10
- # key(:product_year) { bread_to(@year, [@product, :timeline, @year]) }
11
- # key(:product_month) { bread_to(@month, [@product, :timeline, @year, @month]) }
12
- # key(:product_day) { bread_to(@day, [@product, :timeline, @year, @month, @day]) }
13
- # key(:product_time) { bread_to(@time, [@product, :timeline, @year, @month, @day, @time]) }
3
+ key(:root) { crumb_to("Root", root_path, icon: 'home') }
14
4
 
5
+ # products
6
+ key(:all_products) { crumb_to("Products", :products, icon: 'list') }
7
+ key(:make_product) { crumb_to("Add", [:new, :product], icon: 'plus', target: '_blank') }
8
+ key(:products_by_category) { crumb_to(@category.name, by_category_products_path(@category), icon: 'filter') }
9
+ key(:view_product) { crumb_to(@product.name, @product) }
10
+ key(:change_product) { crumb_to("Edit", [:edit, @product]) }
11
+
15
12
  end
@@ -1,9 +1,9 @@
1
- Bread::Config.instance.config do
1
+ Bread.config do
2
2
 
3
3
  key(:root) { crumb_to("Root", root_path, icon: 'home') }
4
4
 
5
5
  # products
6
- key(:all_products) { crumb_to("Contacts", :products, icon: 'list') }
6
+ key(:all_products) { crumb_to("Products", :products, icon: 'list') }
7
7
  key(:make_product) { crumb_to("Add", [:new, :product], icon: 'plus', target: '_blank') }
8
8
  key(:products_by_category) { crumb_to('@category.name', by_category_products_path(@category), icon: 'filter') }
9
9
  key(:view_product) { crumb_to(@product.name, @product) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bread
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Pinto
@@ -114,8 +114,6 @@ files:
114
114
  - test/dummy/db/test.sqlite3
115
115
  - test/dummy/lib/assets/.keep
116
116
  - test/dummy/log/.keep
117
- - test/dummy/log/development.log
118
- - test/dummy/log/test.log
119
117
  - test/dummy/public/404.html
120
118
  - test/dummy/public/422.html
121
119
  - test/dummy/public/500.html
@@ -201,8 +199,6 @@ test_files:
201
199
  - test/dummy/db/test.sqlite3
202
200
  - test/dummy/lib/assets/.keep
203
201
  - test/dummy/log/.keep
204
- - test/dummy/log/development.log
205
- - test/dummy/log/test.log
206
202
  - test/dummy/public/404.html
207
203
  - test/dummy/public/422.html
208
204
  - test/dummy/public/500.html
@@ -1,886 +0,0 @@
1
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- Migrating to CreateProducts (20140203163238)
5
-  (0.1ms) begin transaction
6
-  (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "category" varchar(255), "created_at" datetime, "updated_at" datetime) 
7
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140203163238"]]
8
-  (0.9ms) commit transaction
9
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
-  (1.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "category" varchar(255), "created_at" datetime, "updated_at" datetime) 
11
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
12
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
-  (0.1ms) SELECT version FROM "schema_migrations"
14
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140203163238')
15
-  (10.9ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "category" varchar(255), "created_at" datetime, "updated_at" datetime) 
16
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
17
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
-  (0.2ms) SELECT version FROM "schema_migrations"
19
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140203163238')
20
-  (3.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "category" varchar(255), "created_at" datetime, "updated_at" datetime) 
21
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
22
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
-  (0.2ms) SELECT version FROM "schema_migrations"
24
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140203163238')
25
-
26
-
27
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:14:46 -0500
28
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
- Processing by ProductsController#index as HTML
30
- Product Load (0.5ms) SELECT "products".* FROM "products"
31
- Rendered products/index.html.erb within layouts/application (4.9ms)
32
- Completed 200 OK in 56ms (Views: 52.3ms | ActiveRecord: 0.5ms)
33
-
34
-
35
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:15:25 -0500
36
- Processing by ProductsController#index as HTML
37
- Product Load (0.2ms) SELECT "products".* FROM "products"
38
- Rendered products/index.html.erb within layouts/application (1.3ms)
39
- Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.2ms)
40
-
41
-
42
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:15:32 -0500
43
- Processing by ProductsController#index as HTML
44
- Product Load (0.4ms) SELECT "products".* FROM "products"
45
- Rendered products/index.html.erb within layouts/application (2.0ms)
46
- Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.4ms)
47
-
48
-
49
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:15:43 -0500
50
- Processing by ProductsController#index as HTML
51
- Product Load (0.1ms) SELECT "products".* FROM "products"
52
- Rendered products/index.html.erb within layouts/application (0.9ms)
53
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
54
-
55
-
56
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:15:58 -0500
57
- Processing by ProductsController#index as HTML
58
- Product Load (0.2ms) SELECT "products".* FROM "products"
59
- Rendered products/index.html.erb within layouts/application (1.3ms)
60
- Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.2ms)
61
-
62
-
63
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:15:59 -0500
64
- Processing by ProductsController#index as HTML
65
- Product Load (0.1ms) SELECT "products".* FROM "products"
66
- Rendered products/index.html.erb within layouts/application (0.7ms)
67
- Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.1ms)
68
-
69
-
70
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:26 -0500
71
- Processing by ProductsController#index as HTML
72
- Product Load (0.2ms) SELECT "products".* FROM "products"
73
- Rendered products/index.html.erb within layouts/application (1.5ms)
74
- Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms)
75
-
76
-
77
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:35 -0500
78
- Processing by ProductsController#index as HTML
79
- Product Load (0.2ms) SELECT "products".* FROM "products"
80
- Rendered products/index.html.erb within layouts/application (1.2ms)
81
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
82
-
83
-
84
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:52 -0500
85
- Processing by ProductsController#index as HTML
86
- Product Load (0.2ms) SELECT "products".* FROM "products"
87
- Rendered products/index.html.erb within layouts/application (0.9ms)
88
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.2ms)
89
-
90
-
91
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:53 -0500
92
- Processing by ProductsController#index as HTML
93
- Product Load (0.1ms) SELECT "products".* FROM "products"
94
- Rendered products/index.html.erb within layouts/application (0.9ms)
95
- Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
96
-
97
-
98
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:54 -0500
99
- Processing by ProductsController#index as HTML
100
- Product Load (0.1ms) SELECT "products".* FROM "products"
101
- Rendered products/index.html.erb within layouts/application (0.8ms)
102
- Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
103
-
104
-
105
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:54 -0500
106
- Processing by ProductsController#index as HTML
107
- Product Load (0.2ms) SELECT "products".* FROM "products"
108
- Rendered products/index.html.erb within layouts/application (1.4ms)
109
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.2ms)
110
-
111
-
112
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:55 -0500
113
- Processing by ProductsController#index as HTML
114
- Product Load (0.1ms) SELECT "products".* FROM "products"
115
- Rendered products/index.html.erb within layouts/application (0.7ms)
116
- Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
117
-
118
-
119
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:16:59 -0500
120
- Processing by ProductsController#index as HTML
121
- Product Load (0.1ms) SELECT "products".* FROM "products"
122
- Rendered products/index.html.erb within layouts/application (0.8ms)
123
- Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.1ms)
124
-
125
-
126
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:00 -0500
127
- Processing by ProductsController#index as HTML
128
- Product Load (0.2ms) SELECT "products".* FROM "products"
129
- Rendered products/index.html.erb within layouts/application (2.1ms)
130
- Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)
131
-
132
-
133
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:22 -0500
134
- Processing by ProductsController#index as HTML
135
- Product Load (0.1ms) SELECT "products".* FROM "products"
136
- Rendered products/index.html.erb within layouts/application (0.7ms)
137
- Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
138
-
139
-
140
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:23 -0500
141
- Processing by ProductsController#index as HTML
142
- Product Load (0.3ms) SELECT "products".* FROM "products"
143
- Rendered products/index.html.erb within layouts/application (0.9ms)
144
- Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms)
145
-
146
-
147
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:24 -0500
148
- Processing by ProductsController#index as HTML
149
- Product Load (0.1ms) SELECT "products".* FROM "products"
150
- Rendered products/index.html.erb within layouts/application (0.7ms)
151
- Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
152
-
153
-
154
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:41 -0500
155
- Processing by ProductsController#index as HTML
156
- Product Load (0.2ms) SELECT "products".* FROM "products"
157
- Rendered products/index.html.erb within layouts/application (0.9ms)
158
- Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.2ms)
159
-
160
-
161
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:42 -0500
162
- Processing by ProductsController#index as HTML
163
- Product Load (0.5ms) SELECT "products".* FROM "products"
164
- Rendered products/index.html.erb within layouts/application (2.2ms)
165
- Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.5ms)
166
-
167
-
168
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:51 -0500
169
- Processing by ProductsController#index as HTML
170
- Product Load (0.2ms) SELECT "products".* FROM "products"
171
- Rendered products/index.html.erb within layouts/application (0.9ms)
172
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
173
-
174
-
175
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:17:51 -0500
176
- Processing by ProductsController#index as HTML
177
- Product Load (0.2ms) SELECT "products".* FROM "products"
178
- Rendered products/index.html.erb within layouts/application (1.4ms)
179
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
180
-
181
-
182
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:18:24 -0500
183
- Processing by ProductsController#index as HTML
184
- Product Load (0.1ms) SELECT "products".* FROM "products"
185
- Rendered products/index.html.erb within layouts/application (0.8ms)
186
- Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
187
-
188
-
189
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:18:25 -0500
190
- Processing by ProductsController#index as HTML
191
- Product Load (0.2ms) SELECT "products".* FROM "products"
192
- Rendered products/index.html.erb within layouts/application (1.2ms)
193
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms)
194
-
195
-
196
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:18:26 -0500
197
- Processing by ProductsController#index as HTML
198
- Product Load (0.1ms) SELECT "products".* FROM "products"
199
- Rendered products/index.html.erb within layouts/application (0.7ms)
200
- Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
201
-
202
-
203
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:18:26 -0500
204
- Processing by ProductsController#index as HTML
205
- Product Load (0.2ms) SELECT "products".* FROM "products"
206
- Rendered products/index.html.erb within layouts/application (0.9ms)
207
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms)
208
-
209
-
210
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:19:20 -0500
211
- Processing by ProductsController#index as HTML
212
- Product Load (0.2ms) SELECT "products".* FROM "products"
213
- Rendered products/index.html.erb within layouts/application (1.1ms)
214
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.2ms)
215
-
216
-
217
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:23:51 -0500
218
- Processing by ProductsController#index as HTML
219
- Product Load (1.1ms) SELECT "products".* FROM "products"
220
- Rendered products/index.html.erb within layouts/application (30.8ms)
221
- Completed 200 OK in 60ms (Views: 51.7ms | ActiveRecord: 1.1ms)
222
-
223
-
224
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:23:52 -0500
225
- Processing by ProductsController#index as HTML
226
- Product Load (0.2ms) SELECT "products".* FROM "products"
227
- Rendered products/index.html.erb within layouts/application (1.0ms)
228
- Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
229
-
230
-
231
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:03 -0500
232
- Processing by ProductsController#index as HTML
233
- Product Load (0.2ms) SELECT "products".* FROM "products"
234
- Rendered products/index.html.erb within layouts/application (2.8ms)
235
- Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms)
236
-
237
-
238
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:04 -0500
239
- Processing by ProductsController#index as HTML
240
- Product Load (0.2ms) SELECT "products".* FROM "products"
241
- Rendered products/index.html.erb within layouts/application (1.1ms)
242
- Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
243
-
244
-
245
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:06 -0500
246
- Processing by ProductsController#index as HTML
247
- Product Load (0.2ms) SELECT "products".* FROM "products"
248
- Rendered products/index.html.erb within layouts/application (1.0ms)
249
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.2ms)
250
-
251
-
252
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:11 -0500
253
- Processing by ProductsController#index as HTML
254
- Product Load (0.2ms) SELECT "products".* FROM "products"
255
- Rendered products/index.html.erb within layouts/application (0.9ms)
256
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
257
-
258
-
259
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:12 -0500
260
- Processing by ProductsController#index as HTML
261
- Product Load (0.4ms) SELECT "products".* FROM "products"
262
- Rendered products/index.html.erb within layouts/application (2.0ms)
263
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.4ms)
264
-
265
-
266
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:21 -0500
267
- Processing by ProductsController#index as HTML
268
- Product Load (0.2ms) SELECT "products".* FROM "products"
269
- Rendered products/index.html.erb within layouts/application (1.2ms)
270
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms)
271
-
272
-
273
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:21 -0500
274
- Processing by ProductsController#index as HTML
275
- Product Load (0.2ms) SELECT "products".* FROM "products"
276
- Rendered products/index.html.erb within layouts/application (1.5ms)
277
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
278
-
279
-
280
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:49 -0500
281
- Processing by ProductsController#index as HTML
282
- Product Load (0.2ms) SELECT "products".* FROM "products"
283
- Rendered products/index.html.erb within layouts/application (0.9ms)
284
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.2ms)
285
-
286
-
287
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:24:58 -0500
288
- Processing by ProductsController#index as HTML
289
- Product Load (0.1ms) SELECT "products".* FROM "products"
290
- Rendered products/index.html.erb within layouts/application (0.9ms)
291
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
292
-
293
-
294
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:25:06 -0500
295
- Processing by ProductsController#index as HTML
296
- Product Load (0.3ms) SELECT "products".* FROM "products"
297
- Rendered products/index.html.erb within layouts/application (2.5ms)
298
- Completed 500 Internal Server Error in 14ms
299
-
300
- ActionView::Template::Error (undefined method `title' for {:icon=>"home", :title=>"Root", :path=>"/"}:Hash):
301
- 11: <ul id="breadcrumbs">
302
- 12: <% bread.each do |crumb| %>
303
- 13: <li data-key="<%= crumb[:key] %>">
304
- 14: <%= crumb.title.title %>
305
- 15: </li>
306
- 16: <% end %>
307
- 17: </ul>
308
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb___4147110381799962212_70278970462080'
309
- app/views/layouts/application.html.erb:12:in `each'
310
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___4147110381799962212_70278970462080'
311
-
312
-
313
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
314
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
315
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.7ms)
316
-
317
-
318
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:25:44 -0500
319
- Processing by ProductsController#index as HTML
320
- Product Load (0.2ms) SELECT "products".* FROM "products"
321
- Rendered products/index.html.erb within layouts/application (1.4ms)
322
- Completed 500 Internal Server Error in 7ms
323
-
324
- ActionView::Template::Error (undefined method `title' for {:icon=>"home", :title=>"Root", :path=>"/"}:Hash):
325
- 11: <ul id="breadcrumbs">
326
- 12: <% bread.each do |crumb| %>
327
- 13: <li data-key="<%= crumb[:key] %>">
328
- 14: <%= crumb.title.title %>
329
- 15: </li>
330
- 16: <% end %>
331
- 17: </ul>
332
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb___4147110381799962212_70278970462080'
333
- app/views/layouts/application.html.erb:12:in `each'
334
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___4147110381799962212_70278970462080'
335
-
336
-
337
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
338
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
339
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.1ms)
340
-
341
-
342
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:25:54 -0500
343
- Processing by ProductsController#index as HTML
344
- Product Load (0.3ms) SELECT "products".* FROM "products"
345
- Rendered products/index.html.erb within layouts/application (2.2ms)
346
- Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms)
347
-
348
-
349
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:26:25 -0500
350
- Processing by ProductsController#index as HTML
351
- Product Load (0.2ms) SELECT "products".* FROM "products"
352
- Rendered products/index.html.erb within layouts/application (1.3ms)
353
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
354
-
355
-
356
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:26:27 -0500
357
- Processing by ProductsController#index as HTML
358
- Product Load (0.1ms) SELECT "products".* FROM "products"
359
- Rendered products/index.html.erb within layouts/application (0.7ms)
360
- Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
361
-
362
-
363
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:26:28 -0500
364
- Processing by ProductsController#index as HTML
365
- Product Load (0.2ms) SELECT "products".* FROM "products"
366
- Rendered products/index.html.erb within layouts/application (0.9ms)
367
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
368
-
369
-
370
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:29:45 -0500
371
- Processing by ProductsController#index as HTML
372
- Product Load (0.7ms) SELECT "products".* FROM "products"
373
- Rendered products/index.html.erb within layouts/application (2.6ms)
374
- Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.7ms)
375
-
376
-
377
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:29:48 -0500
378
- Processing by ProductsController#index as HTML
379
- Product Load (0.3ms) SELECT "products".* FROM "products"
380
- Rendered products/index.html.erb within layouts/application (6.1ms)
381
- Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.3ms)
382
-
383
-
384
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:29:48 -0500
385
- Processing by ProductsController#index as HTML
386
- Product Load (0.2ms) SELECT "products".* FROM "products"
387
- Rendered products/index.html.erb within layouts/application (1.3ms)
388
- Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
389
-
390
-
391
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:29:49 -0500
392
- Processing by ProductsController#index as HTML
393
- Product Load (0.2ms) SELECT "products".* FROM "products"
394
- Rendered products/index.html.erb within layouts/application (1.4ms)
395
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms)
396
-
397
-
398
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:29:59 -0500
399
- Processing by ProductsController#index as HTML
400
- Product Load (0.2ms) SELECT "products".* FROM "products"
401
- Rendered products/index.html.erb within layouts/application (1.3ms)
402
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms)
403
-
404
-
405
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:30:00 -0500
406
- Processing by ProductsController#index as HTML
407
- Product Load (0.2ms) SELECT "products".* FROM "products"
408
- Rendered products/index.html.erb within layouts/application (1.1ms)
409
- Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)
410
-
411
-
412
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:30:01 -0500
413
- Processing by ProductsController#index as HTML
414
- Product Load (0.4ms) SELECT "products".* FROM "products"
415
- Rendered products/index.html.erb within layouts/application (1.6ms)
416
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.4ms)
417
-
418
-
419
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:30:02 -0500
420
- Processing by ProductsController#index as HTML
421
- Product Load (0.2ms) SELECT "products".* FROM "products"
422
- Rendered products/index.html.erb within layouts/application (1.1ms)
423
- Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
424
-
425
-
426
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:30:03 -0500
427
- Processing by ProductsController#index as HTML
428
- Product Load (0.1ms) SELECT "products".* FROM "products"
429
- Rendered products/index.html.erb within layouts/application (0.8ms)
430
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
431
-
432
-
433
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:30:03 -0500
434
- Processing by ProductsController#index as HTML
435
- Product Load (0.2ms) SELECT "products".* FROM "products"
436
- Rendered products/index.html.erb within layouts/application (0.9ms)
437
- Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
438
-
439
-
440
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:31:28 -0500
441
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
442
- Processing by ProductsController#index as HTML
443
- Product Load (0.5ms) SELECT "products".* FROM "products"
444
- Rendered products/index.html.erb within layouts/application (3.7ms)
445
- Completed 500 Internal Server Error in 57ms
446
-
447
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
448
- 9: <body>
449
- 10:
450
- 11: <ul id="breadcrumbs">
451
- 12: <% bread.each do |crumb| %>
452
- 13: <li data-key="<%= crumb[:key] %>">
453
- 14: <%= crumb.keys %>
454
- 15: </li>
455
- config/breadcrumbs.rb:3:in `block (2 levels) in <top (required)>'
456
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___819680760126844606_70330506249800'
457
-
458
-
459
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
460
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
461
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.6ms)
462
-
463
-
464
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:32:15 -0500
465
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
466
- Processing by ProductsController#index as HTML
467
- Product Load (0.6ms) SELECT "products".* FROM "products"
468
- Rendered products/index.html.erb within layouts/application (4.2ms)
469
- Completed 200 OK in 51ms (Views: 47.6ms | ActiveRecord: 0.6ms)
470
-
471
-
472
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:32:17 -0500
473
- Processing by ProductsController#index as HTML
474
- Product Load (0.2ms) SELECT "products".* FROM "products"
475
- Rendered products/index.html.erb within layouts/application (1.5ms)
476
- Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.2ms)
477
-
478
-
479
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:34:31 -0500
480
- Processing by ProductsController#index as HTML
481
- Product Load (0.2ms) SELECT "products".* FROM "products"
482
- Rendered products/index.html.erb within layouts/application (1.7ms)
483
- Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms)
484
-
485
-
486
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:34:40 -0500
487
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
488
- Processing by ProductsController#index as HTML
489
- Product Load (0.5ms) SELECT "products".* FROM "products"
490
- Rendered products/index.html.erb within layouts/application (3.4ms)
491
- Completed 500 Internal Server Error in 58ms
492
-
493
- ActionView::Template::Error (undefined method `[]' for #<Bread::Crumb:0x007fc5eb22dab8>):
494
- 10:
495
- 11: <ul id="breadcrumbs">
496
- 12: <% bread.each do |crumb| %>
497
- 13: <li data-key="<%= crumb[:key] %>">
498
- 14: <%= crumb.keys %>
499
- 15: </li>
500
- 16: <% end %>
501
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb__1272100775880914804_70244023597020'
502
- app/views/layouts/application.html.erb:12:in `each'
503
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__1272100775880914804_70244023597020'
504
-
505
-
506
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
507
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
508
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.7ms)
509
-
510
-
511
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:35:20 -0500
512
- Processing by ProductsController#index as HTML
513
- Product Load (0.2ms) SELECT "products".* FROM "products"
514
- Rendered products/index.html.erb within layouts/application (1.4ms)
515
- Completed 500 Internal Server Error in 9ms
516
-
517
- ActionView::Template::Error (undefined method `[]' for #<Bread::Crumb:0x007fc5eb4f4eb8>):
518
- 10:
519
- 11: <ul id="breadcrumbs">
520
- 12: <% bread.each do |crumb| %>
521
- 13: <li data-key="<%= crumb[:key] %>">
522
- 14: <%= crumb.keys %>
523
- 15: </li>
524
- 16: <% end %>
525
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb__1272100775880914804_70244023597020'
526
- app/views/layouts/application.html.erb:12:in `each'
527
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__1272100775880914804_70244023597020'
528
-
529
-
530
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
531
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
532
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.9ms)
533
-
534
-
535
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:35:21 -0500
536
- Processing by ProductsController#index as HTML
537
- Product Load (0.2ms) SELECT "products".* FROM "products"
538
- Rendered products/index.html.erb within layouts/application (1.0ms)
539
- Completed 500 Internal Server Error in 5ms
540
-
541
- ActionView::Template::Error (undefined method `[]' for #<Bread::Crumb:0x007fc5ec371608>):
542
- 10:
543
- 11: <ul id="breadcrumbs">
544
- 12: <% bread.each do |crumb| %>
545
- 13: <li data-key="<%= crumb[:key] %>">
546
- 14: <%= crumb.keys %>
547
- 15: </li>
548
- 16: <% end %>
549
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb__1272100775880914804_70244023597020'
550
- app/views/layouts/application.html.erb:12:in `each'
551
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__1272100775880914804_70244023597020'
552
-
553
-
554
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
555
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
556
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.2ms)
557
-
558
-
559
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:36:06 -0500
560
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
561
- Processing by ProductsController#index as HTML
562
- Product Load (0.4ms) SELECT "products".* FROM "products"
563
- Rendered products/index.html.erb within layouts/application (4.2ms)
564
- Completed 500 Internal Server Error in 60ms
565
-
566
- ActionView::Template::Error (undefined method `keys' for #<Bread::Crumb:0x007fcf44cb7d28>):
567
- 11: <ul id="breadcrumbs">
568
- 12: <% bread.each do |crumb| %>
569
- 13: <li data-key="<%= crumb[:key] %>">
570
- 14: <%= crumb.keys %>
571
- 15: </li>
572
- 16: <% end %>
573
- 17: </ul>
574
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb___643965220189377158_70264094073740'
575
- app/views/layouts/application.html.erb:12:in `each'
576
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___643965220189377158_70264094073740'
577
-
578
-
579
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
580
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
581
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.5ms)
582
-
583
-
584
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:36:22 -0500
585
- Processing by ProductsController#index as HTML
586
- Product Load (0.2ms) SELECT "products".* FROM "products"
587
- Rendered products/index.html.erb within layouts/application (1.2ms)
588
- Completed 500 Internal Server Error in 8ms
589
-
590
- ActionView::Template::Error (undefined method `keys' for #<Bread::Crumb:0x007fcf43a26470>):
591
- 11: <ul id="breadcrumbs">
592
- 12: <% bread.each do |crumb| %>
593
- 13: <li data-key="<%= crumb[:key] %>">
594
- 14: <%= crumb.keys %>
595
- 15: </li>
596
- 16: <% end %>
597
- 17: </ul>
598
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb___643965220189377158_70264094073740'
599
- app/views/layouts/application.html.erb:12:in `each'
600
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___643965220189377158_70264094073740'
601
-
602
-
603
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
604
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
605
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.6ms)
606
-
607
-
608
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:36:31 -0500
609
- Processing by ProductsController#index as HTML
610
- Product Load (0.2ms) SELECT "products".* FROM "products"
611
- Rendered products/index.html.erb within layouts/application (1.2ms)
612
- Completed 500 Internal Server Error in 6ms
613
-
614
- ActionView::Template::Error (undefined method `keys' for #<Bread::Crumb:0x007fcf4424cb68>):
615
- 11: <ul id="breadcrumbs">
616
- 12: <% bread.each do |crumb| %>
617
- 13: <li data-key="<%= crumb[:key] %>">
618
- 14: <%= crumb.keys %>
619
- 15: </li>
620
- 16: <% end %>
621
- 17: </ul>
622
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb___643965220189377158_70264094073740'
623
- app/views/layouts/application.html.erb:12:in `each'
624
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___643965220189377158_70264094073740'
625
-
626
-
627
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
628
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
629
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.8ms)
630
-
631
-
632
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:36:58 -0500
633
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
634
- Processing by ProductsController#index as HTML
635
- Product Load (0.5ms) SELECT "products".* FROM "products"
636
- Rendered products/index.html.erb within layouts/application (4.2ms)
637
- Completed 200 OK in 52ms (Views: 49.0ms | ActiveRecord: 0.5ms)
638
-
639
-
640
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:38:42 -0500
641
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
642
- Processing by ProductsController#index as HTML
643
- Product Load (0.4ms) SELECT "products".* FROM "products"
644
- Rendered products/index.html.erb within layouts/application (3.4ms)
645
- Completed 200 OK in 53ms (Views: 48.0ms | ActiveRecord: 0.4ms)
646
-
647
-
648
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:38:56 -0500
649
- Processing by ProductsController#index as HTML
650
- Product Load (0.2ms) SELECT "products".* FROM "products"
651
- Rendered products/index.html.erb within layouts/application (1.4ms)
652
- Completed 500 Internal Server Error in 12ms
653
-
654
- ActionView::Template::Error (undefined method `title' for {:icon=>"home", :title=>"Root", :path=>"/"}:Bread::Crumb):
655
- 11: <ul id="breadcrumbs">
656
- 12: <% bread.each do |crumb| %>
657
- 13: <li data-key="<%= crumb[:key] %>">
658
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
659
- 15: </li>
660
- 16: <% end %>
661
- 17: </ul>
662
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb__4409658884655637071_70226902704320'
663
- app/views/layouts/application.html.erb:12:in `each'
664
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__4409658884655637071_70226902704320'
665
-
666
-
667
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
668
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
669
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.1ms)
670
-
671
-
672
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:39:24 -0500
673
- Processing by ProductsController#index as HTML
674
- Product Load (0.2ms) SELECT "products".* FROM "products"
675
- Rendered products/index.html.erb within layouts/application (1.2ms)
676
- Completed 500 Internal Server Error in 7ms
677
-
678
- ActionView::Template::Error (undefined method `title' for {:icon=>"home", :title=>"Root", :path=>"/"}:Bread::Crumb):
679
- 11: <ul id="breadcrumbs">
680
- 12: <% bread.each do |crumb| %>
681
- 13: <li data-key="<%= crumb[:key] %>">
682
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
683
- 15: </li>
684
- 16: <% end %>
685
- 17: </ul>
686
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb__4409658884655637071_70226902704320'
687
- app/views/layouts/application.html.erb:12:in `each'
688
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__4409658884655637071_70226902704320'
689
-
690
-
691
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
692
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
693
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.4ms)
694
-
695
-
696
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:39:25 -0500
697
- Processing by ProductsController#index as HTML
698
- Product Load (0.2ms) SELECT "products".* FROM "products"
699
- Rendered products/index.html.erb within layouts/application (1.1ms)
700
- Completed 500 Internal Server Error in 6ms
701
-
702
- ActionView::Template::Error (undefined method `title' for {:icon=>"home", :title=>"Root", :path=>"/"}:Bread::Crumb):
703
- 11: <ul id="breadcrumbs">
704
- 12: <% bread.each do |crumb| %>
705
- 13: <li data-key="<%= crumb[:key] %>">
706
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
707
- 15: </li>
708
- 16: <% end %>
709
- 17: </ul>
710
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb__4409658884655637071_70226902704320'
711
- app/views/layouts/application.html.erb:12:in `each'
712
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__4409658884655637071_70226902704320'
713
-
714
-
715
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
716
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
717
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.6ms)
718
-
719
-
720
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:39:35 -0500
721
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
722
- Processing by ProductsController#index as HTML
723
- Product Load (0.5ms) SELECT "products".* FROM "products"
724
- Rendered products/index.html.erb within layouts/application (9.3ms)
725
- Completed 500 Internal Server Error in 97ms
726
-
727
- ActionView::Template::Error (undefined method `path_path' for #<#<Class:0x007fe262341b28>:0x007fe262348888>):
728
- 11: <ul id="breadcrumbs">
729
- 12: <% bread.each do |crumb| %>
730
- 13: <li data-key="<%= crumb[:key] %>">
731
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
732
- 15: </li>
733
- 16: <% end %>
734
- 17: </ul>
735
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb__3804000058378666375_70305140091280'
736
- app/views/layouts/application.html.erb:12:in `each'
737
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__3804000058378666375_70305140091280'
738
-
739
-
740
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
741
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
742
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.4ms)
743
-
744
-
745
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:40:03 -0500
746
- Processing by ProductsController#index as HTML
747
- Product Load (0.2ms) SELECT "products".* FROM "products"
748
- Rendered products/index.html.erb within layouts/application (1.2ms)
749
- Completed 500 Internal Server Error in 16ms
750
-
751
- ActionView::Template::Error (undefined method `path_path' for #<#<Class:0x007fe262341b28>:0x007fe261ebdd18>):
752
- 11: <ul id="breadcrumbs">
753
- 12: <% bread.each do |crumb| %>
754
- 13: <li data-key="<%= crumb[:key] %>">
755
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
756
- 15: </li>
757
- 16: <% end %>
758
- 17: </ul>
759
- app/views/layouts/application.html.erb:14:in `block in _app_views_layouts_application_html_erb__3804000058378666375_70305140091280'
760
- app/views/layouts/application.html.erb:12:in `each'
761
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb__3804000058378666375_70305140091280'
762
-
763
-
764
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (34.2ms)
765
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
766
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (45.4ms)
767
-
768
-
769
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:40:11 -0500
770
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
771
- Processing by ProductsController#index as HTML
772
- Product Load (0.8ms) SELECT "products".* FROM "products"
773
- Rendered products/index.html.erb within layouts/application (3.8ms)
774
- Completed 200 OK in 51ms (Views: 47.4ms | ActiveRecord: 0.8ms)
775
-
776
-
777
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:42:37 -0500
778
- Processing by ProductsController#index as HTML
779
- Product Load (0.1ms) SELECT "products".* FROM "products"
780
- Rendered products/index.html.erb within layouts/application (1.0ms)
781
- Completed 500 Internal Server Error in 9ms
782
-
783
- ActionView::Template::Error (undefined method `current?' for {:icon=>"home", :title=>"Root", :path=>"/"}:Bread::Crumb):
784
- 10:
785
- 11: <ul id="breadcrumbs">
786
- 12: <% bread.each do |crumb| %>
787
- 13: <li class="<%= 'active' if crumb.current? %>">
788
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
789
- 15: </li>
790
- 16: <% end %>
791
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb___69519601481111010_70096855329980'
792
- app/views/layouts/application.html.erb:12:in `each'
793
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___69519601481111010_70096855329980'
794
-
795
-
796
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
797
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
798
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.4ms)
799
-
800
-
801
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:42:45 -0500
802
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
803
- Processing by ProductsController#index as HTML
804
- Product Load (2.0ms) SELECT "products".* FROM "products"
805
- Rendered products/index.html.erb within layouts/application (15.5ms)
806
- Completed 500 Internal Server Error in 82ms
807
-
808
- ActionView::Template::Error (undefined method `current_page?' for #<ProductsController:0x007fe09c272890>):
809
- 10:
810
- 11: <ul id="breadcrumbs">
811
- 12: <% bread.each do |crumb| %>
812
- 13: <li class="<%= 'active' if crumb.current? %>">
813
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
814
- 15: </li>
815
- 16: <% end %>
816
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb___492793618240562537_70301326216080'
817
- app/views/layouts/application.html.erb:12:in `each'
818
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___492793618240562537_70301326216080'
819
-
820
-
821
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
822
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
823
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
824
-
825
-
826
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:42:48 -0500
827
- Processing by ProductsController#index as HTML
828
- Product Load (0.2ms) SELECT "products".* FROM "products"
829
- Rendered products/index.html.erb within layouts/application (1.3ms)
830
- Completed 500 Internal Server Error in 14ms
831
-
832
- ActionView::Template::Error (undefined method `current_page?' for #<ProductsController:0x007fe09b611970>):
833
- 10:
834
- 11: <ul id="breadcrumbs">
835
- 12: <% bread.each do |crumb| %>
836
- 13: <li class="<%= 'active' if crumb.current? %>">
837
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
838
- 15: </li>
839
- 16: <% end %>
840
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb___492793618240562537_70301326216080'
841
- app/views/layouts/application.html.erb:12:in `each'
842
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___492793618240562537_70301326216080'
843
-
844
-
845
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
846
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
847
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.1ms)
848
-
849
-
850
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:43:37 -0500
851
- Processing by ProductsController#index as HTML
852
- Product Load (0.2ms) SELECT "products".* FROM "products"
853
- Rendered products/index.html.erb within layouts/application (1.0ms)
854
- Completed 500 Internal Server Error in 45ms
855
-
856
- ActionView::Template::Error (undefined method `current_page?' for #<ProductsController:0x007fe09b76a830>):
857
- 10:
858
- 11: <ul id="breadcrumbs">
859
- 12: <% bread.each do |crumb| %>
860
- 13: <li class="<%= 'active' if crumb.current? %>">
861
- 14: <%= link_to crumb.title, crumb.path, class: "icon icon-#{crumb[:icon]}" %>
862
- 15: </li>
863
- 16: <% end %>
864
- app/views/layouts/application.html.erb:13:in `block in _app_views_layouts_application_html_erb___492793618240562537_70301326216080'
865
- app/views/layouts/application.html.erb:12:in `each'
866
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___492793618240562537_70301326216080'
867
-
868
-
869
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
870
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
871
- Rendered /Users/tj/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
872
-
873
-
874
- Started GET "/" for 127.0.0.1 at 2014-02-03 16:43:45 -0500
875
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
876
- Processing by ProductsController#index as HTML
877
- Product Load (0.5ms) SELECT "products".* FROM "products"
878
- Rendered products/index.html.erb within layouts/application (4.3ms)
879
- Completed 200 OK in 46ms (Views: 42.0ms | ActiveRecord: 0.5ms)
880
-
881
-
882
- Started GET "/products" for 127.0.0.1 at 2014-02-03 16:43:59 -0500
883
- Processing by ProductsController#index as HTML
884
- Product Load (0.2ms) SELECT "products".* FROM "products"
885
- Rendered products/index.html.erb within layouts/application (1.4ms)
886
- Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.2ms)