help_popups 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  <script src="http://js.nicedit.com/nicEdit-latest.js" type="text/javascript"></script>
2
2
  <script type="text/javascript">bkLib.onDomLoaded(function () {nicEditors.allTextAreas()});</script>
3
3
 
4
- <%= f.label :code, "Code:" %> <%= f.text_field :code, :size => 10 %><br/>
5
- <%= f.label :title, "Title:" %> <%= f.text_field :title, :size => 30 %><br/>
6
- <%= f.text_area :body, :rows => 7, :cols => 80 %><br/>
4
+ <%= f.label :code, "Code:" %> <%= f.text_field :code, :size => 20 %><br/>
5
+ <%= f.label :title, "Title:" %> <%= f.text_field :title, :size => 40 %><br/>
6
+ <%= f.text_area :body, :rows => 7, :cols => 100 %><br/>
@@ -1,18 +1,28 @@
1
- <script>
2
- function deleteTopic(topic_id){
3
- if (confirm("Are you sure you want to delete this help topic?")){
4
- formObj = document.getElementById("deleteForm");
5
- formObj.submit();
1
+ <% if !(session[:help_popups_clearance].nil?) || (Rails.configuration.help_popups_simple_auth == false) %>
2
+ <script>
3
+ function deleteTopic(topic_id){
4
+ if (confirm("Are you sure you want to delete this help topic?")){
5
+ formObj = document.getElementById("deleteForm");
6
+ formObj.submit();
7
+ }
6
8
  }
7
- }
8
- </script>
9
+ </script>
9
10
 
10
- <%= form_for @topic do |f| %>
11
- <h2>Editing Topic</h2>
12
- <%= render 'shared/error_messages', :object => f.object %><br/>
13
- <%= render 'fields', :f => f %>
14
- <br/>
15
- <%= f.submit "Edit Topic" %> <input type="button" class="redButton" value="Delete" onclick="deleteTopic(<%= @topic.id %>)"> &nbsp; &nbsp; <input type="button" value="Cancel" onclick="document.location='<%= topics_path %>'">
16
- <% end %>
11
+ <%= form_for @topic do |f| %>
12
+ <h2>Editing Topic</h2>
13
+ <%= render 'shared/error_messages', :object => f.object %><br/>
14
+ <%= render 'fields', :f => f %>
15
+ <br/>
16
+ <%= f.submit "Edit Topic" %> <input type="button" class="redButton" value="Delete" onclick="deleteTopic(<%= @topic.id %>)"> &nbsp; &nbsp; <input type="button" value="Cancel" onclick="document.location='<%= topics_path %>'">
17
+ <% end %>
17
18
 
18
- <%= form_tag(topic_path, :method => :delete, :id => "deleteForm") %>
19
+ <%= form_tag(topic_path, :method => :delete, :id => "deleteForm") %>
20
+ <% else %>
21
+ You must login before you can access the Help Popups administration.<br/>
22
+ Please enter the password you defined for <b>config.help_popups_password</b>: <br/>
23
+ <br/>
24
+ <% flash.each do |key, value| %>
25
+ <%= content_tag(:div, value, :class => "flash #{key}") %>
26
+ <% end %>
27
+ <form action='/help_popups/login' method='post'><input type='text' size='20' id='help_popups_password' name='help_popups_password'> &nbsp; &nbsp; <input type='submit' value='Submit'></form>
28
+ <% end %>
@@ -1,4 +1,4 @@
1
- <% if !(session[:help_popups_clearance].nil?) %>
1
+ <% if !(session[:help_popups_clearance].nil?) || (Rails.configuration.help_popups_simple_auth == false) %>
2
2
  <% if @topics.count == 0 %>
3
3
  <b>No Help Topics Defined!<b><br/>
4
4
  Please click the link below to add one...<br/>
@@ -1,7 +1,17 @@
1
- <%= form_for @topic do |f| %>
2
- <h2>Adding New Topic</h2>
3
- <%= render 'shared/error_messages', :object => f.object %><br/>
4
- <%= render 'fields', :f => f %>
1
+ <% if !(session[:help_popups_clearance].nil?) || (Rails.configuration.help_popups_simple_auth == false) %>
2
+ <%= form_for @topic do |f| %>
3
+ <h2>Adding New Topic</h2>
4
+ <%= render 'shared/error_messages', :object => f.object %><br/>
5
+ <%= render 'fields', :f => f %>
6
+ <br/>
7
+ <%= f.submit "Add Topic" %> &nbsp; <input type="button" value="Cancel" onclick="document.location='<%= topics_path %>'">
8
+ <% end %>
9
+ <% else %>
10
+ You must login before you can access the Help Popups administration.<br/>
11
+ Please enter the password you defined for <b>config.help_popups_password</b>: <br/>
5
12
  <br/>
6
- <%= f.submit "Add Topic" %> &nbsp; <input type="button" value="Cancel" onclick="document.location='<%= topics_path %>'">
13
+ <% flash.each do |key, value| %>
14
+ <%= content_tag(:div, value, :class => "flash #{key}") %>
15
+ <% end %>
16
+ <form action='/help_popups/login' method='post'><input type='text' size='20' id='help_popups_password' name='help_popups_password'> &nbsp; &nbsp; <input type='submit' value='Submit'></form>
7
17
  <% end %>
data/config/routes.rb CHANGED
@@ -2,4 +2,5 @@ HelpPopups::Engine.routes.draw do
2
2
  resources :topics, :only => [:new, :create, :edit, :update, :destroy, :index]
3
3
 
4
4
  match '/login', :to => 'topics#login'
5
+ match '/', :to => 'topics#index'
5
6
  end
@@ -55,6 +55,7 @@ module Dummy
55
55
  # Version of your assets, change this if you want to expire all your assets
56
56
  config.assets.version = '1.0'
57
57
 
58
+ config.help_popups_simple_auth = true
58
59
  config.help_popups_password = 'admin'
59
60
  config.help_popups_return_path = '/test_popup'
60
61
  end
@@ -3658,3 +3658,1006 @@ Served asset /pages.css - 200 OK (0ms)
3658
3658
 
3659
3659
  Started GET "/assets/help_popup.gif" for 127.0.0.1 at Sat Jul 28 12:38:24 -0600 2012
3660
3660
  Served asset /help_popup.gif - 200 OK (0ms)
3661
+
3662
+
3663
+ Started GET "/" for 127.0.0.1 at Thu Aug 02 00:09:43 -0600 2012
3664
+ Connecting to database specified by database.yml
3665
+
3666
+ ActionController::RoutingError (No route matches [GET] "/"):
3667
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3668
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3669
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
3670
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
3671
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3672
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3673
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3674
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3675
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
3676
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
3677
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
3678
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
3679
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3680
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
3681
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3682
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
3683
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
3684
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
3685
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
3686
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
3687
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
3688
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
3689
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
3690
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
3691
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
3692
+ rack (1.4.1) lib/rack/handler/webrick.rb:13:in `run'
3693
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
3694
+ railties (3.2.6) lib/rails/commands/server.rb:70:in `start'
3695
+ railties (3.2.6) lib/rails/commands.rb:55
3696
+ railties (3.2.6) lib/rails/commands.rb:50:in `tap'
3697
+ railties (3.2.6) lib/rails/commands.rb:50
3698
+ script/rails:6:in `require'
3699
+ script/rails:6
3700
+
3701
+
3702
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
3703
+
3704
+
3705
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:09:56 -0600 2012
3706
+ Processing by HelpPopups::TopicsController#new as HTML
3707
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.4ms)
3708
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.8ms)
3709
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (6.7ms)
3710
+ Compiled help_popups/application.css (0ms) (pid 500)
3711
+ Compiled help_popups/topics.js (0ms) (pid 500)
3712
+ Compiled help_popups/application.js (16ms) (pid 500)
3713
+ Completed 200 OK in 127ms (Views: 110.9ms | ActiveRecord: 0.9ms)
3714
+
3715
+
3716
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:09:56 -0600 2012
3717
+ Served asset /help_popups/application.css - 200 OK (3ms)
3718
+
3719
+
3720
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:09:56 -0600 2012
3721
+ Served asset /jquery.js - 200 OK (2ms)
3722
+
3723
+
3724
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:09:56 -0600 2012
3725
+ Served asset /jquery_ujs.js - 200 OK (2ms)
3726
+
3727
+
3728
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:09:56 -0600 2012
3729
+ Served asset /help_popups/application.js - 200 OK (6ms)
3730
+
3731
+
3732
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:09:56 -0600 2012
3733
+ Served asset /help_popups/topics.js - 200 OK (2ms)
3734
+
3735
+
3736
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:14:02 -0600 2012
3737
+ Processing by HelpPopups::TopicsController#new as HTML
3738
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (0.6ms)
3739
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
3740
+
3741
+
3742
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:02 -0600 2012
3743
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3744
+
3745
+
3746
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:02 -0600 2012
3747
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3748
+
3749
+
3750
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:02 -0600 2012
3751
+ Served asset /jquery.js - 304 Not Modified (0ms)
3752
+
3753
+
3754
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:03 -0600 2012
3755
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3756
+
3757
+
3758
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:03 -0600 2012
3759
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3760
+
3761
+
3762
+ Started POST "/help_popups/login" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3763
+ Processing by HelpPopups::TopicsController#login as HTML
3764
+ Parameters: {"help_popups_password"=>"[FILTERED]"}
3765
+ Redirected to http://localhost:3000/help_popups/topics
3766
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
3767
+
3768
+
3769
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3770
+ Processing by HelpPopups::TopicsController#index as HTML
3771
+  (0.4ms) SELECT COUNT(*) FROM "help_popups_topics" 
3772
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
3773
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (3.2ms)
3774
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.5ms)
3775
+
3776
+
3777
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3778
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3779
+
3780
+
3781
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3782
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3783
+
3784
+
3785
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3786
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3787
+
3788
+
3789
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3790
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3791
+
3792
+
3793
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:10 -0600 2012
3794
+ Served asset /jquery.js - 304 Not Modified (0ms)
3795
+
3796
+
3797
+ Started GET "/help_popups/topics/1/edit" for 127.0.0.1 at Thu Aug 02 00:14:12 -0600 2012
3798
+ Processing by HelpPopups::TopicsController#edit as HTML
3799
+ Parameters: {"id"=>"1"}
3800
+ HelpPopups::Topic Load (0.2ms) SELECT "help_popups_topics".* FROM "help_popups_topics" WHERE "help_popups_topics"."id" = ? LIMIT 1 [["id", "1"]]
3801
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.1ms)
3802
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.5ms)
3803
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/edit.html.erb within layouts/help_popups/application (4.0ms)
3804
+ Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms)
3805
+
3806
+
3807
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:12 -0600 2012
3808
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3809
+
3810
+
3811
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:12 -0600 2012
3812
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3813
+
3814
+
3815
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:12 -0600 2012
3816
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3817
+
3818
+
3819
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:12 -0600 2012
3820
+ Served asset /jquery.js - 304 Not Modified (0ms)
3821
+
3822
+
3823
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:12 -0600 2012
3824
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3825
+
3826
+
3827
+ Started GET "/test_popup" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3828
+ Processing by PagesController#test_popup as HTML
3829
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" WHERE "help_popups_topics"."code" = 'BACON' LIMIT 1
3830
+ Rendered pages/test_popup.html.erb within layouts/application (4.6ms)
3831
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.1ms)
3832
+
3833
+
3834
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3835
+ Served asset /application.js - 200 OK (5ms)
3836
+
3837
+
3838
+ Started GET "/assets/pages.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3839
+ Served asset /pages.js - 200 OK (1ms)
3840
+
3841
+
3842
+ Started GET "/assets/pages.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3843
+ Served asset /pages.css - 200 OK (1ms)
3844
+
3845
+
3846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3847
+ Served asset /jquery.js - 304 Not Modified (0ms)
3848
+
3849
+
3850
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3851
+ Served asset /application.css - 200 OK (2ms)
3852
+
3853
+
3854
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3855
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3856
+
3857
+
3858
+ Started GET "/assets/help_popup.gif" for 127.0.0.1 at Thu Aug 02 00:14:13 -0600 2012
3859
+ Served asset /help_popup.gif - 200 OK (3ms)
3860
+
3861
+
3862
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3863
+ Processing by HelpPopups::TopicsController#index as HTML
3864
+  (0.1ms) SELECT COUNT(*) FROM "help_popups_topics" 
3865
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
3866
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (2.0ms)
3867
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.2ms)
3868
+
3869
+
3870
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3871
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3872
+
3873
+
3874
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3875
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3876
+
3877
+
3878
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3879
+ Served asset /jquery.js - 304 Not Modified (0ms)
3880
+
3881
+
3882
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3883
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3884
+
3885
+
3886
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3887
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3888
+
3889
+
3890
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:14:17 -0600 2012
3891
+ Processing by HelpPopups::TopicsController#new as HTML
3892
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.1ms)
3893
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.5ms)
3894
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (3.0ms)
3895
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
3896
+
3897
+
3898
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:18 -0600 2012
3899
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3900
+
3901
+
3902
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:18 -0600 2012
3903
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3904
+
3905
+
3906
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:18 -0600 2012
3907
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3908
+
3909
+
3910
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:18 -0600 2012
3911
+ Served asset /jquery.js - 304 Not Modified (0ms)
3912
+
3913
+
3914
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:18 -0600 2012
3915
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3916
+
3917
+
3918
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:14:45 -0600 2012
3919
+ Processing by HelpPopups::TopicsController#new as HTML
3920
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.1ms)
3921
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (1.0ms)
3922
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (4.8ms)
3923
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
3924
+
3925
+
3926
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:14:45 -0600 2012
3927
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3928
+
3929
+
3930
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:45 -0600 2012
3931
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3932
+
3933
+
3934
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:45 -0600 2012
3935
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3936
+
3937
+
3938
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:45 -0600 2012
3939
+ Served asset /jquery.js - 304 Not Modified (0ms)
3940
+
3941
+
3942
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:14:45 -0600 2012
3943
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3944
+
3945
+
3946
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:15:27 -0600 2012
3947
+ Processing by HelpPopups::TopicsController#index as HTML
3948
+  (0.1ms) SELECT COUNT(*) FROM "help_popups_topics" 
3949
+ HelpPopups::Topic Load (0.2ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
3950
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (2.0ms)
3951
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.3ms)
3952
+
3953
+
3954
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:15:27 -0600 2012
3955
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3956
+
3957
+
3958
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:27 -0600 2012
3959
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3960
+
3961
+
3962
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:27 -0600 2012
3963
+ Served asset /jquery.js - 304 Not Modified (0ms)
3964
+
3965
+
3966
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:27 -0600 2012
3967
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3968
+
3969
+
3970
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:27 -0600 2012
3971
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
3972
+
3973
+
3974
+ Started GET "/help_popups/topics/1/edit" for 127.0.0.1 at Thu Aug 02 00:15:28 -0600 2012
3975
+ Processing by HelpPopups::TopicsController#edit as HTML
3976
+ Parameters: {"id"=>"1"}
3977
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" WHERE "help_popups_topics"."id" = ? LIMIT 1 [["id", "1"]]
3978
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.1ms)
3979
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.5ms)
3980
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/edit.html.erb within layouts/help_popups/application (3.9ms)
3981
+ Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.1ms)
3982
+
3983
+
3984
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:28 -0600 2012
3985
+ Served asset /jquery.js - 304 Not Modified (0ms)
3986
+
3987
+
3988
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:15:28 -0600 2012
3989
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
3990
+
3991
+
3992
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:28 -0600 2012
3993
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
3994
+
3995
+
3996
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:28 -0600 2012
3997
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3998
+
3999
+
4000
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:28 -0600 2012
4001
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
4002
+
4003
+
4004
+ Started GET "/help_popups/topics/1/edit" for 127.0.0.1 at Thu Aug 02 00:15:34 -0600 2012
4005
+ Processing by HelpPopups::TopicsController#edit as HTML
4006
+ Parameters: {"id"=>"1"}
4007
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" WHERE "help_popups_topics"."id" = ? LIMIT 1 [["id", "1"]]
4008
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/edit.html.erb within layouts/help_popups/application (0.1ms)
4009
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
4010
+
4011
+
4012
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:34 -0600 2012
4013
+ Served asset /jquery_ujs.js - 200 OK (0ms)
4014
+
4015
+
4016
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:34 -0600 2012
4017
+ Served asset /help_popups/topics.js - 200 OK (0ms)
4018
+
4019
+
4020
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:34 -0600 2012
4021
+ Served asset /jquery.js - 200 OK (0ms)
4022
+
4023
+
4024
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:15:34 -0600 2012
4025
+ Served asset /help_popups/application.js - 200 OK (0ms)
4026
+
4027
+
4028
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:15:34 -0600 2012
4029
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4030
+
4031
+
4032
+ Started GET "/help_popups/topics/" for 127.0.0.1 at Thu Aug 02 00:15:42 -0600 2012
4033
+ Processing by HelpPopups::TopicsController#index as HTML
4034
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (0.1ms)
4035
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
4036
+
4037
+
4038
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:15:42 -0600 2012
4039
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4040
+
4041
+
4042
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:15:45 -0600 2012
4043
+ Processing by HelpPopups::TopicsController#new as HTML
4044
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (0.6ms)
4045
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
4046
+
4047
+
4048
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:15:45 -0600 2012
4049
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4050
+
4051
+
4052
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:18:38 -0600 2012
4053
+ Processing by HelpPopups::TopicsController#new as HTML
4054
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (4.5ms)
4055
+ Completed 500 Internal Server Error in 51ms
4056
+
4057
+ ActionView::Template::Error (undefined method `help_popups_simple_auth' for #<Rails::Application::Configuration:0x108ded290>):
4058
+ 1: <% if !(session[:help_popups_clearance].nil?) || (Rails.configuration.help_popups_simple_auth == false) %>
4059
+ 2: <%= form_for @topic do |f| %>
4060
+ 3: <h2>Adding New Topic</h2>
4061
+ 4: <%= render 'shared/error_messages', :object => f.object %><br/>
4062
+ railties (3.2.6) lib/rails/railtie/configuration.rb:85:in `method_missing'
4063
+ /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb:1:in `___sers_dereksweet__ocuments_work_my_ems_help_popups_app_views_help_popups_topics_new_html_erb___46553397_2229163720'
4064
+ actionpack (3.2.6) lib/action_view/template.rb:145:in `send'
4065
+ actionpack (3.2.6) lib/action_view/template.rb:145:in `render'
4066
+ activesupport (3.2.6) lib/active_support/notifications.rb:125:in `instrument'
4067
+ actionpack (3.2.6) lib/action_view/template.rb:143:in `render'
4068
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
4069
+ actionpack (3.2.6) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
4070
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
4071
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4072
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
4073
+ actionpack (3.2.6) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
4074
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
4075
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
4076
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
4077
+ actionpack (3.2.6) lib/action_view/renderer/template_renderer.rb:18:in `render'
4078
+ actionpack (3.2.6) lib/action_view/renderer/renderer.rb:36:in `render_template'
4079
+ actionpack (3.2.6) lib/action_view/renderer/renderer.rb:17:in `render'
4080
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:110:in `_render_template'
4081
+ actionpack (3.2.6) lib/action_controller/metal/streaming.rb:225:in `_render_template'
4082
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:103:in `render_to_body'
4083
+ actionpack (3.2.6) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
4084
+ actionpack (3.2.6) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
4085
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:88:in `render'
4086
+ actionpack (3.2.6) lib/action_controller/metal/rendering.rb:16:in `render'
4087
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:40:in `render'
4088
+ activesupport (3.2.6) lib/active_support/core_ext/benchmark.rb:5:in `ms'
4089
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/benchmark.rb:308:in `realtime'
4090
+ activesupport (3.2.6) lib/active_support/core_ext/benchmark.rb:5:in `ms'
4091
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:40:in `render'
4092
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
4093
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
4094
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:39:in `render'
4095
+ actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
4096
+ actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
4097
+ actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
4098
+ actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
4099
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `process_action'
4100
+ activesupport (3.2.6) lib/active_support/callbacks.rb:403:in `_run__659260241__process_action__1656543531__callbacks'
4101
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `send'
4102
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
4103
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4104
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `send'
4105
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
4106
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
4107
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
4108
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4109
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
4110
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4111
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
4112
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4113
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
4114
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4115
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
4116
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
4117
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
4118
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4119
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `action'
4120
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
4121
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4122
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
4123
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
4124
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
4125
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4126
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
4127
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
4128
+ railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `send'
4129
+ railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
4130
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
4131
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
4132
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4133
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
4134
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4135
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
4136
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
4137
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
4138
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4139
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
4140
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
4141
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
4142
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
4143
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
4144
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
4145
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
4146
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__621138282__call__4__callbacks'
4147
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `send'
4148
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
4149
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4150
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `send'
4151
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
4152
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4153
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4154
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4155
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4156
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4157
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
4158
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
4159
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4160
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
4161
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
4162
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4163
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
4164
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
4165
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
4166
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
4167
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
4168
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
4169
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
4170
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4171
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4172
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4173
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4174
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4175
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4176
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4177
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4178
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4179
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4180
+ rack (1.4.1) lib/rack/handler/webrick.rb:13:in `run'
4181
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
4182
+ railties (3.2.6) lib/rails/commands/server.rb:70:in `start'
4183
+ railties (3.2.6) lib/rails/commands.rb:55
4184
+ railties (3.2.6) lib/rails/commands.rb:50:in `tap'
4185
+ railties (3.2.6) lib/rails/commands.rb:50
4186
+ script/rails:6:in `require'
4187
+ script/rails:6
4188
+
4189
+
4190
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
4191
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
4192
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
4193
+
4194
+
4195
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:18:50 -0600 2012
4196
+ Connecting to database specified by database.yml
4197
+ Processing by HelpPopups::TopicsController#new as HTML
4198
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.3ms)
4199
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.7ms)
4200
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (5.7ms)
4201
+ Completed 200 OK in 62ms (Views: 50.3ms | ActiveRecord: 0.6ms)
4202
+
4203
+
4204
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:18:50 -0600 2012
4205
+ Served asset /help_popups/application.css - 304 Not Modified (2ms)
4206
+
4207
+
4208
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:18:50 -0600 2012
4209
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
4210
+
4211
+
4212
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:18:50 -0600 2012
4213
+ Served asset /jquery.js - 304 Not Modified (2ms)
4214
+
4215
+
4216
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:18:50 -0600 2012
4217
+ Served asset /help_popups/topics.js - 304 Not Modified (2ms)
4218
+
4219
+
4220
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:18:50 -0600 2012
4221
+ Served asset /help_popups/application.js - 304 Not Modified (6ms)
4222
+
4223
+
4224
+ Started GET "/test_popup" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4225
+ Connecting to database specified by database.yml
4226
+ Processing by PagesController#test_popup as HTML
4227
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" WHERE "help_popups_topics"."code" = 'BACON' LIMIT 1
4228
+ Rendered pages/test_popup.html.erb within layouts/application (15.5ms)
4229
+ Completed 200 OK in 62ms (Views: 61.3ms | ActiveRecord: 0.8ms)
4230
+
4231
+
4232
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4233
+ Served asset /jquery.js - 304 Not Modified (5ms)
4234
+
4235
+
4236
+ Started GET "/assets/pages.css?body=1" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4237
+ Served asset /pages.css - 200 OK (1ms)
4238
+
4239
+
4240
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4241
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
4242
+
4243
+
4244
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4245
+ Served asset /application.css - 304 Not Modified (3ms)
4246
+
4247
+
4248
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4249
+ Served asset /application.js - 304 Not Modified (5ms)
4250
+
4251
+
4252
+ Started GET "/assets/pages.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4253
+ Served asset /pages.js - 304 Not Modified (1ms)
4254
+
4255
+
4256
+ Started GET "/assets/help_popup.gif" for 127.0.0.1 at Thu Aug 02 00:19:12 -0600 2012
4257
+ Served asset /help_popup.gif - 304 Not Modified (1ms)
4258
+
4259
+
4260
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:19:16 -0600 2012
4261
+ Processing by HelpPopups::TopicsController#index as HTML
4262
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (0.6ms)
4263
+ Completed 200 OK in 47ms (Views: 46.9ms | ActiveRecord: 0.0ms)
4264
+
4265
+
4266
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:19:16 -0600 2012
4267
+ Served asset /help_popups/application.css - 304 Not Modified (2ms)
4268
+
4269
+
4270
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:16 -0600 2012
4271
+ Served asset /help_popups/application.js - 304 Not Modified (6ms)
4272
+
4273
+
4274
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:16 -0600 2012
4275
+ Served asset /help_popups/topics.js - 304 Not Modified (2ms)
4276
+
4277
+
4278
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:16 -0600 2012
4279
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4280
+
4281
+
4282
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:16 -0600 2012
4283
+ Served asset /jquery.js - 304 Not Modified (0ms)
4284
+
4285
+
4286
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:19:31 -0600 2012
4287
+ Connecting to database specified by database.yml
4288
+ Processing by HelpPopups::TopicsController#index as HTML
4289
+  (0.1ms) SELECT COUNT(*) FROM "help_popups_topics" 
4290
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
4291
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (38.2ms)
4292
+ Completed 200 OK in 62ms (Views: 54.7ms | ActiveRecord: 0.8ms)
4293
+
4294
+
4295
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:19:31 -0600 2012
4296
+ Served asset /help_popups/application.css - 304 Not Modified (3ms)
4297
+
4298
+
4299
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:31 -0600 2012
4300
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
4301
+
4302
+
4303
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:31 -0600 2012
4304
+ Served asset /jquery.js - 304 Not Modified (2ms)
4305
+
4306
+
4307
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:31 -0600 2012
4308
+ Served asset /help_popups/application.js - 304 Not Modified (6ms)
4309
+
4310
+
4311
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:19:31 -0600 2012
4312
+ Served asset /help_popups/topics.js - 304 Not Modified (2ms)
4313
+
4314
+
4315
+ Started GET "/help_popups/" for 127.0.0.1 at Thu Aug 02 00:20:19 -0600 2012
4316
+ Connecting to database specified by database.yml
4317
+
4318
+ ActionController::RoutingError (No route matches [GET] "/help_popups"):
4319
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
4320
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4321
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
4322
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
4323
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4324
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
4325
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
4326
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4327
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
4328
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
4329
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
4330
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
4331
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
4332
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
4333
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
4334
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4335
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4336
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4337
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4338
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4339
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4340
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4341
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4342
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4343
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4344
+ rack (1.4.1) lib/rack/handler/webrick.rb:13:in `run'
4345
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
4346
+ railties (3.2.6) lib/rails/commands/server.rb:70:in `start'
4347
+ railties (3.2.6) lib/rails/commands.rb:55
4348
+ railties (3.2.6) lib/rails/commands.rb:50:in `tap'
4349
+ railties (3.2.6) lib/rails/commands.rb:50
4350
+ script/rails:6:in `require'
4351
+ script/rails:6
4352
+
4353
+
4354
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4355
+
4356
+
4357
+ Started GET "/" for 127.0.0.1 at Thu Aug 02 00:20:26 -0600 2012
4358
+
4359
+ ActionController::RoutingError (uninitialized constant TopicsController):
4360
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:218:in `constantize'
4361
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:217:in `each'
4362
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:217:in `constantize'
4363
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
4364
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:54:in `controller'
4365
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:32:in `call'
4366
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
4367
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
4368
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4369
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
4370
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4371
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
4372
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
4373
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
4374
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4375
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
4376
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
4377
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
4378
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
4379
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
4380
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
4381
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
4382
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__1998619104__call__4__callbacks'
4383
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `send'
4384
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
4385
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4386
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `send'
4387
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
4388
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4389
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4390
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4391
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4392
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4393
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
4394
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
4395
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4396
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
4397
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
4398
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4399
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
4400
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
4401
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
4402
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
4403
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
4404
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
4405
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
4406
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4407
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4408
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4409
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4410
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4411
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4412
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4413
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4414
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4415
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4416
+ rack (1.4.1) lib/rack/handler/webrick.rb:13:in `run'
4417
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
4418
+ railties (3.2.6) lib/rails/commands/server.rb:70:in `start'
4419
+ railties (3.2.6) lib/rails/commands.rb:55
4420
+ railties (3.2.6) lib/rails/commands.rb:50:in `tap'
4421
+ railties (3.2.6) lib/rails/commands.rb:50
4422
+ script/rails:6:in `require'
4423
+ script/rails:6
4424
+
4425
+
4426
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
4427
+
4428
+
4429
+ Started GET "/help_popups/" for 127.0.0.1 at Thu Aug 02 00:20:32 -0600 2012
4430
+
4431
+ ActionController::RoutingError (No route matches [GET] "/help_popups"):
4432
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
4433
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4434
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
4435
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
4436
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4437
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
4438
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
4439
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4440
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
4441
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
4442
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
4443
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
4444
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
4445
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
4446
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
4447
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
4448
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
4449
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
4450
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start'
4451
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
4452
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:95:in `start'
4453
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `each'
4454
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:92:in `start'
4455
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:23:in `start'
4456
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/webrick/server.rb:82:in `start'
4457
+ rack (1.4.1) lib/rack/handler/webrick.rb:13:in `run'
4458
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
4459
+ railties (3.2.6) lib/rails/commands/server.rb:70:in `start'
4460
+ railties (3.2.6) lib/rails/commands.rb:55
4461
+ railties (3.2.6) lib/rails/commands.rb:50:in `tap'
4462
+ railties (3.2.6) lib/rails/commands.rb:50
4463
+ script/rails:6:in `require'
4464
+ script/rails:6
4465
+
4466
+
4467
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
4468
+
4469
+
4470
+ Started GET "/help_popups/" for 127.0.0.1 at Thu Aug 02 00:21:14 -0600 2012
4471
+ Connecting to database specified by database.yml
4472
+ Processing by HelpPopups::TopicsController#index as HTML
4473
+  (0.1ms) SELECT COUNT(*) FROM "help_popups_topics" 
4474
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
4475
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (36.7ms)
4476
+ Completed 200 OK in 61ms (Views: 53.0ms | ActiveRecord: 0.8ms)
4477
+
4478
+
4479
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:14 -0600 2012
4480
+ Served asset /help_popups/application.css - 304 Not Modified (2ms)
4481
+
4482
+
4483
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:14 -0600 2012
4484
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
4485
+
4486
+
4487
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:14 -0600 2012
4488
+ Served asset /jquery.js - 304 Not Modified (2ms)
4489
+
4490
+
4491
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:14 -0600 2012
4492
+ Served asset /help_popups/topics.js - 304 Not Modified (2ms)
4493
+
4494
+
4495
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:14 -0600 2012
4496
+ Served asset /help_popups/application.js - 304 Not Modified (6ms)
4497
+
4498
+
4499
+ Started GET "/help_popups/topics/1/edit" for 127.0.0.1 at Thu Aug 02 00:21:16 -0600 2012
4500
+ Processing by HelpPopups::TopicsController#edit as HTML
4501
+ Parameters: {"id"=>"1"}
4502
+ HelpPopups::Topic Load (0.2ms) SELECT "help_popups_topics".* FROM "help_popups_topics" WHERE "help_popups_topics"."id" = ? LIMIT 1 [["id", "1"]]
4503
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.5ms)
4504
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.9ms)
4505
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/edit.html.erb within layouts/help_popups/application (41.0ms)
4506
+ Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.2ms)
4507
+
4508
+
4509
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:16 -0600 2012
4510
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4511
+
4512
+
4513
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:16 -0600 2012
4514
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
4515
+
4516
+
4517
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:16 -0600 2012
4518
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
4519
+
4520
+
4521
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:16 -0600 2012
4522
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4523
+
4524
+
4525
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:16 -0600 2012
4526
+ Served asset /jquery.js - 304 Not Modified (0ms)
4527
+
4528
+
4529
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:21:18 -0600 2012
4530
+ Processing by HelpPopups::TopicsController#index as HTML
4531
+  (0.1ms) SELECT COUNT(*) FROM "help_popups_topics"
4532
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
4533
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (1.9ms)
4534
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.2ms)
4535
+
4536
+
4537
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:18 -0600 2012
4538
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4539
+
4540
+
4541
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:18 -0600 2012
4542
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
4543
+
4544
+
4545
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:18 -0600 2012
4546
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
4547
+
4548
+
4549
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:18 -0600 2012
4550
+ Served asset /jquery.js - 304 Not Modified (0ms)
4551
+
4552
+
4553
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:18 -0600 2012
4554
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4555
+
4556
+
4557
+ Started GET "/help_popups/topics/new" for 127.0.0.1 at Thu Aug 02 00:21:19 -0600 2012
4558
+ Processing by HelpPopups::TopicsController#new as HTML
4559
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/shared/_error_messages.html.erb (0.1ms)
4560
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/_fields.html.erb (0.5ms)
4561
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/new.html.erb within layouts/help_popups/application (3.4ms)
4562
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
4563
+
4564
+
4565
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:19 -0600 2012
4566
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4567
+
4568
+
4569
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:19 -0600 2012
4570
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
4571
+
4572
+
4573
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:19 -0600 2012
4574
+ Served asset /jquery.js - 304 Not Modified (0ms)
4575
+
4576
+
4577
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:19 -0600 2012
4578
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4579
+
4580
+
4581
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:19 -0600 2012
4582
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
4583
+
4584
+
4585
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:21:21 -0600 2012
4586
+ Processing by HelpPopups::TopicsController#index as HTML
4587
+  (0.1ms) SELECT COUNT(*) FROM "help_popups_topics"
4588
+ HelpPopups::Topic Load (0.1ms) SELECT "help_popups_topics".* FROM "help_popups_topics" ORDER BY title
4589
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (2.0ms)
4590
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.2ms)
4591
+
4592
+
4593
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:21 -0600 2012
4594
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4595
+
4596
+
4597
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:21 -0600 2012
4598
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
4599
+
4600
+
4601
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:21 -0600 2012
4602
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
4603
+
4604
+
4605
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:21 -0600 2012
4606
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4607
+
4608
+
4609
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:21 -0600 2012
4610
+ Served asset /jquery.js - 304 Not Modified (0ms)
4611
+
4612
+
4613
+ Started GET "/help_popups/topics" for 127.0.0.1 at Thu Aug 02 00:21:35 -0600 2012
4614
+ Connecting to database specified by database.yml
4615
+ Processing by HelpPopups::TopicsController#index as HTML
4616
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (1.1ms)
4617
+ Completed 200 OK in 53ms (Views: 46.0ms | ActiveRecord: 0.0ms)
4618
+
4619
+
4620
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:36 -0600 2012
4621
+ Served asset /help_popups/application.css - 304 Not Modified (3ms)
4622
+
4623
+
4624
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:36 -0600 2012
4625
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
4626
+
4627
+
4628
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:36 -0600 2012
4629
+ Served asset /help_popups/topics.js - 304 Not Modified (2ms)
4630
+
4631
+
4632
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:36 -0600 2012
4633
+ Served asset /jquery.js - 304 Not Modified (2ms)
4634
+
4635
+
4636
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:36 -0600 2012
4637
+ Served asset /help_popups/application.js - 304 Not Modified (6ms)
4638
+
4639
+
4640
+ Started GET "/help_popups/" for 127.0.0.1 at Thu Aug 02 00:21:39 -0600 2012
4641
+ Processing by HelpPopups::TopicsController#index as HTML
4642
+ Rendered /Users/dereksweet/Documents/work/myGems/help_popups/app/views/help_popups/topics/index.html.erb within layouts/help_popups/application (0.1ms)
4643
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
4644
+
4645
+
4646
+ Started GET "/assets/help_popups/application.css?body=1" for 127.0.0.1 at Thu Aug 02 00:21:39 -0600 2012
4647
+ Served asset /help_popups/application.css - 304 Not Modified (0ms)
4648
+
4649
+
4650
+ Started GET "/assets/help_popups/application.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:39 -0600 2012
4651
+ Served asset /help_popups/application.js - 304 Not Modified (0ms)
4652
+
4653
+
4654
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:39 -0600 2012
4655
+ Served asset /jquery.js - 304 Not Modified (0ms)
4656
+
4657
+
4658
+ Started GET "/assets/help_popups/topics.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:39 -0600 2012
4659
+ Served asset /help_popups/topics.js - 304 Not Modified (0ms)
4660
+
4661
+
4662
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Aug 02 00:21:39 -0600 2012
4663
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
@@ -1 +1 @@
1
- 3452
1
+ 656
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 0
9
- version: 1.0.0
8
+ - 1
9
+ version: 1.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Derek Sweet
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2012-07-28 00:00:00 -06:00
17
+ date: 2012-08-02 00:00:00 -06:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -153,8 +153,11 @@ test_files:
153
153
  - test/dummy/tmp/cache/assets/C77/CD0/sprockets%2F38184fc0616ddd2221008a78d1541d87
154
154
  - test/dummy/tmp/cache/assets/C78/D50/sprockets%2F6f9a447fc4535059c630c429a420f130
155
155
  - test/dummy/tmp/cache/assets/C80/9A0/sprockets%2F574775a5e25504b59cf50eac33454444
156
+ - test/dummy/tmp/cache/assets/C82/FF0/sprockets%2F934f3f962e2f283f310352a83d2a2298
156
157
  - test/dummy/tmp/cache/assets/C9D/280/sprockets%2F6fc85a549958e3997c3885c2a543b327
157
158
  - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
159
+ - test/dummy/tmp/cache/assets/CD9/680/sprockets%2Ff8fa455dc5431ba34904c144e0291c87
160
+ - test/dummy/tmp/cache/assets/CDE/9B0/sprockets%2F2a110e19d10b758979b67c1e7274bee2
158
161
  - test/dummy/tmp/cache/assets/CF1/BC0/sprockets%2F07e3b61f967322698ef50f8851fbdc08
159
162
  - test/dummy/tmp/cache/assets/D0A/540/sprockets%2Fc0b233a75bdfc63f5324426663ce4d67
160
163
  - test/dummy/tmp/cache/assets/D17/9B0/sprockets%2F3154059ed98209719dc1a7c493cb0fff
@@ -165,10 +168,15 @@ test_files:
165
168
  - test/dummy/tmp/cache/assets/D3B/F80/sprockets%2F304efb1d2d219915606f3fd96b3bf5c2
166
169
  - test/dummy/tmp/cache/assets/D3D/600/sprockets%2Fef755eb9fa30652001fb26da6930d94e
167
170
  - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
171
+ - test/dummy/tmp/cache/assets/D59/410/sprockets%2Ff5b91a6111720ee8c5ada6cc20b47c14
168
172
  - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
169
173
  - test/dummy/tmp/cache/assets/D63/E40/sprockets%2F57fe313a29742ea0aecf0202e636f7db
174
+ - test/dummy/tmp/cache/assets/D66/2E0/sprockets%2F3f6153210f7bf78ac5efb97a4010b7ea
170
175
  - test/dummy/tmp/cache/assets/D7A/410/sprockets%2Fd1decdae4824f395df114687f262e78a
176
+ - test/dummy/tmp/cache/assets/D92/0E0/sprockets%2Fd9789ab893e8debcec92799653161faf
171
177
  - test/dummy/tmp/cache/assets/DA7/230/sprockets%2F7ae10239eda2588a95fdcc7d871bef52
178
+ - test/dummy/tmp/cache/assets/DB2/340/sprockets%2F6dbee4e95bfbe5ee10b454771c76f769
179
+ - test/dummy/tmp/cache/assets/DBD/800/sprockets%2F7bdab069ae4765620d5be3eafc00a7a3
172
180
  - test/dummy/tmp/cache/assets/DCB/C20/sprockets%2F8668cc43bae0fbfa023eb81c98329afa
173
181
  - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
174
182
  - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af