tj_bootstrap_helper 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -4,4 +4,97 @@ This is Tony Jian's Bootstrap helper gem.
4
4
 
5
5
  == Install
6
6
 
7
- gem 'tj_bootstrap_helper', :git => "git://github.com/tonytonyjan/tj_bootstrap_helper.git"
7
+ gme 'tj_bootstrap_helper'
8
+ or
9
+ gem 'tj_bootstrap_helper', :git => "git://github.com/tonytonyjan/tj-bootstrap-helper.git"
10
+
11
+ == Helpers Usage
12
+ === page_header
13
+
14
+ <%= page_header @post.title %>
15
+ # => <div class="page-header"><h1><%= @post.content %></h1></div>
16
+
17
+ <%= page_header @post.title, 2 %>
18
+ # => <div class="page-header"><h2><%= @post.content %></h2></div>
19
+
20
+ === spans
21
+ ==== Render Array
22
+
23
+ <%= spans %w(asfd qwer zxcv), fluid: true do |word| %>
24
+ <h2><%= word %></h2>
25
+ <p>content</p>
26
+ <% end %>
27
+
28
+ # =>
29
+
30
+ <div class="row-fluid">
31
+ <div class="span4"><h2>asfd</h2><p>content</p></div>
32
+ <div class="span4"><h2>qwer</h2><p>content</p></div>
33
+ <div class="span4"><h2>zxcv</h2><p>content</p></div>
34
+ </div>
35
+
36
+ ==== Render Resources
37
+
38
+ <%= spans @posts, :span => 3, :slice => 2 do |post| %>
39
+ <h2><%= post.title %></h2>
40
+ <p><%= post.content %></p>
41
+ <% end %>
42
+
43
+ # =>
44
+
45
+ <div class="row">
46
+ <div class="span3"><h2><%= post.title %></h2><p><%= post.content %></p></div>
47
+ <div class="span3"><h2><%= post.title %></h2><p><%= post.content %></p></div>
48
+ </div>
49
+
50
+ ...
51
+
52
+ <div class="row">
53
+ <div class="span3"><h2><%= post.title %></h2><p><%= post.content %></p></div>
54
+ <div class="span3"><h2><%= post.title %></h2><p><%= post.content %></p></div>
55
+ </div>
56
+
57
+ === thumbs
58
+
59
+ The usage of +thumbs+ is nothing more than +spans+,
60
+ but it requires a parameter of image method name correspondding to each resource.
61
+
62
+ ==== Thumbnails Only
63
+
64
+ <%= thumbs @posts, "image_url", :span => 2, :slice => 2 %>
65
+
66
+ # =>
67
+
68
+ <ul class="thumbnails">
69
+ <li class="post span2" id="post_1"><a href="/posts/1" class="thumbnail"><%= image_tag post.image_url %></a></li>
70
+ <li class="post span2" id="post_2"><a href="/posts/2" class="thumbnail"><%= image_tag post.image_url %></a></li>
71
+ </ul>
72
+
73
+ ...
74
+
75
+ <ul class="thumbnails">
76
+ <li class="post span2" id="post_3"><a href="/posts/3" class="thumbnail"><%= image_tag post.image_url %></a></li>
77
+ <li class="post span2" id="post_4"><a href="/posts/4" class="thumbnail"><%= image_tag post.image_url %></a></li>
78
+ </ul>
79
+
80
+ ==== With Caption
81
+
82
+ <%= thumbs @posts, "image_url" do |post| %>
83
+ <h2><%= post.title %></h2>
84
+ <p><%= post.content %></p>
85
+ <% end %>
86
+
87
+ # =>
88
+
89
+ <ul class="thumbnails">
90
+ <li class="post span4" id="post_1">
91
+ <div class="thumbnail">
92
+ <%= image_tag post.image_url %>
93
+ <h2><%= post.title %></h2>
94
+ <p><%= post.content %></p>
95
+ </div>
96
+ </li>
97
+
98
+ ...
99
+
100
+ </ul>
@@ -1,3 +1,3 @@
1
1
  module TJBootstrapHelper
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -13208,3 +13208,371 @@ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"
13208
13208
 
13209
13209
 
13210
13210
  Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
13211
+
13212
+
13213
+ Started GET "/home/index?page=2" for 127.0.0.1 at 2012-07-25 01:42:35 +0800
13214
+ Processing by HomeController#index as HTML
13215
+ Parameters: {"page"=>"2"}
13216
+  (0.0ms) SELECT COUNT(*) FROM "posts" 
13217
+ Post Load (0.0ms) SELECT "posts".* FROM "posts" LIMIT 12 OFFSET 12
13218
+ Rendered home/index.html.erb within layouts/application (26.4ms)
13219
+ Rendered home/_topbar.html.erb (0.0ms)
13220
+ Rendered home/_sidebar.html.erb (1.0ms)
13221
+ Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.0ms)
13222
+
13223
+
13224
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:36 +0800
13225
+ Served asset /jquery.js - 304 Not Modified (0ms)
13226
+
13227
+
13228
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:36 +0800
13229
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13230
+
13231
+
13232
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:36 +0800
13233
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13234
+
13235
+
13236
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:42:36 +0800
13237
+ Served asset /ico/favicon.ico - 404 Not Found (2ms)
13238
+
13239
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13240
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13241
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13242
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13243
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13244
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13245
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13246
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13247
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13248
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13249
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13250
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13251
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13252
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13253
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13254
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13255
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13256
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13257
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13258
+
13259
+
13260
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
13261
+
13262
+
13263
+ Started GET "/home/index?page=1" for 127.0.0.1 at 2012-07-25 01:42:36 +0800
13264
+ Processing by HomeController#index as HTML
13265
+ Parameters: {"page"=>"1"}
13266
+  (0.0ms) SELECT COUNT(*) FROM "posts" 
13267
+ Post Load (0.0ms) SELECT "posts".* FROM "posts" LIMIT 12 OFFSET 0
13268
+ Rendered home/index.html.erb within layouts/application (43.0ms)
13269
+ Rendered home/_topbar.html.erb (1.0ms)
13270
+ Rendered home/_sidebar.html.erb (1.0ms)
13271
+ Completed 200 OK in 57ms (Views: 56.6ms | ActiveRecord: 0.0ms)
13272
+
13273
+
13274
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:37 +0800
13275
+ Served asset /jquery.js - 304 Not Modified (0ms)
13276
+
13277
+
13278
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:37 +0800
13279
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13280
+
13281
+
13282
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:37 +0800
13283
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13284
+
13285
+
13286
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:42:37 +0800
13287
+ Served asset /ico/favicon.ico - 404 Not Found (2ms)
13288
+
13289
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13290
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13291
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13292
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13293
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13294
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13295
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13296
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13297
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13298
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13299
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13300
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13301
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13302
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13303
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13304
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13305
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13306
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13307
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13308
+
13309
+
13310
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
13311
+
13312
+
13313
+ Started GET "/home/about" for 127.0.0.1 at 2012-07-25 01:42:40 +0800
13314
+ Processing by HomeController#about as HTML
13315
+ Rendered home/about.html.erb within layouts/application (1.0ms)
13316
+ Rendered home/_topbar.html.erb (1.0ms)
13317
+ Rendered home/_sidebar.html.erb (1.0ms)
13318
+ Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms)
13319
+
13320
+
13321
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:40 +0800
13322
+ Served asset /jquery.js - 304 Not Modified (0ms)
13323
+
13324
+
13325
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:40 +0800
13326
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13327
+
13328
+
13329
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:40 +0800
13330
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13331
+
13332
+
13333
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:42:41 +0800
13334
+ Served asset /ico/favicon.ico - 404 Not Found (2ms)
13335
+
13336
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13337
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13338
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13339
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13340
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13341
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13342
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13343
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13344
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13345
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13346
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13347
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13348
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13349
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13350
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13351
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13352
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13353
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13354
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13355
+
13356
+
13357
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
13358
+
13359
+
13360
+ Started GET "/" for 127.0.0.1 at 2012-07-25 01:42:41 +0800
13361
+ Processing by HomeController#index as HTML
13362
+  (0.0ms) SELECT COUNT(*) FROM "posts" 
13363
+ Post Load (0.0ms) SELECT "posts".* FROM "posts" LIMIT 12 OFFSET 0
13364
+ Rendered home/index.html.erb within layouts/application (42.0ms)
13365
+ Rendered home/_topbar.html.erb (1.0ms)
13366
+ Rendered home/_sidebar.html.erb (1.0ms)
13367
+ Completed 200 OK in 56ms (Views: 55.7ms | ActiveRecord: 0.0ms)
13368
+
13369
+
13370
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:41 +0800
13371
+ Served asset /jquery.js - 304 Not Modified (0ms)
13372
+
13373
+
13374
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:41 +0800
13375
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13376
+
13377
+
13378
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:41 +0800
13379
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13380
+
13381
+
13382
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:42:42 +0800
13383
+ Served asset /ico/favicon.ico - 404 Not Found (2ms)
13384
+
13385
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13386
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13387
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13388
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13389
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13390
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13391
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13392
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13393
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13394
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13395
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13396
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13397
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13398
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13399
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13400
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13401
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13402
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13403
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13404
+
13405
+
13406
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms)
13407
+
13408
+
13409
+ Started GET "/home/contact" for 127.0.0.1 at 2012-07-25 01:42:42 +0800
13410
+ Processing by HomeController#contact as HTML
13411
+ Rendered home/contact.html.erb within layouts/application (1.0ms)
13412
+ Rendered home/_topbar.html.erb (0.0ms)
13413
+ Rendered home/_sidebar.html.erb (1.0ms)
13414
+ Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms)
13415
+
13416
+
13417
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:43 +0800
13418
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13419
+
13420
+
13421
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:43 +0800
13422
+ Served asset /jquery.js - 304 Not Modified (0ms)
13423
+
13424
+
13425
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:43 +0800
13426
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13427
+
13428
+
13429
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:42:43 +0800
13430
+ Served asset /ico/favicon.ico - 404 Not Found (3ms)
13431
+
13432
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13433
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13434
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13435
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13436
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13437
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13438
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13439
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13440
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13441
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13442
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13443
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13444
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13445
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13446
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13447
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13448
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13449
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13450
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13451
+
13452
+
13453
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
13454
+
13455
+
13456
+ Started GET "/" for 127.0.0.1 at 2012-07-25 01:42:44 +0800
13457
+ Processing by HomeController#index as HTML
13458
+  (0.0ms) SELECT COUNT(*) FROM "posts" 
13459
+ Post Load (0.0ms) SELECT "posts".* FROM "posts" LIMIT 12 OFFSET 0
13460
+ Rendered home/index.html.erb within layouts/application (43.0ms)
13461
+ Rendered home/_topbar.html.erb (1.0ms)
13462
+ Rendered home/_sidebar.html.erb (1.0ms)
13463
+ Completed 200 OK in 57ms (Views: 56.6ms | ActiveRecord: 0.0ms)
13464
+
13465
+
13466
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:44 +0800
13467
+ Served asset /jquery.js - 304 Not Modified (0ms)
13468
+
13469
+
13470
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:44 +0800
13471
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13472
+
13473
+
13474
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:42:44 +0800
13475
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13476
+
13477
+
13478
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:42:45 +0800
13479
+ Served asset /ico/favicon.ico - 404 Not Found (3ms)
13480
+
13481
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13482
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13483
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13484
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13485
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13486
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13487
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13488
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13489
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13490
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13491
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13492
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13493
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13494
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13495
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13496
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13497
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13498
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13499
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13500
+
13501
+
13502
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
13503
+
13504
+
13505
+ Started GET "/posts/2" for 127.0.0.1 at 2012-07-25 01:48:47 +0800
13506
+ Processing by PostsController#show as HTML
13507
+ Parameters: {"id"=>"2"}
13508
+ Post Load (0.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
13509
+ Rendered posts/show.html.erb within layouts/application (0.0ms)
13510
+ Rendered home/_topbar.html.erb (1.0ms)
13511
+ Rendered home/_sidebar.html.erb (1.0ms)
13512
+ Completed 200 OK in 35ms (Views: 34.2ms | ActiveRecord: 0.0ms)
13513
+
13514
+
13515
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-25 01:48:47 +0800
13516
+ Served asset /jquery.js - 304 Not Modified (0ms)
13517
+
13518
+
13519
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-25 01:48:47 +0800
13520
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
13521
+
13522
+
13523
+ Started GET "/assets/bootstrap.min.js?body=1" for 127.0.0.1 at 2012-07-25 01:48:48 +0800
13524
+ Served asset /bootstrap.min.js - 304 Not Modified (0ms)
13525
+
13526
+
13527
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:48:48 +0800
13528
+ Served asset /ico/favicon.ico - 404 Not Found (3ms)
13529
+
13530
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13531
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13532
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13533
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13534
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13535
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13536
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13537
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13538
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13539
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13540
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13541
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13542
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13543
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13544
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13545
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13546
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13547
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13548
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13549
+
13550
+
13551
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
13552
+
13553
+
13554
+ Started GET "/assets/ico/favicon.ico" for 127.0.0.1 at 2012-07-25 01:51:31 +0800
13555
+ Served asset /ico/favicon.ico - 404 Not Found (2ms)
13556
+
13557
+ ActionController::RoutingError (No route matches [GET] "/assets/ico/favicon.ico"):
13558
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13559
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
13560
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
13561
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
13562
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
13563
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13564
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13565
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
13566
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
13567
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
13568
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
13569
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
13570
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
13571
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
13572
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
13573
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
13574
+ C:/Ruby193/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
13575
+ C:/Ruby193/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
13576
+
13577
+
13578
+ Rendered C:/Ruby193/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tj_bootstrap_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -168,7 +168,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
168
168
  version: '0'
169
169
  segments:
170
170
  - 0
171
- hash: 640374509
171
+ hash: -583968273
172
172
  required_rubygems_version: !ruby/object:Gem::Requirement
173
173
  none: false
174
174
  requirements:
@@ -177,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
177
  version: '0'
178
178
  segments:
179
179
  - 0
180
- hash: 640374509
180
+ hash: -583968273
181
181
  requirements: []
182
182
  rubyforge_project:
183
183
  rubygems_version: 1.8.24