noodnik 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,7 +2,14 @@
2
2
 
3
3
  This gem is a simple solution that allows you to remind your users to do things such as update their profiles, complete surveys or try a new feature. You can easily add links for postponing these reminders.
4
4
 
5
- ## Installation
5
+ ## Installation (wip)
6
+
7
+ 1. In your Gemfile, add this line: ```gem 'noodnik'```
8
+ 2. ```$ bundle install```
9
+ 3. ```$ rake noodnik:install:migrations```
10
+ 4. ```$ rake db:migrate```
11
+ 5. ```$ rails g noodnik:install```
12
+ 6. Edit config/initializers/Noodnik.rb and follow the instructions there.
6
13
 
7
14
  ## Examples
8
15
 
@@ -5,11 +5,11 @@ module Noodnik
5
5
  topic = params[:topic]
6
6
 
7
7
  if user_id.present?
8
- nag = find_or_create_nag(topic)
9
- nag.next_nag = next_nag
10
- nag.save
8
+ find_or_create_nag(topic).tap do |nag|
9
+ nag.next_nag = next_nag
10
+ end.save
11
11
  else
12
- cookies[topic] = next_nag.to_s
12
+ cookies["noodnik_#{topic}"] = next_nag.to_s
13
13
  end
14
14
 
15
15
  render :nothing => true
@@ -23,7 +23,7 @@ module Noodnik
23
23
  nag.completed = true
24
24
  nag.save
25
25
  else
26
- cookies.delete topic
26
+ cookies.delete "noodnik_#{topic}"
27
27
  end
28
28
 
29
29
  render :nothing => true
@@ -2,35 +2,53 @@ module Noodnik
2
2
  module NagsHelper
3
3
  def nag_user_to(topic, &block)
4
4
  nag = find_nag(topic)
5
- return if nag && (nag.next_nag > Time.now || nag.completed?)
5
+ return if nag && !nag.due?
6
6
 
7
7
  begin
8
- class_eval('alias :original_link_to :link_to')
9
- class_eval('alias :link_to :my_custom_link_to')
10
- Context.new.local_eval do
11
- @noodnik_topic = topic
12
- content_tag :div, class: 'noodnik-nag' do
13
- capture(&block)
14
- end
15
- end
16
- ensure
17
- @noodnik_topic = nil
18
- class_eval('alias :link_to :original_link_to')
19
- end
8
+ alias_methods
9
+ yield_block(topic, &block)
10
+ ensure
11
+ cleanup
12
+ end
20
13
  end
21
14
 
22
15
  private
23
16
 
24
17
  def find_nag(topic)
25
- attr = { user_id: Noodnik.current_user_id.call, topic: topic }
26
- Nag.find :first, conditions: attr
18
+ user_id = Noodnik.current_user_id.call
19
+
20
+ if user_id
21
+ attr = { user_id: user_id, topic: topic }
22
+ Nag.find :first, conditions: attr
23
+ else
24
+ CookieNag.new(topic, cookies)
25
+ end
26
+ end
27
+
28
+ def alias_methods
29
+ class_eval('alias :original_link_to :link_to')
30
+ class_eval('alias :link_to :my_custom_link_to')
31
+ end
32
+
33
+ def yield_block(topic, &block)
34
+ Context.new.local_eval do
35
+ @noodnik_topic = topic
36
+ content_tag :div, class: 'noodnik-nag' do
37
+ capture(&block)
38
+ end
39
+ end
40
+ end
41
+
42
+ def cleanup
43
+ @noodnik_topic = nil
44
+ class_eval('alias :link_to :original_link_to')
27
45
  end
28
46
 
29
47
  def my_custom_link_to(*args)
30
48
  has_options = args.last.is_a? Hash
31
49
  html_options = has_options ? args.last : {}
32
50
  html_options["data-noodnik-complete-path"] = noodnik.routes.url_helpers.complete_path(topic: @noodnik_topic)
33
-
51
+
34
52
  if html_options.include? :class
35
53
  html_options[:class] += " noodnik-complete"
36
54
  else
@@ -43,7 +61,7 @@ module Noodnik
43
61
 
44
62
  class Context
45
63
  include Rails.application.routes.mounted_helpers
46
- def postpone_for(period)
64
+ def postpone_for(period)
47
65
  original_link_to "Remind me in #{period.inspect}", noodnik.routes.url_helpers.postpone_path(period: period, topic: @noodnik_topic), class: 'noodnik-postpone'
48
66
  end
49
67
  end
@@ -0,0 +1,23 @@
1
+ class CookieNag
2
+ def initialize(topic, cookies)
3
+ @next_nag = cookies[topic]
4
+ end
5
+
6
+ def due?
7
+ !complete? && (brand_new? || expired?)
8
+ end
9
+
10
+ private
11
+
12
+ def complete?
13
+ @next_nag == 'complete'
14
+ end
15
+
16
+ def brand_new?
17
+ @next_nag.nil?
18
+ end
19
+
20
+ def expired?
21
+ ActiveSupport::TimeZone['UTC'].parse(@next_nag.to_s) < Time.now
22
+ end
23
+ end
@@ -1,4 +1,13 @@
1
1
  module Noodnik
2
- class Nag < ActiveRecord::Base
3
- end
2
+ class Nag < ActiveRecord::Base
3
+ def due?
4
+ !(postponed? || completed?)
5
+ end
6
+
7
+ private
8
+
9
+ def postponed?
10
+ next_nag > Time.now
11
+ end
12
+ end
4
13
  end
@@ -0,0 +1,11 @@
1
+ module Noodnik
2
+ module Generators
3
+ class InstallGenerator < Rails::Generators::Base
4
+ source_root File.expand_path('../templates', __FILE__)
5
+
6
+ def generate_initializer
7
+ copy_file 'initializer.rb', 'config/initializers/noodnik.rb'
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,8 @@
1
+ Noodnik.setup do |config|
2
+ config.current_user_id = lambda {
3
+ # Replace this block of comments with whatever code is needed in order to resolve the current user id at runtime.
4
+ # For example, if you are using devise or sorcery, replace this entire block of comments with :
5
+ #
6
+ # current_user.id
7
+ }
8
+ end
Binary file
@@ -10610,3 +10610,1515 @@ Started GET "/?topic=push" for 127.0.0.1 at 2011-09-03 21:33:03 +0300
10610
10610
  Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10611
10611
  Rendered home/index.html.erb within layouts/application (12.8ms)
10612
10612
  Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.9ms)
10613
+
10614
+
10615
+ Started GET "/" for 127.0.0.1 at 2011-09-20 10:54:32 +0300
10616
+ Processing by HomeController#index as HTML
10617
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10618
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10619
+ Rendered home/index.html.erb within layouts/application (218.1ms)
10620
+ Completed 200 OK in 415ms (Views: 413.5ms | ActiveRecord: 1.1ms)
10621
+
10622
+
10623
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-20 10:54:32 +0300
10624
+ Served asset /application.css - 200 OK (111ms)
10625
+
10626
+
10627
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-20 10:54:32 +0300
10628
+ Served asset /application.js - 200 OK (124ms)
10629
+
10630
+
10631
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-20 10:54:33 +0300
10632
+ Served asset /noodnik/application.js - 200 OK (58ms)
10633
+
10634
+
10635
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-20 10:54:40 +0300
10636
+ Processing by Noodnik::NagsController#postpone as */*
10637
+ Parameters: {"period"=>"5"}
10638
+  (0.1ms) SELECT 1 FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10639
+ SQL (5.6ms) INSERT INTO "noodnik_nags" ("completed", "created_at", "next_nag", "topic", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["completed", nil], ["created_at", Tue, 20 Sep 2011 07:54:40 UTC +00:00], ["next_nag", Tue, 20 Sep 2011 07:54:45 UTC +00:00], ["topic", nil], ["updated_at", Tue, 20 Sep 2011 07:54:40 UTC +00:00], ["user_id", 1]]
10640
+ Rendered text template (0.0ms)
10641
+ Completed 200 OK in 667ms (Views: 16.4ms | ActiveRecord: 6.0ms)
10642
+
10643
+
10644
+ Started GET "/" for 127.0.0.1 at 2011-09-20 10:54:43 +0300
10645
+ Processing by HomeController#index as HTML
10646
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10647
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10648
+ Rendered home/index.html.erb within layouts/application (41.0ms)
10649
+ Completed 200 OK in 47ms (Views: 45.2ms | ActiveRecord: 1.0ms)
10650
+
10651
+
10652
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-20 10:54:43 +0300
10653
+ Served asset /application.css - 304 Not Modified (0ms)
10654
+
10655
+
10656
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-20 10:54:43 +0300
10657
+ Served asset /application.js - 304 Not Modified (0ms)
10658
+
10659
+
10660
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-20 10:54:43 +0300
10661
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10662
+
10663
+
10664
+ Started GET "/" for 127.0.0.1 at 2011-09-20 10:54:46 +0300
10665
+ Processing by HomeController#index as HTML
10666
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10667
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10668
+ Rendered home/index.html.erb within layouts/application (18.7ms)
10669
+ Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 1.0ms)
10670
+
10671
+
10672
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-20 10:54:46 +0300
10673
+ Served asset /application.css - 304 Not Modified (0ms)
10674
+
10675
+
10676
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-20 10:54:46 +0300
10677
+ Served asset /application.js - 304 Not Modified (0ms)
10678
+
10679
+
10680
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-20 10:54:46 +0300
10681
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10682
+
10683
+
10684
+ Started GET "/" for 127.0.0.1 at 2011-09-20 12:03:04 +0300
10685
+ Processing by HomeController#index as HTML
10686
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10687
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10688
+ Rendered home/index.html.erb within layouts/application (53.9ms)
10689
+ Completed 200 OK in 103ms (Views: 101.8ms | ActiveRecord: 1.1ms)
10690
+
10691
+
10692
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-20 12:03:04 +0300
10693
+ Served asset /application.css - 304 Not Modified (0ms)
10694
+
10695
+
10696
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-20 12:03:04 +0300
10697
+ Served asset /application.js - 304 Not Modified (78ms)
10698
+
10699
+
10700
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-20 12:03:04 +0300
10701
+ Served asset /noodnik/application.js - 304 Not Modified (24ms)
10702
+
10703
+
10704
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-20 12:05:59 +0300
10705
+ Processing by HomeController#index as HTML
10706
+ Parameters: {"topic"=>"blah"}
10707
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'blah' LIMIT 1
10708
+ Noodnik::Nag Load (0.3ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10709
+ Rendered home/index.html.erb within layouts/application (13.4ms)
10710
+ Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.9ms)
10711
+
10712
+
10713
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-20 12:05:59 +0300
10714
+ Served asset /application.css - 304 Not Modified (0ms)
10715
+
10716
+
10717
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-20 12:05:59 +0300
10718
+ Served asset /application.js - 304 Not Modified (0ms)
10719
+
10720
+
10721
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-20 12:05:59 +0300
10722
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10723
+
10724
+
10725
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-20 13:47:43 +0300
10726
+ Processing by HomeController#index as HTML
10727
+ Parameters: {"topic"=>"blah"}
10728
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'blah' LIMIT 1
10729
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10730
+ Rendered home/index.html.erb within layouts/application (17.6ms)
10731
+ Completed 200 OK in 76ms (Views: 74.3ms | ActiveRecord: 0.8ms)
10732
+
10733
+
10734
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-20 13:47:44 +0300
10735
+ Served asset /application.js - 304 Not Modified (169ms)
10736
+
10737
+
10738
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-20 13:47:44 +0300
10739
+ Served asset /application.css - 304 Not Modified (0ms)
10740
+
10741
+
10742
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-20 13:47:44 +0300
10743
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10744
+
10745
+
10746
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:46:43 +0300
10747
+ Processing by HomeController#index as HTML
10748
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10749
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10750
+ Rendered home/index.html.erb within layouts/application (269.7ms)
10751
+ Completed 200 OK in 523ms (Views: 521.0ms | ActiveRecord: 1.2ms)
10752
+
10753
+
10754
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:46:44 +0300
10755
+ Served asset /noodnik/application.js - 304 Not Modified (353ms)
10756
+
10757
+
10758
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:46:45 +0300
10759
+ Served asset /application.js - 304 Not Modified (106ms)
10760
+
10761
+
10762
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:46:45 +0300
10763
+ Served asset /application.css - 304 Not Modified (133ms)
10764
+
10765
+
10766
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:46:49 +0300
10767
+ Processing by Noodnik::NagsController#postpone as */*
10768
+ Parameters: {"period"=>"5"}
10769
+  (0.1ms) SELECT 1 FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10770
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10771
+  (0.4ms) UPDATE "noodnik_nags" SET "next_nag" = '2011-09-22 18:46:54.845384', "updated_at" = '2011-09-22 18:46:49.919935' WHERE "noodnik_nags"."id" = 9
10772
+ Rendered text template (0.0ms)
10773
+ Completed 200 OK in 300ms (Views: 24.8ms | ActiveRecord: 1.0ms)
10774
+
10775
+
10776
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:46:51 +0300
10777
+ Processing by HomeController#index as HTML
10778
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10779
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10780
+ Rendered home/index.html.erb within layouts/application (18.1ms)
10781
+ Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.9ms)
10782
+
10783
+
10784
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:46:51 +0300
10785
+ Served asset /application.css - 304 Not Modified (0ms)
10786
+
10787
+
10788
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:46:51 +0300
10789
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10790
+
10791
+
10792
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:46:51 +0300
10793
+ Served asset /application.js - 304 Not Modified (0ms)
10794
+
10795
+
10796
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:46:52 +0300
10797
+ Processing by HomeController#index as HTML
10798
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10799
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10800
+ Rendered home/index.html.erb within layouts/application (19.0ms)
10801
+ Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 1.1ms)
10802
+
10803
+
10804
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:46:52 +0300
10805
+ Served asset /application.css - 304 Not Modified (0ms)
10806
+
10807
+
10808
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:46:52 +0300
10809
+ Served asset /application.js - 304 Not Modified (0ms)
10810
+
10811
+
10812
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:46:52 +0300
10813
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10814
+
10815
+
10816
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:46:53 +0300
10817
+ Processing by HomeController#index as HTML
10818
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10819
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10820
+ Rendered home/index.html.erb within layouts/application (16.9ms)
10821
+ Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.9ms)
10822
+
10823
+
10824
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:46:53 +0300
10825
+ Served asset /application.css - 304 Not Modified (0ms)
10826
+
10827
+
10828
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:46:53 +0300
10829
+ Served asset /application.js - 304 Not Modified (0ms)
10830
+
10831
+
10832
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:46:53 +0300
10833
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10834
+
10835
+
10836
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:46:54 +0300
10837
+ Processing by HomeController#index as HTML
10838
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10839
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10840
+ Rendered home/index.html.erb within layouts/application (44.9ms)
10841
+ Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 0.9ms)
10842
+
10843
+
10844
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:46:54 +0300
10845
+ Served asset /application.css - 304 Not Modified (0ms)
10846
+
10847
+
10848
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:46:54 +0300
10849
+ Served asset /application.js - 304 Not Modified (0ms)
10850
+
10851
+
10852
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:46:54 +0300
10853
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10854
+
10855
+
10856
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:46:55 +0300
10857
+ Processing by HomeController#index as HTML
10858
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
10859
+ Noodnik::Nag Load (0.3ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
10860
+ Rendered home/index.html.erb within layouts/application (18.7ms)
10861
+ Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 1.0ms)
10862
+
10863
+
10864
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:46:55 +0300
10865
+ Served asset /application.css - 304 Not Modified (0ms)
10866
+
10867
+
10868
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:46:55 +0300
10869
+ Served asset /application.js - 304 Not Modified (0ms)
10870
+
10871
+
10872
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:46:55 +0300
10873
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10874
+
10875
+
10876
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:13 +0300
10877
+ Processing by HomeController#index as HTML
10878
+ Rendered home/index.html.erb within layouts/application (58.6ms)
10879
+ Completed 200 OK in 125ms (Views: 124.7ms | ActiveRecord: 0.0ms)
10880
+
10881
+
10882
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:13 +0300
10883
+ Served asset /application.js - 304 Not Modified (6ms)
10884
+
10885
+
10886
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:13 +0300
10887
+ Served asset /application.css - 304 Not Modified (3ms)
10888
+
10889
+
10890
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:13 +0300
10891
+ Served asset /noodnik/application.js - 304 Not Modified (6ms)
10892
+
10893
+
10894
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:47:19 +0300
10895
+ Processing by Noodnik::NagsController#postpone as */*
10896
+ Parameters: {"period"=>"5"}
10897
+ Rendered text template (0.0ms)
10898
+ Completed 200 OK in 21ms (Views: 16.2ms | ActiveRecord: 0.0ms)
10899
+
10900
+
10901
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:19 +0300
10902
+ Processing by HomeController#index as HTML
10903
+ Rendered home/index.html.erb within layouts/application (7.0ms)
10904
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
10905
+
10906
+
10907
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:19 +0300
10908
+ Served asset /application.js - 304 Not Modified (0ms)
10909
+
10910
+
10911
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:19 +0300
10912
+ Served asset /application.css - 304 Not Modified (0ms)
10913
+
10914
+
10915
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:19 +0300
10916
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10917
+
10918
+
10919
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:20 +0300
10920
+ Processing by HomeController#index as HTML
10921
+ Rendered home/index.html.erb within layouts/application (8.9ms)
10922
+ Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.0ms)
10923
+
10924
+
10925
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:20 +0300
10926
+ Served asset /application.css - 304 Not Modified (0ms)
10927
+
10928
+
10929
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:20 +0300
10930
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10931
+
10932
+
10933
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:20 +0300
10934
+ Served asset /application.js - 304 Not Modified (0ms)
10935
+
10936
+
10937
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:47:22 +0300
10938
+ Processing by Noodnik::NagsController#postpone as */*
10939
+ Parameters: {"period"=>"5"}
10940
+ Rendered text template (0.0ms)
10941
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
10942
+
10943
+
10944
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:22 +0300
10945
+ Processing by HomeController#index as HTML
10946
+ Rendered home/index.html.erb within layouts/application (6.3ms)
10947
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
10948
+
10949
+
10950
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:22 +0300
10951
+ Served asset /application.css - 304 Not Modified (0ms)
10952
+
10953
+
10954
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:22 +0300
10955
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10956
+
10957
+
10958
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:22 +0300
10959
+ Served asset /application.js - 304 Not Modified (0ms)
10960
+
10961
+
10962
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10963
+ Processing by HomeController#index as HTML
10964
+ Rendered home/index.html.erb within layouts/application (5.8ms)
10965
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
10966
+
10967
+
10968
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10969
+ Served asset /application.css - 304 Not Modified (0ms)
10970
+
10971
+
10972
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10973
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10974
+
10975
+
10976
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10977
+ Served asset /application.js - 304 Not Modified (0ms)
10978
+
10979
+
10980
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10981
+ Processing by HomeController#index as HTML
10982
+ Rendered home/index.html.erb within layouts/application (35.7ms)
10983
+ Completed 200 OK in 41ms (Views: 41.1ms | ActiveRecord: 0.0ms)
10984
+
10985
+
10986
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10987
+ Served asset /application.js - 304 Not Modified (0ms)
10988
+
10989
+
10990
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10991
+ Served asset /application.css - 304 Not Modified (0ms)
10992
+
10993
+
10994
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10995
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
10996
+
10997
+
10998
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
10999
+ Processing by HomeController#index as HTML
11000
+ Rendered home/index.html.erb within layouts/application (6.0ms)
11001
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
11002
+
11003
+
11004
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
11005
+ Served asset /application.css - 304 Not Modified (0ms)
11006
+
11007
+
11008
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
11009
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11010
+
11011
+
11012
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:23 +0300
11013
+ Served asset /application.js - 304 Not Modified (0ms)
11014
+
11015
+
11016
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11017
+ Processing by HomeController#index as HTML
11018
+ Rendered home/index.html.erb within layouts/application (6.0ms)
11019
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
11020
+
11021
+
11022
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11023
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11024
+
11025
+
11026
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11027
+ Served asset /application.js - 304 Not Modified (0ms)
11028
+
11029
+
11030
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11031
+ Served asset /application.css - 304 Not Modified (0ms)
11032
+
11033
+
11034
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11035
+ Processing by HomeController#index as HTML
11036
+ Rendered home/index.html.erb within layouts/application (5.9ms)
11037
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
11038
+
11039
+
11040
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11041
+ Served asset /application.css - 304 Not Modified (0ms)
11042
+
11043
+
11044
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11045
+ Served asset /application.js - 304 Not Modified (0ms)
11046
+
11047
+
11048
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11049
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11050
+
11051
+
11052
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11053
+ Processing by HomeController#index as HTML
11054
+ Rendered home/index.html.erb within layouts/application (37.0ms)
11055
+ Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms)
11056
+
11057
+
11058
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11059
+ Served asset /application.css - 304 Not Modified (0ms)
11060
+
11061
+
11062
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11063
+ Served asset /application.js - 304 Not Modified (0ms)
11064
+
11065
+
11066
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11067
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11068
+
11069
+
11070
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11071
+ Processing by HomeController#index as HTML
11072
+ Rendered home/index.html.erb within layouts/application (5.7ms)
11073
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
11074
+
11075
+
11076
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11077
+ Served asset /application.js - 304 Not Modified (0ms)
11078
+
11079
+
11080
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11081
+ Served asset /application.css - 304 Not Modified (0ms)
11082
+
11083
+
11084
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11085
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11086
+
11087
+
11088
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11089
+ Processing by HomeController#index as HTML
11090
+ Rendered home/index.html.erb within layouts/application (6.0ms)
11091
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
11092
+
11093
+
11094
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11095
+ Served asset /application.css - 304 Not Modified (0ms)
11096
+
11097
+
11098
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11099
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11100
+
11101
+
11102
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:47:24 +0300
11103
+ Served asset /application.js - 304 Not Modified (0ms)
11104
+
11105
+
11106
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:52:21 +0300
11107
+ Processing by Noodnik::NagsController#postpone as */*
11108
+ Parameters: {"period"=>"5"}
11109
+ Rendered text template (0.0ms)
11110
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
11111
+
11112
+
11113
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:52:33 +0300
11114
+ Processing by HomeController#index as HTML
11115
+ Rendered home/index.html.erb within layouts/application (63.3ms)
11116
+ Completed 200 OK in 69ms (Views: 68.8ms | ActiveRecord: 0.0ms)
11117
+
11118
+
11119
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:52:33 +0300
11120
+ Served asset /application.css - 304 Not Modified (0ms)
11121
+
11122
+
11123
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:52:33 +0300
11124
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11125
+
11126
+
11127
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:52:33 +0300
11128
+ Served asset /application.js - 304 Not Modified (0ms)
11129
+
11130
+
11131
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:52:33 +0300
11132
+ Processing by Noodnik::NagsController#postpone as */*
11133
+ Parameters: {"period"=>"5"}
11134
+ Rendered text template (0.0ms)
11135
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
11136
+
11137
+
11138
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11139
+ Processing by HomeController#index as HTML
11140
+ Rendered home/index.html.erb within layouts/application (12.6ms)
11141
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
11142
+
11143
+
11144
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11145
+ Served asset /application.css - 304 Not Modified (0ms)
11146
+
11147
+
11148
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11149
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11150
+
11151
+
11152
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11153
+ Served asset /application.js - 304 Not Modified (0ms)
11154
+
11155
+
11156
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11157
+ Processing by HomeController#index as HTML
11158
+ Rendered home/index.html.erb within layouts/application (6.9ms)
11159
+ Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
11160
+
11161
+
11162
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11163
+ Served asset /application.js - 304 Not Modified (0ms)
11164
+
11165
+
11166
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11167
+ Served asset /application.css - 304 Not Modified (0ms)
11168
+
11169
+
11170
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11171
+ Served asset /noodnik/application.js - 304 Not Modified (4ms)
11172
+
11173
+
11174
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:52:34 +0300
11175
+ Processing by HomeController#index as HTML
11176
+ Rendered home/index.html.erb within layouts/application (7.0ms)
11177
+ Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
11178
+
11179
+
11180
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11181
+ Served asset /application.css - 304 Not Modified (0ms)
11182
+
11183
+
11184
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11185
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11186
+
11187
+
11188
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11189
+ Served asset /application.js - 304 Not Modified (0ms)
11190
+
11191
+
11192
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11193
+ Processing by HomeController#index as HTML
11194
+ Rendered home/index.html.erb within layouts/application (6.1ms)
11195
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
11196
+
11197
+
11198
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11199
+ Served asset /application.css - 304 Not Modified (0ms)
11200
+
11201
+
11202
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11203
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11204
+
11205
+
11206
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:52:35 +0300
11207
+ Served asset /application.js - 304 Not Modified (0ms)
11208
+
11209
+
11210
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:52:57 +0300
11211
+ Processing by HomeController#index as HTML
11212
+ Rendered home/index.html.erb within layouts/application (57.9ms)
11213
+ Completed 200 OK in 140ms (Views: 139.7ms | ActiveRecord: 0.0ms)
11214
+
11215
+
11216
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:52:57 +0300
11217
+ Served asset /application.css - 304 Not Modified (7ms)
11218
+
11219
+
11220
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:52:57 +0300
11221
+ Served asset /application.js - 304 Not Modified (8ms)
11222
+
11223
+
11224
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:52:57 +0300
11225
+ Served asset /noodnik/application.js - 304 Not Modified (5ms)
11226
+
11227
+
11228
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:52:58 +0300
11229
+ Processing by Noodnik::NagsController#postpone as */*
11230
+ Parameters: {"period"=>"5"}
11231
+ Completed 500 Internal Server Error in 1ms
11232
+
11233
+ TypeError (exception class/object expected):
11234
+
11235
+
11236
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
11237
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
11238
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.9ms)
11239
+
11240
+
11241
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:53:20 +0300
11242
+ Processing by HomeController#index as HTML
11243
+ Rendered home/index.html.erb within layouts/application (59.7ms)
11244
+ Completed 200 OK in 145ms (Views: 143.9ms | ActiveRecord: 0.0ms)
11245
+
11246
+
11247
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:53:20 +0300
11248
+ Served asset /application.js - 304 Not Modified (13ms)
11249
+
11250
+
11251
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:53:20 +0300
11252
+ Served asset /noodnik/application.js - 304 Not Modified (5ms)
11253
+
11254
+
11255
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:53:20 +0300
11256
+ Served asset /application.css - 304 Not Modified (3ms)
11257
+
11258
+
11259
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:53:21 +0300
11260
+ Processing by Noodnik::NagsController#postpone as */*
11261
+ Parameters: {"period"=>"5"}
11262
+ Completed 500 Internal Server Error in 1ms
11263
+
11264
+ RuntimeError (false):
11265
+
11266
+
11267
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
11268
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
11269
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.5ms)
11270
+
11271
+
11272
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:53:45 +0300
11273
+ Processing by HomeController#index as HTML
11274
+ Rendered home/index.html.erb within layouts/application (74.6ms)
11275
+ Completed 200 OK in 177ms (Views: 176.6ms | ActiveRecord: 0.0ms)
11276
+
11277
+
11278
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:53:45 +0300
11279
+ Served asset /application.css - 304 Not Modified (23ms)
11280
+
11281
+
11282
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:53:45 +0300
11283
+ Served asset /application.js - 304 Not Modified (6ms)
11284
+
11285
+
11286
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:53:45 +0300
11287
+ Served asset /noodnik/application.js - 304 Not Modified (4ms)
11288
+
11289
+
11290
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:53:47 +0300
11291
+ Processing by Noodnik::NagsController#postpone as */*
11292
+ Parameters: {"period"=>"5"}
11293
+ Completed 500 Internal Server Error in 5ms
11294
+
11295
+ RuntimeError (#<ActionDispatch::Cookies::CookieJar:0x9bce324 @secret="c94c625d01390f6641f1984a4b3559a0f814fd4ffae0521ab8febab53e0164df5dca56d050112048e5cb0d69ded1ce672e4a1b8e2dce55c38f0db3b7df367dbf", @set_cookies={""=>{:value=>"2011-09-22 18:53:52 UTC", :path=>"/"}}, @delete_cookies={}, @host="localhost", @secure=false, @closed=false, @cookies={"2011-09-22 18:52:38 UTC"=>nil, "_dummy_session"=>"BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJWU1ZTZiYWVjYmNmZDg1NGZlOWU3ZWU0MThhYmUzZDk4BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMUM4OSswNzVqS2twaVc2ZFJWck1Kck5LcDdjakV4T1BlRDcwQmd3QVRwcEk9BjsARg==--5a31524c1862e06277a9d1ca52970c38b3941175", ""=>"2011-09-22 18:53:52 UTC"}, @signed=#<ActionDispatch::Cookies::SignedCookieJar:0x9b6a9a0 @parent_jar=#<ActionDispatch::Cookies::CookieJar:0x9bce324 ...>, @verifier=#<ActiveSupport::MessageVerifier:0x9b6a964 @secret="c94c625d01390f6641f1984a4b3559a0f814fd4ffae0521ab8febab53e0164df5dca56d050112048e5cb0d69ded1ce672e4a1b8e2dce55c38f0db3b7df367dbf", @digest="SHA1">>>):
11296
+
11297
+
11298
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (8.4ms)
11299
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.5ms)
11300
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
11301
+
11302
+
11303
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:54:53 +0300
11304
+ Processing by HomeController#index as HTML
11305
+ Rendered home/index.html.erb within layouts/application (58.2ms)
11306
+ Completed 200 OK in 143ms (Views: 142.7ms | ActiveRecord: 0.0ms)
11307
+
11308
+
11309
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:54:54 +0300
11310
+ Served asset /application.css - 304 Not Modified (3ms)
11311
+
11312
+
11313
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:54:54 +0300
11314
+ Served asset /application.js - 304 Not Modified (10ms)
11315
+
11316
+
11317
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:54:54 +0300
11318
+ Served asset /noodnik/application.js - 304 Not Modified (5ms)
11319
+
11320
+
11321
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:54:55 +0300
11322
+ Processing by Noodnik::NagsController#postpone as */*
11323
+ Parameters: {"period"=>"5"}
11324
+ Rendered text template (0.0ms)
11325
+ Completed 200 OK in 20ms (Views: 14.6ms | ActiveRecord: 0.0ms)
11326
+
11327
+
11328
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:54:56 +0300
11329
+ Processing by HomeController#index as HTML
11330
+ Rendered home/index.html.erb within layouts/application (6.2ms)
11331
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
11332
+
11333
+
11334
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:54:56 +0300
11335
+ Served asset /application.js - 304 Not Modified (0ms)
11336
+
11337
+
11338
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:54:56 +0300
11339
+ Served asset /application.css - 304 Not Modified (0ms)
11340
+
11341
+
11342
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:54:56 +0300
11343
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11344
+
11345
+
11346
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:54:56 +0300
11347
+ Processing by HomeController#index as HTML
11348
+ Rendered home/index.html.erb within layouts/application (42.5ms)
11349
+ Completed 200 OK in 49ms (Views: 48.8ms | ActiveRecord: 0.0ms)
11350
+
11351
+
11352
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:54:57 +0300
11353
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11354
+
11355
+
11356
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:54:57 +0300
11357
+ Served asset /application.js - 304 Not Modified (0ms)
11358
+
11359
+
11360
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:54:57 +0300
11361
+ Served asset /application.css - 304 Not Modified (2ms)
11362
+
11363
+
11364
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 21:54:59 +0300
11365
+ Processing by Noodnik::NagsController#postpone as */*
11366
+ Parameters: {"period"=>"5"}
11367
+ Rendered text template (0.0ms)
11368
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
11369
+
11370
+
11371
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:54:59 +0300
11372
+ Processing by HomeController#index as HTML
11373
+ Rendered home/index.html.erb within layouts/application (7.5ms)
11374
+ Completed 200 OK in 14ms (Views: 14.1ms | ActiveRecord: 0.0ms)
11375
+
11376
+
11377
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:54:59 +0300
11378
+ Served asset /application.css - 304 Not Modified (0ms)
11379
+
11380
+
11381
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:54:59 +0300
11382
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11383
+
11384
+
11385
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:54:59 +0300
11386
+ Served asset /application.js - 304 Not Modified (0ms)
11387
+
11388
+
11389
+ Started GET "/" for 127.0.0.1 at 2011-09-22 21:55:11 +0300
11390
+ Processing by HomeController#index as HTML
11391
+ Rendered home/index.html.erb within layouts/application (7.3ms)
11392
+ Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
11393
+
11394
+
11395
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:55:11 +0300
11396
+ Served asset /application.js - 304 Not Modified (0ms)
11397
+
11398
+
11399
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:55:11 +0300
11400
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11401
+
11402
+
11403
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:55:11 +0300
11404
+ Served asset /application.css - 304 Not Modified (0ms)
11405
+
11406
+
11407
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:55:16 +0300
11408
+ Processing by HomeController#index as HTML
11409
+ Parameters: {"topic"=>"blah"}
11410
+ Rendered home/index.html.erb within layouts/application (42.3ms)
11411
+ Completed 200 OK in 57ms (Views: 56.8ms | ActiveRecord: 0.0ms)
11412
+
11413
+
11414
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:55:16 +0300
11415
+ Served asset /application.css - 304 Not Modified (0ms)
11416
+
11417
+
11418
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:55:16 +0300
11419
+ Served asset /application.js - 304 Not Modified (0ms)
11420
+
11421
+
11422
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:55:16 +0300
11423
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11424
+
11425
+
11426
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 21:55:18 +0300
11427
+ Processing by Noodnik::NagsController#postpone as */*
11428
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11429
+ Rendered text template (0.0ms)
11430
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11431
+
11432
+
11433
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:55:18 +0300
11434
+ Processing by HomeController#index as HTML
11435
+ Parameters: {"topic"=>"blah"}
11436
+ Rendered home/index.html.erb within layouts/application (6.3ms)
11437
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
11438
+
11439
+
11440
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:55:18 +0300
11441
+ Served asset /application.css - 304 Not Modified (0ms)
11442
+
11443
+
11444
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:55:18 +0300
11445
+ Served asset /application.js - 304 Not Modified (0ms)
11446
+
11447
+
11448
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:55:18 +0300
11449
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11450
+
11451
+
11452
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:55:19 +0300
11453
+ Processing by HomeController#index as HTML
11454
+ Parameters: {"topic"=>"blah"}
11455
+ Rendered home/index.html.erb within layouts/application (6.2ms)
11456
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
11457
+
11458
+
11459
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:55:19 +0300
11460
+ Served asset /application.js - 304 Not Modified (0ms)
11461
+
11462
+
11463
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:55:19 +0300
11464
+ Served asset /application.css - 304 Not Modified (0ms)
11465
+
11466
+
11467
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:55:19 +0300
11468
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11469
+
11470
+
11471
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:55:28 +0300
11472
+ Processing by HomeController#index as HTML
11473
+ Parameters: {"topic"=>"blah"}
11474
+ Rendered home/index.html.erb within layouts/application (54.0ms)
11475
+ Completed 200 OK in 61ms (Views: 61.0ms | ActiveRecord: 0.0ms)
11476
+
11477
+
11478
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:55:28 +0300
11479
+ Served asset /application.css - 304 Not Modified (0ms)
11480
+
11481
+
11482
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:55:28 +0300
11483
+ Served asset /application.js - 304 Not Modified (0ms)
11484
+
11485
+
11486
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:55:28 +0300
11487
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11488
+
11489
+
11490
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 21:55:32 +0300
11491
+ Processing by Noodnik::NagsController#postpone as */*
11492
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11493
+ Rendered text template (0.0ms)
11494
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
11495
+
11496
+
11497
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:55:33 +0300
11498
+ Processing by HomeController#index as HTML
11499
+ Parameters: {"topic"=>"blah"}
11500
+ Rendered home/index.html.erb within layouts/application (6.3ms)
11501
+ Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
11502
+
11503
+
11504
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:55:33 +0300
11505
+ Served asset /application.css - 304 Not Modified (0ms)
11506
+
11507
+
11508
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:55:33 +0300
11509
+ Served asset /application.js - 304 Not Modified (0ms)
11510
+
11511
+
11512
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:55:33 +0300
11513
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11514
+
11515
+
11516
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:55:59 +0300
11517
+ Processing by HomeController#index as HTML
11518
+ Parameters: {"topic"=>"blah"}
11519
+ Rendered home/index.html.erb within layouts/application (62.5ms)
11520
+ Completed 200 OK in 125ms (Views: 124.9ms | ActiveRecord: 0.0ms)
11521
+
11522
+
11523
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:56:00 +0300
11524
+ Served asset /application.css - 304 Not Modified (7ms)
11525
+
11526
+
11527
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:56:00 +0300
11528
+ Served asset /application.js - 304 Not Modified (6ms)
11529
+
11530
+
11531
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:56:00 +0300
11532
+ Served asset /noodnik/application.js - 304 Not Modified (11ms)
11533
+
11534
+
11535
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 21:56:01 +0300
11536
+ Processing by Noodnik::NagsController#postpone as */*
11537
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11538
+ Completed 500 Internal Server Error in 5ms
11539
+
11540
+ RuntimeError (#<ActionDispatch::Cookies::CookieJar:0x8a34438 @secret="c94c625d01390f6641f1984a4b3559a0f814fd4ffae0521ab8febab53e0164df5dca56d050112048e5cb0d69ded1ce672e4a1b8e2dce55c38f0db3b7df367dbf", @set_cookies={"blah"=>{:value=>"2011-09-22 18:56:06 UTC", :path=>"/"}}, @delete_cookies={}, @host="localhost", @secure=false, @closed=false, @cookies={"2011-09-22 18:52:38 UTC"=>nil, "topic"=>"2011-09-22 18:55:04 UTC", "blah"=>"2011-09-22 18:56:06 UTC", "_dummy_session"=>"BAh7B0kiD3Nlc3Npb25faWQGOgZFRkkiJWU1ZTZiYWVjYmNmZDg1NGZlOWU3ZWU0MThhYmUzZDk4BjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMUM4OSswNzVqS2twaVc2ZFJWck1Kck5LcDdjakV4T1BlRDcwQmd3QVRwcEk9BjsARg==--5a31524c1862e06277a9d1ca52970c38b3941175"}, @signed=#<ActionDispatch::Cookies::SignedCookieJar:0x89fbb38 @parent_jar=#<ActionDispatch::Cookies::CookieJar:0x8a34438 ...>, @verifier=#<ActiveSupport::MessageVerifier:0x89fba84 @secret="c94c625d01390f6641f1984a4b3559a0f814fd4ffae0521ab8febab53e0164df5dca56d050112048e5cb0d69ded1ce672e4a1b8e2dce55c38f0db3b7df367dbf", @digest="SHA1">>>):
11541
+
11542
+
11543
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
11544
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
11545
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.5ms)
11546
+
11547
+
11548
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:57:11 +0300
11549
+ Processing by HomeController#index as HTML
11550
+ Parameters: {"topic"=>"blah"}
11551
+ Rendered home/index.html.erb within layouts/application (66.7ms)
11552
+ Completed 200 OK in 153ms (Views: 152.1ms | ActiveRecord: 0.0ms)
11553
+
11554
+
11555
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 21:57:12 +0300
11556
+ Served asset /application.css - 304 Not Modified (8ms)
11557
+
11558
+
11559
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 21:57:12 +0300
11560
+ Served asset /application.js - 304 Not Modified (6ms)
11561
+
11562
+
11563
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 21:57:12 +0300
11564
+ Served asset /noodnik/application.js - 304 Not Modified (5ms)
11565
+
11566
+
11567
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 21:57:13 +0300
11568
+ Processing by Noodnik::NagsController#postpone as */*
11569
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11570
+ Rendered text template (0.0ms)
11571
+ Completed 200 OK in 20ms (Views: 14.6ms | ActiveRecord: 0.0ms)
11572
+
11573
+
11574
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 21:59:24 +0300
11575
+ Processing by HomeController#index as HTML
11576
+ Parameters: {"topic"=>"blah"}
11577
+ Rendered home/index.html.erb within layouts/application (112.6ms)
11578
+ Completed 500 Internal Server Error in 197ms
11579
+
11580
+ ActionView::Template::Error (undefined local variable or method `logger' for #<CookieNag:0xb9aeba0 @next_nag="2011-09-22 18:57:18 UTC">):
11581
+ 1: <% topic = params[:topic] %>
11582
+ 2: <%= nag_user_to topic do %>
11583
+ 3: Don't forget to <%= link_to topic, 'http://www.github.com' %>
11584
+ 4: <p>(<strong><%= postpone_for 5.seconds %></strong>)</p> <br />
11585
+ 5: <% end %>
11586
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__623243301_95560260'
11587
+
11588
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
11589
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
11590
+ Rendered /home/omer/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
11591
+
11592
+
11593
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:00:36 +0300
11594
+ Processing by HomeController#index as HTML
11595
+ Parameters: {"topic"=>"blah"}
11596
+ 2011-09-22 18:57:18 UTC
11597
+ String
11598
+
11599
+ NilClass
11600
+ Rendered home/index.html.erb within layouts/application (75.3ms)
11601
+ Completed 200 OK in 166ms (Views: 165.4ms | ActiveRecord: 0.0ms)
11602
+
11603
+
11604
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:00:36 +0300
11605
+ Served asset /application.css - 304 Not Modified (3ms)
11606
+
11607
+
11608
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:00:36 +0300
11609
+ Served asset /application.js - 304 Not Modified (5ms)
11610
+
11611
+
11612
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:00:36 +0300
11613
+ Served asset /noodnik/application.js - 304 Not Modified (22ms)
11614
+
11615
+
11616
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 22:00:38 +0300
11617
+ Processing by Noodnik::NagsController#postpone as */*
11618
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11619
+ Rendered text template (0.0ms)
11620
+ Completed 200 OK in 22ms (Views: 16.7ms | ActiveRecord: 0.0ms)
11621
+
11622
+
11623
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:00:52 +0300
11624
+ Processing by HomeController#index as HTML
11625
+ Parameters: {"topic"=>"blah"}
11626
+ 2011-09-22 19:00:44 UTC
11627
+ String
11628
+
11629
+ NilClass
11630
+ Rendered home/index.html.erb within layouts/application (7.2ms)
11631
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
11632
+
11633
+
11634
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:00:52 +0300
11635
+ Served asset /application.css - 304 Not Modified (0ms)
11636
+
11637
+
11638
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:00:52 +0300
11639
+ Served asset /application.js - 304 Not Modified (0ms)
11640
+
11641
+
11642
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:00:52 +0300
11643
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11644
+
11645
+
11646
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 22:00:56 +0300
11647
+ Processing by Noodnik::NagsController#postpone as */*
11648
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11649
+ Rendered text template (0.0ms)
11650
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
11651
+
11652
+
11653
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:01:05 +0300
11654
+ Processing by HomeController#index as HTML
11655
+ Parameters: {"topic"=>"blah"}
11656
+ 2011-09-22 19:01:01 UTC
11657
+ String
11658
+
11659
+ NilClass
11660
+ Rendered home/index.html.erb within layouts/application (6.7ms)
11661
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
11662
+
11663
+
11664
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:01:05 +0300
11665
+ Served asset /application.js - 304 Not Modified (0ms)
11666
+
11667
+
11668
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:01:05 +0300
11669
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11670
+
11671
+
11672
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:01:05 +0300
11673
+ Served asset /application.css - 304 Not Modified (0ms)
11674
+
11675
+
11676
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 22:01:07 +0300
11677
+ Processing by Noodnik::NagsController#postpone as */*
11678
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11679
+ Rendered text template (0.0ms)
11680
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
11681
+
11682
+
11683
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:01:07 +0300
11684
+ Processing by HomeController#index as HTML
11685
+ Parameters: {"topic"=>"blah"}
11686
+ 2011-09-22 19:01:12 UTC
11687
+ String
11688
+
11689
+ NilClass
11690
+ Rendered home/index.html.erb within layouts/application (9.0ms)
11691
+ Completed 200 OK in 14ms (Views: 14.1ms | ActiveRecord: 0.0ms)
11692
+
11693
+
11694
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:01:07 +0300
11695
+ Served asset /application.css - 304 Not Modified (0ms)
11696
+
11697
+
11698
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:01:07 +0300
11699
+ Served asset /application.js - 304 Not Modified (0ms)
11700
+
11701
+
11702
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:01:07 +0300
11703
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11704
+
11705
+
11706
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:01:17 +0300
11707
+ Processing by HomeController#index as HTML
11708
+ Parameters: {"topic"=>"blah"}
11709
+ 2011-09-22 19:01:12 UTC
11710
+ String
11711
+
11712
+ NilClass
11713
+ Rendered home/index.html.erb within layouts/application (9.9ms)
11714
+ Completed 200 OK in 48ms (Views: 47.8ms | ActiveRecord: 0.0ms)
11715
+
11716
+
11717
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:01:17 +0300
11718
+ Served asset /application.css - 304 Not Modified (0ms)
11719
+
11720
+
11721
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:01:17 +0300
11722
+ Served asset /application.js - 304 Not Modified (0ms)
11723
+
11724
+
11725
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:01:17 +0300
11726
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11727
+
11728
+
11729
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 22:01:24 +0300
11730
+ Processing by Noodnik::NagsController#postpone as */*
11731
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11732
+ Rendered text template (0.0ms)
11733
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
11734
+
11735
+
11736
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:01:25 +0300
11737
+ Processing by HomeController#index as HTML
11738
+ Parameters: {"topic"=>"blah"}
11739
+ 2011-09-22 19:01:29 UTC
11740
+ String
11741
+
11742
+ NilClass
11743
+ Rendered home/index.html.erb within layouts/application (6.6ms)
11744
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
11745
+
11746
+
11747
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:01:25 +0300
11748
+ Served asset /application.css - 304 Not Modified (0ms)
11749
+
11750
+
11751
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:01:25 +0300
11752
+ Served asset /application.js - 304 Not Modified (0ms)
11753
+
11754
+
11755
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:01:25 +0300
11756
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11757
+
11758
+
11759
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:28 +0300
11760
+ Processing by HomeController#index as HTML
11761
+ Parameters: {"topic"=>"blah"}
11762
+ Rendered home/index.html.erb within layouts/application (17.8ms)
11763
+ Completed 200 OK in 28ms (Views: 22.9ms | ActiveRecord: 0.0ms)
11764
+
11765
+
11766
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:28 +0300
11767
+ Served asset /application.js - 304 Not Modified (0ms)
11768
+
11769
+
11770
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:28 +0300
11771
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11772
+
11773
+
11774
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:28 +0300
11775
+ Served asset /application.css - 304 Not Modified (0ms)
11776
+
11777
+
11778
+ Started GET "/noodnik/postpone?period=5&topic=blah" for 127.0.0.1 at 2011-09-22 22:14:29 +0300
11779
+ Processing by Noodnik::NagsController#postpone as */*
11780
+ Parameters: {"period"=>"5", "topic"=>"blah"}
11781
+ Rendered text template (0.0ms)
11782
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
11783
+
11784
+
11785
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:30 +0300
11786
+ Processing by HomeController#index as HTML
11787
+ Parameters: {"topic"=>"blah"}
11788
+ Rendered home/index.html.erb within layouts/application (13.5ms)
11789
+ Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
11790
+
11791
+
11792
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:30 +0300
11793
+ Served asset /application.js - 304 Not Modified (0ms)
11794
+
11795
+
11796
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:30 +0300
11797
+ Served asset /application.css - 304 Not Modified (0ms)
11798
+
11799
+
11800
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:30 +0300
11801
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11802
+
11803
+
11804
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11805
+ Processing by HomeController#index as HTML
11806
+ Parameters: {"topic"=>"blah"}
11807
+ Rendered home/index.html.erb within layouts/application (15.6ms)
11808
+ Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
11809
+
11810
+
11811
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11812
+ Served asset /application.css - 304 Not Modified (0ms)
11813
+
11814
+
11815
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11816
+ Served asset /application.js - 304 Not Modified (0ms)
11817
+
11818
+
11819
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11820
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11821
+
11822
+
11823
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11824
+ Processing by HomeController#index as HTML
11825
+ Parameters: {"topic"=>"blah"}
11826
+ Rendered home/index.html.erb within layouts/application (41.2ms)
11827
+ Completed 200 OK in 46ms (Views: 46.1ms | ActiveRecord: 0.0ms)
11828
+
11829
+
11830
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11831
+ Served asset /application.css - 304 Not Modified (0ms)
11832
+
11833
+
11834
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11835
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11836
+
11837
+
11838
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:31 +0300
11839
+ Served asset /application.js - 304 Not Modified (0ms)
11840
+
11841
+
11842
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11843
+ Processing by HomeController#index as HTML
11844
+ Parameters: {"topic"=>"blah"}
11845
+ Rendered home/index.html.erb within layouts/application (14.0ms)
11846
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
11847
+
11848
+
11849
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11850
+ Served asset /application.css - 304 Not Modified (0ms)
11851
+
11852
+
11853
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11854
+ Served asset /application.js - 304 Not Modified (0ms)
11855
+
11856
+
11857
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11858
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11859
+
11860
+
11861
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11862
+ Processing by HomeController#index as HTML
11863
+ Parameters: {"topic"=>"blah"}
11864
+ Rendered home/index.html.erb within layouts/application (13.4ms)
11865
+ Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms)
11866
+
11867
+
11868
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11869
+ Served asset /application.css - 304 Not Modified (0ms)
11870
+
11871
+
11872
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11873
+ Served asset /application.js - 304 Not Modified (0ms)
11874
+
11875
+
11876
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:32 +0300
11877
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11878
+
11879
+
11880
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:33 +0300
11881
+ Processing by HomeController#index as HTML
11882
+ Parameters: {"topic"=>"blah"}
11883
+ Rendered home/index.html.erb within layouts/application (42.4ms)
11884
+ Completed 200 OK in 48ms (Views: 47.2ms | ActiveRecord: 0.0ms)
11885
+
11886
+
11887
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:33 +0300
11888
+ Served asset /application.js - 304 Not Modified (0ms)
11889
+
11890
+
11891
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:33 +0300
11892
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11893
+
11894
+
11895
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:33 +0300
11896
+ Served asset /application.css - 304 Not Modified (0ms)
11897
+
11898
+
11899
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11900
+ Processing by HomeController#index as HTML
11901
+ Parameters: {"topic"=>"blah"}
11902
+ Rendered home/index.html.erb within layouts/application (21.9ms)
11903
+ Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
11904
+
11905
+
11906
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11907
+ Served asset /application.css - 304 Not Modified (0ms)
11908
+
11909
+
11910
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11911
+ Served asset /application.js - 304 Not Modified (0ms)
11912
+
11913
+
11914
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11915
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11916
+
11917
+
11918
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11919
+ Processing by HomeController#index as HTML
11920
+ Parameters: {"topic"=>"blah"}
11921
+ Rendered home/index.html.erb within layouts/application (15.3ms)
11922
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
11923
+
11924
+
11925
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11926
+ Served asset /application.css - 304 Not Modified (0ms)
11927
+
11928
+
11929
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11930
+ Served asset /application.js - 304 Not Modified (0ms)
11931
+
11932
+
11933
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:34 +0300
11934
+ Served asset /noodnik/application.js - 304 Not Modified (2ms)
11935
+
11936
+
11937
+ Started GET "/?topic=blah" for 127.0.0.1 at 2011-09-22 22:14:35 +0300
11938
+ Processing by HomeController#index as HTML
11939
+ Parameters: {"topic"=>"blah"}
11940
+ Rendered home/index.html.erb within layouts/application (15.6ms)
11941
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
11942
+
11943
+
11944
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:14:35 +0300
11945
+ Served asset /application.js - 304 Not Modified (0ms)
11946
+
11947
+
11948
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:14:35 +0300
11949
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11950
+
11951
+
11952
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:14:35 +0300
11953
+ Served asset /application.css - 304 Not Modified (0ms)
11954
+
11955
+
11956
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:15:19 +0300
11957
+ Processing by HomeController#index as HTML
11958
+ Rendered home/index.html.erb within layouts/application (12.4ms)
11959
+ Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms)
11960
+
11961
+
11962
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:15:19 +0300
11963
+ Served asset /application.css - 304 Not Modified (0ms)
11964
+
11965
+
11966
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:15:19 +0300
11967
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11968
+
11969
+
11970
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:15:19 +0300
11971
+ Served asset /application.js - 304 Not Modified (0ms)
11972
+
11973
+
11974
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:15:20 +0300
11975
+ Processing by HomeController#index as HTML
11976
+ Rendered home/index.html.erb within layouts/application (12.1ms)
11977
+ Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms)
11978
+
11979
+
11980
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:15:20 +0300
11981
+ Served asset /application.js - 304 Not Modified (0ms)
11982
+
11983
+
11984
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:15:20 +0300
11985
+ Served asset /application.css - 304 Not Modified (0ms)
11986
+
11987
+
11988
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:15:20 +0300
11989
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
11990
+
11991
+
11992
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 22:15:21 +0300
11993
+ Processing by Noodnik::NagsController#postpone as */*
11994
+ Parameters: {"period"=>"5"}
11995
+ Rendered text template (0.0ms)
11996
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
11997
+
11998
+
11999
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:15:29 +0300
12000
+ Processing by HomeController#index as HTML
12001
+ Rendered home/index.html.erb within layouts/application (12.6ms)
12002
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
12003
+
12004
+
12005
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:15:29 +0300
12006
+ Served asset /application.css - 304 Not Modified (0ms)
12007
+
12008
+
12009
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:15:29 +0300
12010
+ Served asset /application.js - 304 Not Modified (0ms)
12011
+
12012
+
12013
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:15:29 +0300
12014
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
12015
+
12016
+
12017
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:22:07 +0300
12018
+ Processing by HomeController#index as HTML
12019
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12020
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
12021
+ Rendered home/index.html.erb within layouts/application (220.3ms)
12022
+ Completed 200 OK in 314ms (Views: 312.8ms | ActiveRecord: 1.3ms)
12023
+
12024
+
12025
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:22:08 +0300
12026
+ Served asset /application.css - 304 Not Modified (6ms)
12027
+
12028
+
12029
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:22:08 +0300
12030
+ Served asset /noodnik/application.js - 304 Not Modified (6ms)
12031
+
12032
+
12033
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:22:08 +0300
12034
+ Served asset /application.js - 304 Not Modified (5ms)
12035
+
12036
+
12037
+ Started GET "/noodnik/postpone?period=5" for 127.0.0.1 at 2011-09-22 22:22:09 +0300
12038
+ Processing by Noodnik::NagsController#postpone as */*
12039
+ Parameters: {"period"=>"5"}
12040
+  (0.1ms) SELECT 1 FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12041
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12042
+  (0.4ms) UPDATE "noodnik_nags" SET "next_nag" = '2011-09-22 19:22:14.806823', "updated_at" = '2011-09-22 19:22:09.882845' WHERE "noodnik_nags"."id" = 9
12043
+ Rendered text template (0.0ms)
12044
+ Completed 200 OK in 213ms (Views: 24.8ms | ActiveRecord: 1.1ms)
12045
+
12046
+
12047
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:22:10 +0300
12048
+ Processing by HomeController#index as HTML
12049
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12050
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
12051
+ Rendered home/index.html.erb within layouts/application (21.8ms)
12052
+ Completed 200 OK in 28ms (Views: 27.0ms | ActiveRecord: 0.9ms)
12053
+
12054
+
12055
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:22:10 +0300
12056
+ Served asset /application.css - 304 Not Modified (0ms)
12057
+
12058
+
12059
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:22:10 +0300
12060
+ Served asset /application.js - 304 Not Modified (0ms)
12061
+
12062
+
12063
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:22:10 +0300
12064
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
12065
+
12066
+
12067
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:22:10 +0300
12068
+ Processing by HomeController#index as HTML
12069
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12070
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
12071
+ Rendered home/index.html.erb within layouts/application (50.0ms)
12072
+ Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 1.3ms)
12073
+
12074
+
12075
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:22:11 +0300
12076
+ Served asset /application.js - 304 Not Modified (0ms)
12077
+
12078
+
12079
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:22:11 +0300
12080
+ Served asset /application.css - 304 Not Modified (0ms)
12081
+
12082
+
12083
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:22:11 +0300
12084
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)
12085
+
12086
+
12087
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:23:30 +0300
12088
+ Processing by HomeController#index as HTML
12089
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12090
+ Noodnik::Nag Load (0.4ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
12091
+ Rendered home/index.html.erb within layouts/application (259.5ms)
12092
+ Completed 200 OK in 357ms (Views: 355.1ms | ActiveRecord: 1.5ms)
12093
+
12094
+
12095
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:23:30 +0300
12096
+ Served asset /application.css - 304 Not Modified (12ms)
12097
+
12098
+
12099
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:23:30 +0300
12100
+ Served asset /application.js - 304 Not Modified (5ms)
12101
+
12102
+
12103
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:23:30 +0300
12104
+ Served asset /noodnik/application.js - 304 Not Modified (11ms)
12105
+
12106
+
12107
+ Started GET "/" for 127.0.0.1 at 2011-09-22 22:33:35 +0300
12108
+ Processing by HomeController#index as HTML
12109
+ Noodnik::Nag Load (0.1ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" IS NULL LIMIT 1
12110
+ Noodnik::Nag Load (0.2ms) SELECT "noodnik_nags".* FROM "noodnik_nags" WHERE "noodnik_nags"."user_id" = 1 AND "noodnik_nags"."topic" = 'update_profile' LIMIT 1
12111
+ Rendered home/index.html.erb within layouts/application (36.4ms)
12112
+ Completed 200 OK in 43ms (Views: 41.7ms | ActiveRecord: 1.1ms)
12113
+
12114
+
12115
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-22 22:33:35 +0300
12116
+ Served asset /application.css - 304 Not Modified (0ms)
12117
+
12118
+
12119
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-22 22:33:35 +0300
12120
+ Served asset /application.js - 304 Not Modified (0ms)
12121
+
12122
+
12123
+ Started GET "/assets/noodnik/application.js" for 127.0.0.1 at 2011-09-22 22:33:35 +0300
12124
+ Served asset /noodnik/application.js - 304 Not Modified (0ms)