status_cat 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4d7e541b0764d848791a7a4b5d56e20de702db5
4
- data.tar.gz: d072d488b05aa95fb5c2de5b6f166e81c169418d
3
+ metadata.gz: e8d8d75df39902b32116a0814b404d633ecb99b5
4
+ data.tar.gz: 34162c6171480ba92a091b10aa4ecef247fc2ff7
5
5
  SHA512:
6
- metadata.gz: 8db8481cfa3edcd43bfb3b369a6ae5a63f2d0201f99d95ceca48ef129a57bbd7d96f946ab2343dde8b8da7b8ee71d918c1dc2a883a8658cf34fc88cb59ffac71
7
- data.tar.gz: 4bc2df86a682d5c0e1ad4567c269878345f4bffb9657c5552e33ce2da9779ca3c35c8045073c4d0e1c874c24995a6377f8f3d19e8b65158bab5679053ab381b4
6
+ metadata.gz: 0d8b48e2ff4f999509d683f06ef1149f9ddb93bf8c255996db4467c07117d1cfab3e7cd846c57d9e417badc5ca77eab620acca5eef3789ed359ab9b6efe38508
7
+ data.tar.gz: 780f4247cb5b623bbe4032ed39703815561f75504b42b5d62f66d6b45a1cb9c99ec8a6ec5bce952daaab52a3962aacf8a07044740bcf87ee8fea352c27695230
data/README.md CHANGED
@@ -1,3 +1,10 @@
1
+ [![Build Status](https://travis-ci.org/schrodingersbox/status_cat.svg?branch=master)](https://travis-ci.org/schrodingersbox/status_cat)
2
+ [![Coverage Status](https://coveralls.io/repos/schrodingersbox/status_cat/badge.png?branch=master)](https://coveralls.io/r/schrodingersbox/status_cat?branch=master)
3
+ [![Code Climate](https://codeclimate.com/github/schrodingersbox/status_cat.png)](https://codeclimate.com/github/schrodingersbox/status_cat)
4
+ [![Dependency Status](https://gemnasium.com/schrodingersbox/status_cat.png)](https://gemnasium.com/schrodingersbox/status_cat)
5
+ [![Gem Version](https://badge.fury.io/rb/status_cat.png)](http://badge.fury.io/rb/status_cat)
6
+
7
+
1
8
  # schrodingersbox/status_cat README
2
9
 
3
10
  This engine makes monitoring the status of your Rails environment easier.
@@ -15,7 +22,7 @@ such as:
15
22
 
16
23
  1. Add this to your `Gemfile` and `bundle install`
17
24
 
18
- gem 'status_cat', :git => 'https://github.com/schrodingersbox/status_cat.git'
25
+ gem 'status_cat'
19
26
 
20
27
  2. Add this to your `config/routes.rb`
21
28
 
@@ -157,5 +164,3 @@ Version 0.0.3 = Rails 4 compatible
157
164
  * Doc
158
165
  * General checker concept
159
166
  * Shared spec
160
-
161
- * Publish as gem
@@ -22,23 +22,8 @@ module StatusCat::StatusHelper
22
22
 
23
23
  def status_cell( status )
24
24
  if status.kind_of?(Array)
25
- return content_tag( :td ) do
26
- content_tag( :table ) do
27
- rows = nil
28
- status.each do |s|
29
- row = content_tag( :tr ) do
30
- content_tag( :td, s )
31
- end
32
-
33
- if rows == nil
34
- rows = row
35
- else
36
- rows += row
37
- end
38
- end
39
- rows
40
- end
41
- end
25
+ list = status.map { |s| content_tag( :li, s ) }
26
+ status = content_tag( :ul, list.join.html_safe )
42
27
  end
43
28
 
44
29
  return content_tag( :td, status )
@@ -3,6 +3,7 @@ module StatusCat
3
3
  class ActiveRecord < Base
4
4
 
5
5
  def initialize
6
+ config = ::ActiveRecord::Base.connection_config
6
7
  @value = "#{config[ :adapter ]}:#{config[ :username ]}@#{config[ :database ]}"
7
8
 
8
9
  @status = fail_on_exception do
@@ -11,14 +12,6 @@ module StatusCat
11
12
  end
12
13
  end
13
14
 
14
- def config
15
- unless @config
16
- yaml = YAML::load( ERB.new( IO.read( File.join( Rails.root, 'config', 'database.yml' ) ) ).result )
17
- @config = yaml[ Rails.env ].symbolize_keys!
18
- end
19
- return @config
20
- end
21
-
22
15
  end
23
16
  end
24
17
  end
@@ -1,6 +1,7 @@
1
1
  module StatusCat
2
2
  module Checkers
3
3
  class S3 < Base
4
+
4
5
  def initialize
5
6
  if !defined?( ::AWS )
6
7
  @status = 'aws-sdk gem not installed'
@@ -12,6 +13,7 @@ module StatusCat
12
13
  end
13
14
  end
14
15
  end
16
+
15
17
  end
16
18
  end
17
19
  end
@@ -7,7 +7,7 @@ module StatusCat
7
7
  @status = 'stripe gem not installed'
8
8
  else
9
9
  @status = fail_on_exception do
10
- account = ::Stripe::Account.retrieve()
10
+ account = ::Stripe::Account.retrieve
11
11
  @value = account.email
12
12
  account.charge_enabled ? nil : 'Charge is not enabled'
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module StatusCat
2
- VERSION = '0.0.8'
2
+ VERSION = '0.0.9'
3
3
  end
data/spec/data/report.txt CHANGED
@@ -1,10 +1,10 @@
1
- -------------------------------------------------------------------------
2
- Name | Value | Status
3
- -------------------------------------------------------------------------
4
- action_mailer | localhost:25 | OK
5
- active_record | sqlite3:@db/test.sqlite3 | OK
6
- delayed_job | | delayed_job gem not installed
7
- dummy | dummy | fail
8
- s3 | | aws-sdk gem not installed
9
- stripe | | stripe gem not installed
10
- -------------------------------------------------------------------------
1
+ ------------------------------------------------------------------------------------------------------
2
+ Name | Value | Status
3
+ ------------------------------------------------------------------------------------------------------
4
+ action_mailer | localhost:25 | OK
5
+ active_record | sqlite3:@/Users/rdh727/schrodingersbox/status_cat/spec/dummy/db/test.sqlite3 | OK
6
+ delayed_job | | OK
7
+ dummy | dummy | OK
8
+ s3 | | OK
9
+ stripe | | OK
10
+ ------------------------------------------------------------------------------------------------------
@@ -1,10 +1,10 @@
1
- -------------------------------------------------------------------------
2
- Name | Value | Status
3
- -------------------------------------------------------------------------
4
- action_mailer | localhost:25 | OK
5
- active_record | sqlite3:@db/test.sqlite3 | OK
6
- delayed_job | | delayed_job gem not installed
7
- dummy | dummy | fail
8
- s3 | | aws-sdk gem not installed
9
- stripe | | stripe gem not installed
10
- -------------------------------------------------------------------------
1
+ ------------------------------------------------------------------------------------------------------
2
+ Name | Value | Status
3
+ ------------------------------------------------------------------------------------------------------
4
+ action_mailer | localhost:25 | OK
5
+ active_record | sqlite3:@/Users/rdh727/schrodingersbox/status_cat/spec/dummy/db/test.sqlite3 | OK
6
+ delayed_job | | OK
7
+ dummy | dummy | OK
8
+ s3 | | OK
9
+ stripe | | OK
10
+ ------------------------------------------------------------------------------------------------------
@@ -1 +1 @@
1
- ["%13s | %24s | %29s\n", 72]
1
+ ["%13s | %76s | %0s\n", 95]
@@ -1 +1 @@
1
- ["%13s | %24s | %29s\n", 72]
1
+ ["%13s | %76s | %0s\n", 95]
@@ -3,7 +3,7 @@ module StatusCat
3
3
  class Dummy < Base
4
4
  def initialize
5
5
  @value = 'dummy'
6
- @status = 'fail'
6
+ @status = [ 'fail', 'fail', 'fail' ]
7
7
  end
8
8
  end
9
9
  end
@@ -887,3 +887,346 @@ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 14:17:38 -070
887
887
 
888
888
 
889
889
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 14:17:38 -0700
890
+
891
+
892
+ Started GET "/admin" for 127.0.0.1 at 2014-04-19 15:25:49 -0700
893
+
894
+ ActionController::RoutingError (No route matches [GET] "/admin"):
895
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
896
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
897
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
898
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
899
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
900
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
901
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
902
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
903
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
904
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
905
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
906
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
907
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
908
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
909
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
910
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
911
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
912
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
913
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
914
+ /Users/rdh727/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
915
+ /Users/rdh727/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
916
+ /Users/rdh727/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
917
+
918
+
919
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
920
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms)
921
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
922
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.9ms)
923
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (42.0ms)
924
+
925
+
926
+ Started GET "/" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
927
+ Processing by RootController#index as HTML
928
+ Rendered root/index.html.erb within layouts/application (0.1ms)
929
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
930
+
931
+
932
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
933
+
934
+
935
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
936
+
937
+
938
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
939
+
940
+
941
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
942
+
943
+
944
+ Started GET "/" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
945
+ Processing by RootController#index as HTML
946
+ Rendered root/index.html.erb within layouts/application (0.0ms)
947
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
948
+
949
+
950
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
951
+
952
+
953
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
954
+
955
+
956
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
957
+
958
+
959
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:52 -0700
960
+
961
+
962
+ Started GET "/login" for 127.0.0.1 at 2014-04-19 15:25:53 -0700
963
+ Processing by RootController#login as HTML
964
+ Redirected to http://localhost:3000/
965
+ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
966
+
967
+
968
+ Started GET "/" for 127.0.0.1 at 2014-04-19 15:25:53 -0700
969
+ Processing by RootController#index as HTML
970
+ Rendered root/index.html.erb within layouts/application (0.0ms)
971
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
972
+
973
+
974
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:53 -0700
975
+
976
+
977
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:53 -0700
978
+
979
+
980
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:25:53 -0700
981
+
982
+
983
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-19 15:25:54 -0700
984
+ Processing by StatusCat::StatusController#index as HTML
985
+  (1.5ms) select max(version) from schema_migrations
986
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (2.3ms)
987
+ Completed 200 OK in 439ms (Views: 8.4ms | ActiveRecord: 1.5ms)
988
+
989
+
990
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:25:54 -0700
991
+
992
+
993
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:54 -0700
994
+
995
+
996
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:25:54 -0700
997
+
998
+
999
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-19 15:26:11 -0700
1000
+ Processing by StatusCat::StatusController#index as HTML
1001
+  (0.4ms) select max(version) from schema_migrations
1002
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (12.2ms)
1003
+ Completed 200 OK in 324ms (Views: 74.6ms | ActiveRecord: 0.4ms)
1004
+
1005
+
1006
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:26:11 -0700
1007
+
1008
+
1009
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:26:11 -0700
1010
+
1011
+
1012
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:26:11 -0700
1013
+
1014
+
1015
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:26:11 -0700
1016
+
1017
+
1018
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-19 15:27:20 -0700
1019
+ Processing by StatusCat::StatusController#index as HTML
1020
+  (0.5ms) select max(version) from schema_migrations
1021
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (1.6ms)
1022
+ Completed 200 OK in 636ms (Views: 5.7ms | ActiveRecord: 0.5ms)
1023
+
1024
+
1025
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:27:20 -0700
1026
+
1027
+
1028
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:27:20 -0700
1029
+
1030
+
1031
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:27:20 -0700
1032
+
1033
+
1034
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:27:20 -0700
1035
+
1036
+
1037
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-19 15:28:24 -0700
1038
+ Processing by StatusCat::StatusController#index as HTML
1039
+  (0.5ms) select max(version) from schema_migrations
1040
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (1.8ms)
1041
+ Completed 200 OK in 749ms (Views: 6.1ms | ActiveRecord: 0.5ms)
1042
+
1043
+
1044
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:28:25 -0700
1045
+
1046
+
1047
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:25 -0700
1048
+
1049
+
1050
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:25 -0700
1051
+
1052
+
1053
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:25 -0700
1054
+
1055
+
1056
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-19 15:28:43 -0700
1057
+ Processing by StatusCat::StatusController#index as HTML
1058
+  (0.4ms) select max(version) from schema_migrations
1059
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (1.5ms)
1060
+ Completed 200 OK in 317ms (Views: 5.3ms | ActiveRecord: 0.4ms)
1061
+
1062
+
1063
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:28:43 -0700
1064
+
1065
+
1066
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:43 -0700
1067
+
1068
+
1069
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:43 -0700
1070
+
1071
+
1072
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:43 -0700
1073
+
1074
+
1075
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-19 15:28:56 -0700
1076
+ Processing by StatusCat::StatusController#index as HTML
1077
+  (0.5ms) select max(version) from schema_migrations
1078
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (1.8ms)
1079
+ Completed 200 OK in 398ms (Views: 7.7ms | ActiveRecord: 0.5ms)
1080
+
1081
+
1082
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-19 15:28:56 -0700
1083
+
1084
+
1085
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:56 -0700
1086
+
1087
+
1088
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:56 -0700
1089
+
1090
+
1091
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-19 15:28:56 -0700
1092
+
1093
+
1094
+ Started GET "/" for 127.0.0.1 at 2014-04-24 19:35:42 -0700
1095
+ Processing by RootController#index as HTML
1096
+ Rendered root/index.html.erb within layouts/application (5.0ms)
1097
+ Completed 200 OK in 263ms (Views: 262.6ms | ActiveRecord: 0.0ms)
1098
+
1099
+
1100
+ Started GET "/" for 127.0.0.1 at 2014-04-24 19:35:45 -0700
1101
+ Processing by RootController#index as HTML
1102
+ Rendered root/index.html.erb within layouts/application (0.0ms)
1103
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1104
+
1105
+
1106
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-24 19:35:45 -0700
1107
+
1108
+
1109
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-24 19:35:45 -0700
1110
+
1111
+
1112
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-24 19:35:45 -0700
1113
+
1114
+
1115
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-24 19:35:45 -0700
1116
+
1117
+
1118
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-24 19:35:48 -0700
1119
+ Processing by StatusCat::StatusController#index as HTML
1120
+  (5.8ms) select max(version) from schema_migrations
1121
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (24.3ms)
1122
+ Completed 200 OK in 359ms (Views: 32.0ms | ActiveRecord: 5.8ms)
1123
+
1124
+
1125
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-24 19:38:14 -0700
1126
+ Processing by StatusCat::StatusController#index as HTML
1127
+ Completed 500 Internal Server Error in 397ms
1128
+
1129
+ NameError (uninitialized constant StatusCat::Checkers::ActiveRecord::Base):
1130
+ /Users/rdh727/schrodingersbox/status_cat/lib/status_cat/checkers/active_record.rb:6:in `initialize'
1131
+ /Users/rdh727/schrodingersbox/status_cat/lib/status_cat/status.rb:27:in `new'
1132
+ /Users/rdh727/schrodingersbox/status_cat/lib/status_cat/status.rb:27:in `factory'
1133
+ /Users/rdh727/schrodingersbox/status_cat/lib/status_cat/status.rb:7:in `block in all'
1134
+ /Users/rdh727/schrodingersbox/status_cat/lib/status_cat/status.rb:7:in `map'
1135
+ /Users/rdh727/schrodingersbox/status_cat/lib/status_cat/status.rb:7:in `all'
1136
+ /Users/rdh727/schrodingersbox/status_cat/app/controllers/status_cat/status_controller.rb:9:in `index'
1137
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1138
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
1139
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
1140
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1141
+ activesupport (4.0.0) lib/active_support/callbacks.rb:403:in `_run__3442704829386627118__process_action__callbacks'
1142
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1143
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
1144
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1145
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1146
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
1147
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1148
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
1149
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1150
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1151
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1152
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
1153
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
1154
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
1155
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1156
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
1157
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
1158
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1159
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
1160
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1161
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1162
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1163
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1164
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1165
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
1166
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
1167
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
1168
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
1169
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
1170
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1171
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1172
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1173
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1174
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
1175
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1176
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1177
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1178
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
1179
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1180
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1181
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2938814165396699007__call__callbacks'
1182
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1183
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1184
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1185
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1186
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1187
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1188
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1189
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1190
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1191
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1192
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1193
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1194
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1195
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1196
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1197
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1198
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1199
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1200
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1201
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1202
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1203
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1204
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1205
+ /Users/rdh727/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1206
+ /Users/rdh727/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1207
+ /Users/rdh727/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1208
+
1209
+
1210
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1211
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1212
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (20.0ms)
1213
+ Rendered /Users/rdh727/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.5ms)
1214
+
1215
+
1216
+ Started GET "/status_cat" for 127.0.0.1 at 2014-04-24 19:38:44 -0700
1217
+ Processing by StatusCat::StatusController#index as HTML
1218
+  (0.9ms) select max(version) from schema_migrations
1219
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/admin (11.9ms)
1220
+ Completed 200 OK in 324ms (Views: 70.7ms | ActiveRecord: 0.9ms)
1221
+
1222
+
1223
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-24 19:38:45 -0700
1224
+
1225
+
1226
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-24 19:38:45 -0700
1227
+
1228
+
1229
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-24 19:38:45 -0700
1230
+
1231
+
1232
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-24 19:38:45 -0700