nsa_panel 0.0.2 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -3,15 +3,16 @@
3
3
  ![](nsa-eagle.png)
4
4
 
5
5
  The easiest way to add a special panel for NSA agents to monitor your
6
- users' data. Let's destroy the right to privacy together!
6
+ users' data. Let's ~~fight terrorism~~ destroy the right to privacy together!
7
7
 
8
8
  ## Example
9
9
 
10
10
  See sample app at `test/dummy`.
11
11
 
12
- 1. `rake db:setup`
13
- 2. `rails s`
14
- 3. Visit [localhost:3000/nsa_panel](http://localhost:3000/nsa_panel).
12
+ 1. `bundle install`
13
+ 2. `rake db:setup`
14
+ 3. `rails s`
15
+ 4. visit [localhost:3000/nsa_panel](http://localhost:3000/nsa_panel).
15
16
  Use nsa/nsa as credentials.
16
17
 
17
18
  ## Install
@@ -45,7 +46,7 @@ Configure panel login/password:
45
46
  # config/initializers/nsa_panel.rb
46
47
 
47
48
  NsaPanel.username = 'nsa' # ENV['NSA_USERNAME']
48
- NsaPanel.passowrd = 'nsa' # ENV['NSA_PASSWORD']
49
+ NsaPanel.password = 'nsa' # ENV['NSA_PASSWORD']
49
50
  ```
50
51
 
51
52
  ~~Lie~~ Announce the following to your users:
@@ -93,6 +94,6 @@ Easy, eh?
93
94
 
94
95
  ## License
95
96
 
96
- NSA Eagle Logo credit [EFF](https://www.eff.org/pages/eff-nsa-graphics).
97
-
98
97
  [MIT](MIT-LICENSE).
98
+
99
+ NSA Eagle Logo credit [EFF](https://www.eff.org/pages/eff-nsa-graphics).
@@ -18,5 +18,10 @@ body {
18
18
 
19
19
  footer {
20
20
  text-align: center;
21
- margin-top: 40px;
21
+ margin: 40px 0;
22
+ }
23
+
24
+ .blackout {
25
+ color: black;
26
+ background: black;
22
27
  }
@@ -4,22 +4,20 @@ module NsaPanel
4
4
  class DataController < ApplicationController
5
5
  def index
6
6
  @user = NsaPanel.user.find(params[:user_id])
7
- @association = @user.class.reflect_on_association(params[:name].to_sym)
7
+ @association = NsaPanel.association(params[:name])
8
8
 
9
9
  return render nothing: true unless @association
10
10
 
11
- @klass = @association.klass
12
- @records = @klass.all
11
+ @records = @user.send(@association.name).to_a
13
12
  end
14
13
 
15
14
  def show
16
15
  @user = NsaPanel.user.find(params[:user_id])
17
- @association = @user.class.reflect_on_association(params[:name].to_sym)
16
+ @association = NsaPanel.association(params[:name])
18
17
 
19
18
  return render nothing: true unless @association
20
19
 
21
- @klass = @association.klass
22
- @record = @klass.find(params[:id])
20
+ @record = @user.send(@association.name).find(params[:id])
23
21
  end
24
22
  end
25
23
  end
@@ -1,4 +1,9 @@
1
1
  module NsaPanel
2
2
  module UsersHelper
3
+ def blackout(text, attribute)
4
+ to_blackout = !%w[id name].include?(attribute)
5
+ text = '_' * text.to_s.size if to_blackout
6
+ content_tag(:span, text, class: to_blackout ? 'blackout' : '')
7
+ end
3
8
  end
4
9
  end
@@ -11,7 +11,7 @@
11
11
 
12
12
  <div class="navbar">
13
13
  <div class="navbar-inner">
14
- <%= link_to 'NSA Panel', root_path, class: 'brand' %>
14
+ <%= link_to 'NSA Indirect Access Panel', root_path, class: 'brand' %>
15
15
 
16
16
  <ul class="nav">
17
17
  <li><%= link_to 'Users', users_path %></li>
@@ -1,3 +1,3 @@
1
- <h1><%= @user.name %>'s <%= @association.klass.name %> #<%= @record.id %></h1>
1
+ <h1><%= @user.name %>'s <%= @association.name.to_s.singularize %> #<%= @record.id %></h1>
2
2
 
3
3
  <%= image_tag 'nsa_panel/fuck_you.jpg' %>
@@ -14,7 +14,7 @@
14
14
  <% @user.attributes.each do |key, value| %>
15
15
  <tr>
16
16
  <td><%= key.capitalize %></td>
17
- <td><%= value %></td>
17
+ <td><%= blackout value, key %></td>
18
18
  </tr>
19
19
  <% end %>
20
20
  </tbody>
@@ -10,4 +10,8 @@ module NsaPanel
10
10
  def self.associated_models
11
11
  user.reflect_on_all_associations
12
12
  end
13
+
14
+ def self.association(name)
15
+ user.reflect_on_association(name.to_sym)
16
+ end
13
17
  end
@@ -1,3 +1,3 @@
1
1
  module NsaPanel
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.4'
3
3
  end
@@ -8413,3 +8413,1745 @@ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8413
8413
 
8414
8414
  Started GET "/assets/nsa_panel/fuck_you.jpg" for 127.0.0.1 at 2013-06-08 20:22:13 +0300
8415
8415
  Served asset /nsa_panel/fuck_you.jpg - 304 Not Modified (0ms)
8416
+ Connecting to database specified by database.yml
8417
+
8418
+
8419
+ Started GET "/" for 127.0.0.1 at 2013-06-08 23:26:07 +0300
8420
+
8421
+ ActionController::RoutingError (No route matches [GET] "/"):
8422
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8423
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8424
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
8425
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
8426
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
8427
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
8428
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8429
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8430
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8431
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8432
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8433
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
8434
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
8435
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
8436
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8437
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
8438
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8439
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8440
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8441
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8442
+
8443
+
8444
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.9ms)
8445
+
8446
+
8447
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-08 23:26:14 +0300
8448
+ Processing by NsaPanel::UsersController#index as HTML
8449
+ User Load (0.4ms) SELECT "users".* FROM "users" 
8450
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (27.1ms)
8451
+ Completed 200 OK in 121ms (Views: 91.1ms | ActiveRecord: 2.2ms)
8452
+
8453
+
8454
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8455
+ Served asset /nsa_panel/application.css - 304 Not Modified (7ms)
8456
+
8457
+
8458
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8459
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
8460
+
8461
+
8462
+ Started GET "/assets/nsa_panel/data.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8463
+ Served asset /nsa_panel/data.css - 304 Not Modified (2ms)
8464
+
8465
+
8466
+ Started GET "/assets/nsa_panel/dashboard.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8467
+ Served asset /nsa_panel/dashboard.css - 304 Not Modified (2ms)
8468
+
8469
+
8470
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8471
+ Served asset /nsa_panel/bootstrap.css - 200 OK (23ms)
8472
+
8473
+
8474
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8475
+ Served asset /jquery.js - 200 OK (2ms)
8476
+
8477
+
8478
+ Started GET "/assets/nsa_panel/dashboard.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8479
+ Served asset /nsa_panel/dashboard.js - 304 Not Modified (2ms)
8480
+
8481
+
8482
+ Started GET "/assets/nsa_panel/data.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8483
+ Served asset /nsa_panel/data.js - 304 Not Modified (2ms)
8484
+
8485
+
8486
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8487
+ Served asset /nsa_panel/application.js - 304 Not Modified (10ms)
8488
+
8489
+
8490
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-08 23:26:15 +0300
8491
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 200 OK (6ms)
8492
+
8493
+
8494
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8495
+ Processing by NsaPanel::UsersController#show as HTML
8496
+ Parameters: {"id"=>"1"}
8497
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
8498
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (4.7ms)
8499
+ Completed 200 OK in 18ms (Views: 13.6ms | ActiveRecord: 0.4ms)
8500
+
8501
+
8502
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8503
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8504
+
8505
+
8506
+ Started GET "/assets/nsa_panel/dashboard.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8507
+ Served asset /nsa_panel/dashboard.css - 304 Not Modified (0ms)
8508
+
8509
+
8510
+ Started GET "/assets/nsa_panel/data.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8511
+ Served asset /nsa_panel/data.js - 304 Not Modified (0ms)
8512
+
8513
+
8514
+ Started GET "/assets/nsa_panel/data.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8515
+ Served asset /nsa_panel/data.css - 304 Not Modified (0ms)
8516
+
8517
+
8518
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8519
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8520
+
8521
+
8522
+ Started GET "/assets/nsa_panel/dashboard.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8523
+ Served asset /nsa_panel/dashboard.js - 304 Not Modified (0ms)
8524
+
8525
+
8526
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:22 +0300
8527
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8528
+
8529
+
8530
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8531
+ Processing by NsaPanel::DataController#index as HTML
8532
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
8533
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
8534
+ Secret Load (0.4ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
8535
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (4.1ms)
8536
+ Completed 200 OK in 66ms (Views: 11.6ms | ActiveRecord: 0.9ms)
8537
+
8538
+
8539
+ Started GET "/assets/nsa_panel/dashboard.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8540
+ Served asset /nsa_panel/dashboard.js - 304 Not Modified (0ms)
8541
+
8542
+
8543
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8544
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8545
+
8546
+
8547
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8548
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8549
+
8550
+
8551
+ Started GET "/assets/nsa_panel/data.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8552
+ Served asset /nsa_panel/data.js - 304 Not Modified (0ms)
8553
+
8554
+
8555
+ Started GET "/assets/nsa_panel/data.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8556
+ Served asset /nsa_panel/data.css - 304 Not Modified (0ms)
8557
+
8558
+
8559
+ Started GET "/assets/nsa_panel/dashboard.css?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8560
+ Served asset /nsa_panel/dashboard.css - 304 Not Modified (0ms)
8561
+
8562
+
8563
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-08 23:26:24 +0300
8564
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8565
+
8566
+
8567
+ Started GET "/" for 127.0.0.1 at 2013-06-09 13:05:25 +0300
8568
+
8569
+ ActionController::RoutingError (No route matches [GET] "/"):
8570
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8571
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8572
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
8573
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
8574
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
8575
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
8576
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
8577
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
8578
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
8579
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
8580
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
8581
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
8582
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
8583
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
8584
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
8585
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
8586
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
8587
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
8588
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
8589
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
8590
+
8591
+
8592
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.5ms)
8593
+
8594
+
8595
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:05:28 +0300
8596
+ Processing by NsaPanel::UsersController#index as HTML
8597
+ Filter chain halted as :authenticate rendered or redirected
8598
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
8599
+
8600
+
8601
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:05:31 +0300
8602
+ Processing by NsaPanel::UsersController#index as HTML
8603
+ User Load (2.5ms) SELECT "users".* FROM "users" 
8604
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (36.1ms)
8605
+ Completed 200 OK in 62ms (Views: 48.5ms | ActiveRecord: 2.5ms)
8606
+
8607
+
8608
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8609
+ Served asset /nsa_panel/application.css - 200 OK (0ms)
8610
+
8611
+
8612
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8613
+ Served asset /nsa_panel/bootstrap.css - 200 OK (0ms)
8614
+
8615
+
8616
+ Started GET "/assets/nsa_panel/dashboard.css?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8617
+ Served asset /nsa_panel/dashboard.css - 200 OK (0ms)
8618
+
8619
+
8620
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8621
+ Served asset /jquery_ujs.js - 200 OK (0ms)
8622
+
8623
+
8624
+ Started GET "/assets/nsa_panel/data.css?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8625
+ Served asset /nsa_panel/data.css - 200 OK (0ms)
8626
+
8627
+
8628
+ Started GET "/assets/nsa_panel/dashboard.js?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8629
+ Served asset /nsa_panel/dashboard.js - 200 OK (0ms)
8630
+
8631
+
8632
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8633
+ Served asset /jquery.js - 200 OK (0ms)
8634
+
8635
+
8636
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8637
+ Served asset /nsa_panel/application.js - 200 OK (0ms)
8638
+
8639
+
8640
+ Started GET "/assets/nsa_panel/data.js?body=1" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8641
+ Served asset /nsa_panel/data.js - 200 OK (0ms)
8642
+
8643
+
8644
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:05:32 +0300
8645
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 200 OK (0ms)
8646
+
8647
+
8648
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8649
+ Processing by NsaPanel::UsersController#index as HTML
8650
+ User Load (0.6ms) SELECT "users".* FROM "users"
8651
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (42.5ms)
8652
+ Completed 200 OK in 56ms (Views: 50.7ms | ActiveRecord: 0.6ms)
8653
+
8654
+
8655
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8656
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8657
+
8658
+
8659
+ Started GET "/assets/nsa_panel/data.css?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8660
+ Served asset /nsa_panel/data.css - 304 Not Modified (0ms)
8661
+
8662
+
8663
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8664
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8665
+
8666
+
8667
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8668
+ Served asset /jquery.js - 304 Not Modified (0ms)
8669
+
8670
+
8671
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8672
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8673
+
8674
+
8675
+ Started GET "/assets/nsa_panel/dashboard.css?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8676
+ Served asset /nsa_panel/dashboard.css - 304 Not Modified (0ms)
8677
+
8678
+
8679
+ Started GET "/assets/nsa_panel/dashboard.js?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8680
+ Served asset /nsa_panel/dashboard.js - 304 Not Modified (0ms)
8681
+
8682
+
8683
+ Started GET "/assets/nsa_panel/data.js?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8684
+ Served asset /nsa_panel/data.js - 304 Not Modified (0ms)
8685
+
8686
+
8687
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8688
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8689
+
8690
+
8691
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:06:23 +0300
8692
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8693
+
8694
+
8695
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:10:58 +0300
8696
+ Processing by NsaPanel::UsersController#index as HTML
8697
+ User Load (3.0ms) SELECT "users".* FROM "users" 
8698
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (84.1ms)
8699
+ Compiled nsa_panel/application.css (2ms) (pid 57305)
8700
+ Compiled nsa_panel/application.js (3ms) (pid 57305)
8701
+ Completed 200 OK in 187ms (Views: 167.6ms | ActiveRecord: 3.0ms)
8702
+
8703
+
8704
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:10:59 +0300
8705
+ Served asset /nsa_panel/application.css - 200 OK (6ms)
8706
+
8707
+
8708
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:10:59 +0300
8709
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8710
+
8711
+
8712
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:10:59 +0300
8713
+ Served asset /jquery.js - 304 Not Modified (0ms)
8714
+
8715
+
8716
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:10:59 +0300
8717
+ Served asset /nsa_panel/application.js - 304 Not Modified (9ms)
8718
+
8719
+
8720
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:10:59 +0300
8721
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8722
+
8723
+
8724
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:11:00 +0300
8725
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8726
+
8727
+
8728
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:12:56 +0300
8729
+ Processing by NsaPanel::UsersController#index as HTML
8730
+ User Load (0.7ms) SELECT "users".* FROM "users"
8731
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (27.6ms)
8732
+ Completed 200 OK in 42ms (Views: 35.8ms | ActiveRecord: 0.7ms)
8733
+
8734
+
8735
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:12:56 +0300
8736
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8737
+
8738
+
8739
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:12:56 +0300
8740
+ Served asset /jquery.js - 304 Not Modified (0ms)
8741
+
8742
+
8743
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:12:56 +0300
8744
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8745
+
8746
+
8747
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:12:56 +0300
8748
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8749
+
8750
+
8751
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:12:56 +0300
8752
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8753
+
8754
+
8755
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:12:57 +0300
8756
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8757
+
8758
+
8759
+ Started GET "/nsa_panel/users/100" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8760
+ Processing by NsaPanel::UsersController#show as HTML
8761
+ Parameters: {"id"=>"100"}
8762
+ User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "100"]]
8763
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (2.7ms)
8764
+ Completed 200 OK in 15ms (Views: 11.1ms | ActiveRecord: 0.7ms)
8765
+
8766
+
8767
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8768
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8769
+
8770
+
8771
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8772
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8773
+
8774
+
8775
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8776
+ Served asset /jquery.js - 304 Not Modified (0ms)
8777
+
8778
+
8779
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8780
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8781
+
8782
+
8783
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8784
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8785
+
8786
+
8787
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:15:43 +0300
8788
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8789
+
8790
+
8791
+ Started GET "/nsa_panel/users/100/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8792
+ Processing by NsaPanel::DataController#index as HTML
8793
+ Parameters: {"name"=>"secrets", "user_id"=>"100"}
8794
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "100"]]
8795
+ Secret Load (1.8ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 100
8796
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (3.1ms)
8797
+ Completed 200 OK in 19ms (Views: 10.0ms | ActiveRecord: 1.9ms)
8798
+
8799
+
8800
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8801
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8802
+
8803
+
8804
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8805
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8806
+
8807
+
8808
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8809
+ Served asset /jquery.js - 304 Not Modified (0ms)
8810
+
8811
+
8812
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8813
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8814
+
8815
+
8816
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8817
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8818
+
8819
+
8820
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:15:45 +0300
8821
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8822
+
8823
+
8824
+ Started GET "/nsa_panel/users/100/data/991?name=secrets" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8825
+ Processing by NsaPanel::DataController#show as HTML
8826
+ Parameters: {"name"=>"secrets", "user_id"=>"100", "id"=>"991"}
8827
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "100"]]
8828
+ Secret Load (0.3ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 100 AND "secrets"."id" = ? LIMIT 1 [["id", "991"]]
8829
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb within layouts/nsa_panel/application (1.7ms)
8830
+ Completed 200 OK in 19ms (Views: 10.9ms | ActiveRecord: 0.6ms)
8831
+
8832
+
8833
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8834
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8835
+
8836
+
8837
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8838
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8839
+
8840
+
8841
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8842
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8843
+
8844
+
8845
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8846
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8847
+
8848
+
8849
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8850
+ Served asset /jquery.js - 304 Not Modified (0ms)
8851
+
8852
+
8853
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8854
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8855
+
8856
+
8857
+ Started GET "/assets/nsa_panel/fuck_you.jpg" for 127.0.0.1 at 2013-06-09 13:15:48 +0300
8858
+ Served asset /nsa_panel/fuck_you.jpg - 200 OK (3ms)
8859
+
8860
+
8861
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8862
+ Processing by NsaPanel::UsersController#index as HTML
8863
+ User Load (1.2ms) SELECT "users".* FROM "users"
8864
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (33.5ms)
8865
+ Completed 200 OK in 49ms (Views: 43.2ms | ActiveRecord: 1.2ms)
8866
+
8867
+
8868
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8869
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8870
+
8871
+
8872
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8873
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8874
+
8875
+
8876
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8877
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8878
+
8879
+
8880
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8881
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8882
+
8883
+
8884
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8885
+ Served asset /jquery.js - 304 Not Modified (0ms)
8886
+
8887
+
8888
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:15:51 +0300
8889
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8890
+ Connecting to database specified by database.yml
8891
+
8892
+
8893
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:18:42 +0300
8894
+ Processing by NsaPanel::UsersController#index as HTML
8895
+ User Load (0.4ms) SELECT "users".* FROM "users" 
8896
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (24.4ms)
8897
+ Completed 200 OK in 119ms (Views: 69.2ms | ActiveRecord: 2.5ms)
8898
+
8899
+
8900
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:42 +0300
8901
+ Served asset /nsa_panel/application.css - 304 Not Modified (3ms)
8902
+
8903
+
8904
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:43 +0300
8905
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (4ms)
8906
+
8907
+
8908
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:43 +0300
8909
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
8910
+
8911
+
8912
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:43 +0300
8913
+ Served asset /jquery.js - 304 Not Modified (3ms)
8914
+
8915
+
8916
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:43 +0300
8917
+ Served asset /nsa_panel/application.js - 304 Not Modified (6ms)
8918
+
8919
+
8920
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:18:43 +0300
8921
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (1ms)
8922
+
8923
+
8924
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8925
+ Processing by NsaPanel::UsersController#show as HTML
8926
+ Parameters: {"id"=>"1"}
8927
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
8928
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (4.5ms)
8929
+ Completed 200 OK in 14ms (Views: 10.5ms | ActiveRecord: 0.4ms)
8930
+
8931
+
8932
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8933
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8934
+
8935
+
8936
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8937
+ Served asset /jquery.js - 304 Not Modified (0ms)
8938
+
8939
+
8940
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8941
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8942
+
8943
+
8944
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8945
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8946
+
8947
+
8948
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8949
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8950
+
8951
+
8952
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:18:44 +0300
8953
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8954
+
8955
+
8956
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8957
+ Processing by NsaPanel::DataController#index as HTML
8958
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
8959
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
8960
+ Secret Load (0.6ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
8961
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (5.1ms)
8962
+ Completed 200 OK in 58ms (Views: 11.9ms | ActiveRecord: 1.1ms)
8963
+
8964
+
8965
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8966
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
8967
+
8968
+
8969
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8970
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
8971
+
8972
+
8973
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8974
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
8975
+
8976
+
8977
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8978
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
8979
+
8980
+
8981
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8982
+ Served asset /jquery.js - 304 Not Modified (0ms)
8983
+
8984
+
8985
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:18:45 +0300
8986
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
8987
+
8988
+
8989
+ Started GET "/nsa_panel/users/1/data/1?name=secrets" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
8990
+ Processing by NsaPanel::DataController#show as HTML
8991
+ Parameters: {"name"=>"secrets", "user_id"=>"1", "id"=>"1"}
8992
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
8993
+ Secret Load (0.2ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1 AND "secrets"."id" = ? LIMIT 1 [["id", "1"]]
8994
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb within layouts/nsa_panel/application (0.7ms)
8995
+ Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.4ms)
8996
+
8997
+
8998
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
8999
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9000
+
9001
+
9002
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
9003
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9004
+
9005
+
9006
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
9007
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9008
+
9009
+
9010
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
9011
+ Served asset /jquery.js - 304 Not Modified (0ms)
9012
+
9013
+
9014
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
9015
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9016
+
9017
+
9018
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:18:47 +0300
9019
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9020
+
9021
+
9022
+ Started GET "/nsa_panel/users/1/data/1?name=secrets" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9023
+ Processing by NsaPanel::DataController#show as HTML
9024
+ Parameters: {"name"=>"secrets", "user_id"=>"1", "id"=>"1"}
9025
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9026
+ Secret Load (0.1ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1 AND "secrets"."id" = ? LIMIT 1 [["id", "1"]]
9027
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb within layouts/nsa_panel/application (0.6ms)
9028
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms)
9029
+
9030
+
9031
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9032
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9033
+
9034
+
9035
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9036
+ Served asset /jquery.js - 304 Not Modified (0ms)
9037
+
9038
+
9039
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9040
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9041
+
9042
+
9043
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9044
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9045
+
9046
+
9047
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9048
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9049
+
9050
+
9051
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:20:03 +0300
9052
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9053
+
9054
+
9055
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:20:14 +0300
9056
+ Processing by NsaPanel::DataController#index as HTML
9057
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
9058
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9059
+ Secret Load (0.6ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
9060
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (2.8ms)
9061
+ Completed 200 OK in 14ms (Views: 9.3ms | ActiveRecord: 0.8ms)
9062
+
9063
+
9064
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:15 +0300
9065
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9066
+
9067
+
9068
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:15 +0300
9069
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9070
+
9071
+
9072
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:15 +0300
9073
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9074
+
9075
+
9076
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:15 +0300
9077
+ Served asset /jquery.js - 304 Not Modified (0ms)
9078
+
9079
+
9080
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:15 +0300
9081
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9082
+
9083
+
9084
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:20:15 +0300
9085
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9086
+
9087
+
9088
+ Started GET "/nsa_panel/users/1/data/1?name=secrets" for 127.0.0.1 at 2013-06-09 13:20:18 +0300
9089
+ Processing by NsaPanel::DataController#show as HTML
9090
+ Parameters: {"name"=>"secrets", "user_id"=>"1", "id"=>"1"}
9091
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9092
+ Secret Load (0.1ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1 AND "secrets"."id" = ? LIMIT 1 [["id", "1"]]
9093
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb within layouts/nsa_panel/application (21.9ms)
9094
+ Completed 500 Internal Server Error in 26ms
9095
+
9096
+ ActionView::Template::Error (undefined method `singularize' for :secrets:Symbol):
9097
+ 1: <h1><%= @user.name %>'s <%= @association.name.singularize %> #<%= @record.id %></h1>
9098
+ 2:
9099
+ 3: <%= image_tag 'nsa_panel/fuck_you.jpg' %>
9100
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb:1:in `___sers_goshakkk_src_nsa_panel_app_views_nsa_panel_data_show_html_erb___1087940456652658952_70212885598120'
9101
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
9102
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
9103
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
9104
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9105
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9106
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
9107
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9108
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
9109
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9110
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9111
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9112
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9113
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
9114
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
9115
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
9116
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
9117
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9118
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9119
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9120
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9121
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
9122
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
9123
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9124
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9125
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9126
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9127
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9128
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9129
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9130
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
9131
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9132
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9133
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
9134
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
9135
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9136
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__3082127876064197445__process_action__1660186205495107260__callbacks'
9137
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
9138
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9139
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
9140
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
9141
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
9142
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9143
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
9144
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9145
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
9146
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9147
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9148
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9149
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
9150
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
9151
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
9152
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9153
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
9154
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
9155
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9156
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
9157
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9158
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9159
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9160
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
9161
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
9162
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
9163
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9164
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9165
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9166
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
9167
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9168
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9169
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9170
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
9171
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9172
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
9173
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9174
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9175
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9176
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
9177
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9178
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9179
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4559348743135810064__call__2797818666434104518__callbacks'
9180
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
9181
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9182
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
9183
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9184
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9185
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9186
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9187
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9188
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
9189
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
9190
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
9191
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
9192
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9193
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9194
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9195
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9196
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9197
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
9198
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
9199
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
9200
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9201
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
9202
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9203
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9204
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9205
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9206
+
9207
+
9208
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
9209
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
9210
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
9211
+
9212
+
9213
+ Started GET "/nsa_panel/users/1/data/1?name=secrets" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9214
+ Processing by NsaPanel::DataController#show as HTML
9215
+ Parameters: {"name"=>"secrets", "user_id"=>"1", "id"=>"1"}
9216
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9217
+ Secret Load (0.2ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1 AND "secrets"."id" = ? LIMIT 1 [["id", "1"]]
9218
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb within layouts/nsa_panel/application (1.6ms)
9219
+ Completed 200 OK in 13ms (Views: 9.9ms | ActiveRecord: 0.3ms)
9220
+
9221
+
9222
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9223
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9224
+
9225
+
9226
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9227
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9228
+
9229
+
9230
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9231
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9232
+
9233
+
9234
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9235
+ Served asset /jquery.js - 304 Not Modified (0ms)
9236
+
9237
+
9238
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9239
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9240
+
9241
+
9242
+ Started GET "/assets/nsa_panel/fuck_you.jpg" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9243
+ Served asset /nsa_panel/fuck_you.jpg - 304 Not Modified (1ms)
9244
+
9245
+
9246
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:20:26 +0300
9247
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9248
+
9249
+
9250
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9251
+ Processing by NsaPanel::DataController#index as HTML
9252
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
9253
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9254
+ Secret Load (0.5ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
9255
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (5.6ms)
9256
+ Completed 200 OK in 19ms (Views: 14.4ms | ActiveRecord: 0.8ms)
9257
+
9258
+
9259
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9260
+ Served asset /jquery.js - 304 Not Modified (0ms)
9261
+
9262
+
9263
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9264
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9265
+
9266
+
9267
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9268
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9269
+
9270
+
9271
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9272
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9273
+
9274
+
9275
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9276
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9277
+
9278
+
9279
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:20:32 +0300
9280
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9281
+
9282
+
9283
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9284
+ Processing by NsaPanel::DataController#index as HTML
9285
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
9286
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9287
+ Secret Load (0.4ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
9288
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (3.8ms)
9289
+ Completed 200 OK in 12ms (Views: 8.7ms | ActiveRecord: 0.5ms)
9290
+
9291
+
9292
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9293
+ Served asset /jquery.js - 304 Not Modified (0ms)
9294
+
9295
+
9296
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9297
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9298
+
9299
+
9300
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9301
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9302
+
9303
+
9304
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9305
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9306
+
9307
+
9308
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9309
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9310
+
9311
+
9312
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:20:50 +0300
9313
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9314
+
9315
+
9316
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9317
+ Processing by NsaPanel::UsersController#index as HTML
9318
+ User Load (0.7ms) SELECT "users".* FROM "users" 
9319
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (26.0ms)
9320
+ Completed 200 OK in 36ms (Views: 31.4ms | ActiveRecord: 0.7ms)
9321
+
9322
+
9323
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9324
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9325
+
9326
+
9327
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9328
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9329
+
9330
+
9331
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9332
+ Served asset /jquery.js - 304 Not Modified (0ms)
9333
+
9334
+
9335
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9336
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9337
+
9338
+
9339
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9340
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9341
+
9342
+
9343
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:21:22 +0300
9344
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9345
+
9346
+
9347
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9348
+ Processing by NsaPanel::UsersController#show as HTML
9349
+ Parameters: {"id"=>"1"}
9350
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9351
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (0.9ms)
9352
+ Completed 200 OK in 10ms (Views: 6.3ms | ActiveRecord: 0.4ms)
9353
+
9354
+
9355
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9356
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9357
+
9358
+
9359
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9360
+ Served asset /jquery.js - 304 Not Modified (0ms)
9361
+
9362
+
9363
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9364
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9365
+
9366
+
9367
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9368
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9369
+
9370
+
9371
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9372
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9373
+
9374
+
9375
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:22:17 +0300
9376
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9377
+
9378
+
9379
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9380
+ Processing by NsaPanel::UsersController#show as HTML
9381
+ Parameters: {"id"=>"1"}
9382
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9383
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (2.1ms)
9384
+ Completed 200 OK in 22ms (Views: 10.5ms | ActiveRecord: 0.9ms)
9385
+
9386
+
9387
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9388
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9389
+
9390
+
9391
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9392
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9393
+
9394
+
9395
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9396
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9397
+
9398
+
9399
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9400
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9401
+
9402
+
9403
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9404
+ Served asset /jquery.js - 304 Not Modified (0ms)
9405
+
9406
+
9407
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:28:29 +0300
9408
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9409
+
9410
+
9411
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9412
+ Processing by NsaPanel::UsersController#show as HTML
9413
+ Parameters: {"id"=>"1"}
9414
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9415
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (0.9ms)
9416
+ Compiled nsa_panel/application.css (1ms) (pid 64732)
9417
+ Completed 200 OK in 35ms (Views: 25.5ms | ActiveRecord: 0.6ms)
9418
+
9419
+
9420
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9421
+ Served asset /nsa_panel/application.css - 200 OK (4ms)
9422
+
9423
+
9424
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9425
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9426
+
9427
+
9428
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9429
+ Served asset /jquery.js - 304 Not Modified (0ms)
9430
+
9431
+
9432
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9433
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9434
+
9435
+
9436
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9437
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9438
+
9439
+
9440
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:29:17 +0300
9441
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9442
+
9443
+
9444
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9445
+ Processing by NsaPanel::UsersController#show as HTML
9446
+ Parameters: {"id"=>"1"}
9447
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9448
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.1ms)
9449
+ Completed 200 OK in 15ms (Views: 6.0ms | ActiveRecord: 0.9ms)
9450
+
9451
+
9452
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9453
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9454
+
9455
+
9456
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9457
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9458
+
9459
+
9460
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9461
+ Served asset /jquery.js - 304 Not Modified (0ms)
9462
+
9463
+
9464
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9465
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9466
+
9467
+
9468
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9469
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9470
+
9471
+
9472
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:29:34 +0300
9473
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9474
+
9475
+
9476
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:30:55 +0300
9477
+ Processing by NsaPanel::UsersController#show as HTML
9478
+ Parameters: {"id"=>"1"}
9479
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9480
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.3ms)
9481
+ Completed 500 Internal Server Error in 9ms
9482
+
9483
+ ActionView::Template::Error (String can't be coerced into Fixnum):
9484
+ 14: <% @user.attributes.each do |key, value| %>
9485
+ 15: <tr>
9486
+ 16: <td><%= key.capitalize %></td>
9487
+ 17: <td><%= blackout value, key %></td>
9488
+ 18: </tr>
9489
+ 19: <% end %>
9490
+ 20: </tbody>
9491
+ /Users/goshakkk/src/nsa_panel/app/helpers/nsa_panel/users_helper.rb:5:in `*'
9492
+ /Users/goshakkk/src/nsa_panel/app/helpers/nsa_panel/users_helper.rb:5:in `blackout'
9493
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb:17:in `block in ___sers_goshakkk_src_nsa_panel_app_views_nsa_panel_users_show_html_erb___334633306316306317_70212885402900'
9494
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb:14:in `each'
9495
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb:14:in `___sers_goshakkk_src_nsa_panel_app_views_nsa_panel_users_show_html_erb___334633306316306317_70212885402900'
9496
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
9497
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
9498
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
9499
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9500
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9501
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
9502
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9503
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
9504
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9505
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9506
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9507
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9508
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
9509
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
9510
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
9511
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
9512
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9513
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9514
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9515
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9516
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
9517
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
9518
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9519
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9520
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9521
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9522
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9523
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9524
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9525
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
9526
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9527
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9528
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
9529
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
9530
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9531
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__4340042363301585474__process_action__1660186205495107260__callbacks'
9532
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
9533
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9534
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
9535
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
9536
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
9537
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9538
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
9539
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9540
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
9541
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9542
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9543
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9544
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
9545
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
9546
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
9547
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9548
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
9549
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
9550
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9551
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
9552
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9553
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9554
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9555
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
9556
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
9557
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
9558
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9559
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9560
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9561
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
9562
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9563
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9564
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9565
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
9566
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9567
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
9568
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9569
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9570
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9571
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
9572
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9573
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9574
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4559348743135810064__call__2797818666434104518__callbacks'
9575
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
9576
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9577
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
9578
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9579
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9580
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9581
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9582
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9583
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
9584
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
9585
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
9586
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
9587
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9588
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9589
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9590
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9591
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9592
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
9593
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
9594
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
9595
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9596
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
9597
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9598
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9599
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9600
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9601
+
9602
+
9603
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
9604
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
9605
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
9606
+
9607
+
9608
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:31:18 +0300
9609
+ Processing by NsaPanel::UsersController#show as HTML
9610
+ Parameters: {"id"=>"1"}
9611
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9612
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.0ms)
9613
+ Completed 200 OK in 17ms (Views: 7.0ms | ActiveRecord: 0.8ms)
9614
+
9615
+
9616
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:31:18 +0300
9617
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9618
+
9619
+
9620
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:31:18 +0300
9621
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9622
+
9623
+
9624
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:18 +0300
9625
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9626
+
9627
+
9628
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:18 +0300
9629
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9630
+
9631
+
9632
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:18 +0300
9633
+ Served asset /jquery.js - 304 Not Modified (0ms)
9634
+
9635
+
9636
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:31:19 +0300
9637
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9638
+
9639
+
9640
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9641
+ Processing by NsaPanel::UsersController#show as HTML
9642
+ Parameters: {"id"=>"1"}
9643
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9644
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.5ms)
9645
+ Completed 200 OK in 47ms (Views: 38.8ms | ActiveRecord: 0.7ms)
9646
+
9647
+
9648
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9649
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9650
+
9651
+
9652
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9653
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9654
+
9655
+
9656
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9657
+ Served asset /jquery.js - 304 Not Modified (0ms)
9658
+
9659
+
9660
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9661
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9662
+
9663
+
9664
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9665
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9666
+
9667
+
9668
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:31:42 +0300
9669
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9670
+
9671
+
9672
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9673
+ Processing by NsaPanel::UsersController#show as HTML
9674
+ Parameters: {"id"=>"1"}
9675
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9676
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.3ms)
9677
+ Completed 200 OK in 15ms (Views: 7.9ms | ActiveRecord: 0.7ms)
9678
+
9679
+
9680
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9681
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9682
+
9683
+
9684
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9685
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9686
+
9687
+
9688
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9689
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9690
+
9691
+
9692
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9693
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9694
+
9695
+
9696
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9697
+ Served asset /jquery.js - 304 Not Modified (0ms)
9698
+
9699
+
9700
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:31:52 +0300
9701
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9702
+
9703
+
9704
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:32:08 +0300
9705
+ Processing by NsaPanel::UsersController#show as HTML
9706
+ Parameters: {"id"=>"1"}
9707
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9708
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.9ms)
9709
+ Completed 500 Internal Server Error in 32ms
9710
+
9711
+ ActionView::Template::Error (undefined method `html_safe' for 1:Fixnum):
9712
+ 14: <% @user.attributes.each do |key, value| %>
9713
+ 15: <tr>
9714
+ 16: <td><%= key.capitalize %></td>
9715
+ 17: <td><%= blackout value, key %></td>
9716
+ 18: </tr>
9717
+ 19: <% end %>
9718
+ 20: </tbody>
9719
+ /Users/goshakkk/src/nsa_panel/app/helpers/nsa_panel/users_helper.rb:6:in `blackout'
9720
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb:17:in `block in ___sers_goshakkk_src_nsa_panel_app_views_nsa_panel_users_show_html_erb___334633306316306317_70212885402900'
9721
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb:14:in `each'
9722
+ /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb:14:in `___sers_goshakkk_src_nsa_panel_app_views_nsa_panel_users_show_html_erb___334633306316306317_70212885402900'
9723
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
9724
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
9725
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
9726
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
9727
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
9728
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
9729
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9730
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
9731
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
9732
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
9733
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
9734
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
9735
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
9736
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
9737
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
9738
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
9739
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
9740
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
9741
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
9742
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
9743
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
9744
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
9745
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
9746
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
9747
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
9748
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
9749
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
9750
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
9751
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
9752
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
9753
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
9754
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
9755
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
9756
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
9757
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
9758
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__4340042363301585474__process_action__1660186205495107260__callbacks'
9759
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
9760
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
9761
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
9762
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
9763
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
9764
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
9765
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
9766
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9767
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
9768
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
9769
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
9770
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9771
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
9772
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
9773
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
9774
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
9775
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
9776
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
9777
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9778
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
9779
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9780
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9781
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9782
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
9783
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
9784
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
9785
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
9786
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
9787
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
9788
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
9789
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
9790
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
9791
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
9792
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
9793
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
9794
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
9795
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
9796
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
9797
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
9798
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
9799
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
9800
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
9801
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4559348743135810064__call__2797818666434104518__callbacks'
9802
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
9803
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
9804
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
9805
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9806
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
9807
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
9808
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
9809
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9810
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
9811
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
9812
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
9813
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
9814
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9815
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9816
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9817
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9818
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9819
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
9820
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
9821
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
9822
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9823
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
9824
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9825
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9826
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9827
+ /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9828
+
9829
+
9830
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
9831
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
9832
+ Rendered /opt/boxen/rbenv/versions/1.9.3-p429/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
9833
+
9834
+
9835
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9836
+ Processing by NsaPanel::UsersController#show as HTML
9837
+ Parameters: {"id"=>"1"}
9838
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9839
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.1ms)
9840
+ Completed 200 OK in 16ms (Views: 7.3ms | ActiveRecord: 0.8ms)
9841
+
9842
+
9843
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9844
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9845
+
9846
+
9847
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9848
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9849
+
9850
+
9851
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9852
+ Served asset /jquery.js - 304 Not Modified (0ms)
9853
+
9854
+
9855
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9856
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9857
+
9858
+
9859
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9860
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9861
+
9862
+
9863
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:32:19 +0300
9864
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9865
+
9866
+
9867
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9868
+ Processing by NsaPanel::UsersController#show as HTML
9869
+ Parameters: {"id"=>"1"}
9870
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9871
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.4ms)
9872
+ Completed 200 OK in 17ms (Views: 8.2ms | ActiveRecord: 0.7ms)
9873
+
9874
+
9875
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9876
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9877
+
9878
+
9879
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9880
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9881
+
9882
+
9883
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9884
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9885
+
9886
+
9887
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9888
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9889
+
9890
+
9891
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9892
+ Served asset /jquery.js - 304 Not Modified (0ms)
9893
+
9894
+
9895
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:32:27 +0300
9896
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9897
+
9898
+
9899
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9900
+ Processing by NsaPanel::UsersController#show as HTML
9901
+ Parameters: {"id"=>"1"}
9902
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9903
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.6ms)
9904
+ Completed 200 OK in 20ms (Views: 11.0ms | ActiveRecord: 0.9ms)
9905
+
9906
+
9907
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9908
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9909
+
9910
+
9911
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9912
+ Served asset /jquery.js - 304 Not Modified (0ms)
9913
+
9914
+
9915
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9916
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9917
+
9918
+
9919
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9920
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9921
+
9922
+
9923
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9924
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9925
+
9926
+
9927
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:32:38 +0300
9928
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9929
+
9930
+
9931
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9932
+ Processing by NsaPanel::DataController#index as HTML
9933
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
9934
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9935
+ Secret Load (0.8ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
9936
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (3.3ms)
9937
+ Completed 200 OK in 26ms (Views: 8.4ms | ActiveRecord: 1.3ms)
9938
+
9939
+
9940
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9941
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9942
+
9943
+
9944
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9945
+ Served asset /jquery.js - 304 Not Modified (0ms)
9946
+
9947
+
9948
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9949
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9950
+
9951
+
9952
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9953
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9954
+
9955
+
9956
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9957
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9958
+
9959
+
9960
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:34:57 +0300
9961
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9962
+
9963
+
9964
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:37:07 +0300
9965
+ Processing by NsaPanel::UsersController#show as HTML
9966
+ Parameters: {"id"=>"1"}
9967
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
9968
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.7ms)
9969
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms)
9970
+
9971
+
9972
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:37:07 +0300
9973
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
9974
+
9975
+
9976
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:37:07 +0300
9977
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
9978
+
9979
+
9980
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:07 +0300
9981
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9982
+
9983
+
9984
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:07 +0300
9985
+ Served asset /jquery.js - 304 Not Modified (0ms)
9986
+
9987
+
9988
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:07 +0300
9989
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
9990
+
9991
+
9992
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:37:08 +0300
9993
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
9994
+
9995
+
9996
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:37:51 +0300
9997
+ Processing by NsaPanel::UsersController#index as HTML
9998
+ User Load (0.8ms) SELECT "users".* FROM "users" 
9999
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (25.4ms)
10000
+ Completed 200 OK in 40ms (Views: 33.0ms | ActiveRecord: 0.8ms)
10001
+
10002
+
10003
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:37:51 +0300
10004
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
10005
+
10006
+
10007
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:51 +0300
10008
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10009
+
10010
+
10011
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:37:51 +0300
10012
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
10013
+
10014
+
10015
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:51 +0300
10016
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
10017
+
10018
+
10019
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:51 +0300
10020
+ Served asset /jquery.js - 304 Not Modified (0ms)
10021
+
10022
+
10023
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:37:52 +0300
10024
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
10025
+
10026
+
10027
+ Started GET "/nsa_panel/" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10028
+ Processing by NsaPanel::UsersController#index as HTML
10029
+ User Load (0.6ms) SELECT "users".* FROM "users"
10030
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/index.html.erb within layouts/nsa_panel/application (59.7ms)
10031
+ Completed 200 OK in 70ms (Views: 65.5ms | ActiveRecord: 0.6ms)
10032
+
10033
+
10034
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10035
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
10036
+
10037
+
10038
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10039
+ Served asset /jquery.js - 304 Not Modified (0ms)
10040
+
10041
+
10042
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10043
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
10044
+
10045
+
10046
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10047
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
10048
+
10049
+
10050
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10051
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10052
+
10053
+
10054
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:37:55 +0300
10055
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
10056
+
10057
+
10058
+ Started GET "/nsa_panel/users/1" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10059
+ Processing by NsaPanel::UsersController#show as HTML
10060
+ Parameters: {"id"=>"1"}
10061
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
10062
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/users/show.html.erb within layouts/nsa_panel/application (1.1ms)
10063
+ Completed 200 OK in 11ms (Views: 8.1ms | ActiveRecord: 0.2ms)
10064
+
10065
+
10066
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10067
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
10068
+
10069
+
10070
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10071
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
10072
+
10073
+
10074
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10075
+ Served asset /jquery.js - 304 Not Modified (0ms)
10076
+
10077
+
10078
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10079
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
10080
+
10081
+
10082
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10083
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10084
+
10085
+
10086
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:39:00 +0300
10087
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
10088
+
10089
+
10090
+ Started GET "/nsa_panel/users/1/data?name=secrets" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10091
+ Processing by NsaPanel::DataController#index as HTML
10092
+ Parameters: {"name"=>"secrets", "user_id"=>"1"}
10093
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
10094
+ Secret Load (0.4ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1
10095
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/index.html.erb within layouts/nsa_panel/application (3.9ms)
10096
+ Completed 200 OK in 14ms (Views: 11.1ms | ActiveRecord: 0.5ms)
10097
+
10098
+
10099
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10100
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10101
+
10102
+
10103
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10104
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
10105
+
10106
+
10107
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10108
+ Served asset /jquery.js - 304 Not Modified (0ms)
10109
+
10110
+
10111
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10112
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
10113
+
10114
+
10115
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10116
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
10117
+
10118
+
10119
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:39:05 +0300
10120
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
10121
+
10122
+
10123
+ Started GET "/nsa_panel/users/1/data/1?name=secrets" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10124
+ Processing by NsaPanel::DataController#show as HTML
10125
+ Parameters: {"name"=>"secrets", "user_id"=>"1", "id"=>"1"}
10126
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
10127
+ Secret Load (0.2ms) SELECT "secrets".* FROM "secrets" WHERE "secrets"."user_id" = 1 AND "secrets"."id" = ? LIMIT 1 [["id", "1"]]
10128
+ Rendered /Users/goshakkk/src/nsa_panel/app/views/nsa_panel/data/show.html.erb within layouts/nsa_panel/application (0.5ms)
10129
+ Completed 200 OK in 10ms (Views: 6.9ms | ActiveRecord: 0.4ms)
10130
+
10131
+
10132
+ Started GET "/assets/nsa_panel/bootstrap.css?body=1" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10133
+ Served asset /nsa_panel/bootstrap.css - 304 Not Modified (0ms)
10134
+
10135
+
10136
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10137
+ Served asset /jquery.js - 304 Not Modified (0ms)
10138
+
10139
+
10140
+ Started GET "/assets/nsa_panel/application.css?body=1" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10141
+ Served asset /nsa_panel/application.css - 304 Not Modified (0ms)
10142
+
10143
+
10144
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10145
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10146
+
10147
+
10148
+ Started GET "/assets/nsa_panel/application.js?body=1" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10149
+ Served asset /nsa_panel/application.js - 304 Not Modified (0ms)
10150
+
10151
+
10152
+ Started GET "/assets/nsa_panel/nsa-eagle-tiny.png" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10153
+ Served asset /nsa_panel/nsa-eagle-tiny.png - 304 Not Modified (0ms)
10154
+
10155
+
10156
+ Started GET "/assets/nsa_panel/fuck_you.jpg" for 127.0.0.1 at 2013-06-09 13:39:10 +0300
10157
+ Served asset /nsa_panel/fuck_you.jpg - 304 Not Modified (0ms)