rgigya 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. data/.rvmrc +1 -0
  2. data/Gemfile +18 -0
  3. data/Gemfile.lock +54 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.rdoc +135 -0
  6. data/Rakefile +36 -0
  7. data/VERSION +1 -0
  8. data/lib/rgigya.rb +196 -0
  9. data/rgigya.gemspec +118 -0
  10. data/spec/helpers.rb +8 -0
  11. data/spec/rgigya_spec.rb +310 -0
  12. data/spec/spec_helper.rb +12 -0
  13. data/test/dummy/Gemfile +40 -0
  14. data/test/dummy/Gemfile.lock +119 -0
  15. data/test/dummy/README.rdoc +261 -0
  16. data/test/dummy/Rakefile +7 -0
  17. data/test/dummy/app/assets/images/rails.png +0 -0
  18. data/test/dummy/app/assets/javascripts/application.js +15 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +23 -0
  20. data/test/dummy/app/controllers/application_controller.rb +3 -0
  21. data/test/dummy/app/controllers/welcome_controller.rb +22 -0
  22. data/test/dummy/app/helpers/application_helper.rb +2 -0
  23. data/test/dummy/app/mailers/.gitkeep +0 -0
  24. data/test/dummy/app/models/.gitkeep +0 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +44 -0
  26. data/test/dummy/app/views/welcome/index.html +0 -0
  27. data/test/dummy/app/views/welcome/index.html.erb +14 -0
  28. data/test/dummy/config/application.rb +62 -0
  29. data/test/dummy/config/boot.rb +6 -0
  30. data/test/dummy/config/database.yml +25 -0
  31. data/test/dummy/config/environment.rb +5 -0
  32. data/test/dummy/config/environments/development.rb +42 -0
  33. data/test/dummy/config/environments/production.rb +67 -0
  34. data/test/dummy/config/environments/test.rb +37 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/inflections.rb +15 -0
  37. data/test/dummy/config/initializers/mime_types.rb +5 -0
  38. data/test/dummy/config/initializers/secret_token.rb +7 -0
  39. data/test/dummy/config/initializers/session_store.rb +8 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +5 -0
  42. data/test/dummy/config/routes.rb +60 -0
  43. data/test/dummy/config.ru +4 -0
  44. data/test/dummy/db/development.sqlite3 +0 -0
  45. data/test/dummy/db/seeds.rb +7 -0
  46. data/test/dummy/lib/assets/.gitkeep +0 -0
  47. data/test/dummy/lib/tasks/.gitkeep +0 -0
  48. data/test/dummy/log/.gitkeep +0 -0
  49. data/test/dummy/log/development.log +1130 -0
  50. data/test/dummy/public/404.html +26 -0
  51. data/test/dummy/public/422.html +26 -0
  52. data/test/dummy/public/500.html +25 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/public/robots.txt +5 -0
  55. data/test/dummy/script/rails +6 -0
  56. data/test/dummy/test/fixtures/.gitkeep +0 -0
  57. data/test/dummy/test/functional/.gitkeep +0 -0
  58. data/test/dummy/test/integration/.gitkeep +0 -0
  59. data/test/dummy/test/performance/browsing_test.rb +12 -0
  60. data/test/dummy/test/test_helper.rb +13 -0
  61. data/test/dummy/test/unit/.gitkeep +0 -0
  62. data/test/dummy/vendor/assets/javascripts/.gitkeep +0 -0
  63. data/test/dummy/vendor/assets/stylesheets/.gitkeep +0 -0
  64. data/test/dummy/vendor/plugins/.gitkeep +0 -0
  65. metadata +180 -0
@@ -0,0 +1,1130 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/assets/rails.png" for 127.0.0.1 at 2013-04-15 10:22:20 -0400
5
+ Served asset /rails.png - 200 OK (37ms)
6
+
7
+
8
+ Started GET "/" for 127.0.0.1 at 2013-04-15 10:24:23 -0400
9
+ Processing by WelcomeController#index as HTML
10
+ Rendered welcome/index.html.erb within layouts/application (19.0ms)
11
+ Compiled application.css (0ms) (pid 13414)
12
+ Compiled jquery.js (18ms) (pid 13414)
13
+ Compiled jquery_ujs.js (0ms) (pid 13414)
14
+ Compiled application.js (145ms) (pid 13414)
15
+ Completed 200 OK in 973ms (Views: 972.2ms | ActiveRecord: 0.0ms)
16
+
17
+
18
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 10:24:26 -0400
19
+ Served asset /jquery.js - 200 OK (5ms)
20
+
21
+
22
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 10:24:26 -0400
23
+ Served asset /application.css - 200 OK (2ms)
24
+
25
+
26
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 10:24:26 -0400
27
+ Served asset /jquery_ujs.js - 200 OK (2ms)
28
+
29
+
30
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 10:24:26 -0400
31
+ Served asset /application.js - 200 OK (6ms)
32
+ Connecting to database specified by database.yml
33
+
34
+
35
+ Started GET "/" for 127.0.0.1 at 2013-04-15 10:42:53 -0400
36
+ Processing by WelcomeController#index as HTML
37
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
38
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
39
+
40
+
41
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 10:42:53 -0400
42
+ Served asset /jquery.js - 304 Not Modified (2ms)
43
+
44
+
45
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 10:42:54 -0400
46
+ Served asset /application.css - 304 Not Modified (1ms)
47
+
48
+
49
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 10:42:54 -0400
50
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
51
+
52
+
53
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 10:42:54 -0400
54
+ Served asset /application.js - 304 Not Modified (3ms)
55
+
56
+
57
+ Started GET "/" for 127.0.0.1 at 2013-04-15 10:43:33 -0400
58
+ Processing by WelcomeController#index as HTML
59
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
60
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
61
+
62
+
63
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 10:43:33 -0400
64
+ Served asset /application.css - 200 OK (0ms)
65
+
66
+
67
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 10:43:33 -0400
68
+ Served asset /application.js - 200 OK (0ms)
69
+
70
+
71
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 10:43:33 -0400
72
+ Served asset /jquery.js - 200 OK (0ms)
73
+
74
+
75
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 10:43:33 -0400
76
+ Served asset /jquery_ujs.js - 200 OK (0ms)
77
+
78
+
79
+ Started GET "/" for 127.0.0.1 at 2013-04-15 10:51:40 -0400
80
+ Processing by WelcomeController#index as HTML
81
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
82
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
83
+
84
+
85
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 10:51:40 -0400
86
+ Served asset /application.css - 304 Not Modified (0ms)
87
+
88
+
89
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 10:51:40 -0400
90
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
91
+
92
+
93
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 10:51:40 -0400
94
+ Served asset /application.js - 304 Not Modified (0ms)
95
+
96
+
97
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 10:51:40 -0400
98
+ Served asset /jquery.js - 304 Not Modified (0ms)
99
+
100
+
101
+ Started GET "/" for 127.0.0.1 at 2013-04-15 10:51:56 -0400
102
+ Processing by WelcomeController#index as HTML
103
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
104
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
105
+
106
+
107
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 10:51:56 -0400
108
+ Served asset /application.css - 304 Not Modified (0ms)
109
+
110
+
111
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 10:51:56 -0400
112
+ Served asset /jquery.js - 304 Not Modified (0ms)
113
+
114
+
115
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 10:51:56 -0400
116
+ Served asset /application.js - 304 Not Modified (0ms)
117
+
118
+
119
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 10:51:56 -0400
120
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
121
+
122
+
123
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&timestamp=2013-04-15%2014%3A51%3A58&UIDSignature=Zvh5vAgkNVe2238tsZSlb0WZ2WY%3D&signatureTimestamp=1366037518&loginProviderUID=100002922034023&isSiteUID=false&signature=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 10:51:58 -0400
124
+
125
+ ActionController::RoutingError (No route matches [GET] "/welcome.html"):
126
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
127
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
128
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
129
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
130
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
131
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
132
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
133
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
134
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
135
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
136
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
137
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
138
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
139
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
140
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
141
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
142
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
143
+ /Users/scottsampson/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
144
+ /Users/scottsampson/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
145
+ /Users/scottsampson/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
146
+
147
+
148
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
149
+ Connecting to database specified by database.yml
150
+
151
+
152
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&timestamp=2013-04-15%2014%3A51%3A58&UIDSignature=Zvh5vAgkNVe2238tsZSlb0WZ2WY%3D&signatureTimestamp=1366037518&loginProviderUID=100002922034023&isSiteUID=false&signature=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 10:52:54 -0400
153
+ Processing by WelcomeController#index as HTML
154
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"m+AOpWb+z4XV4Z2YcJAiXo3ovRA=", "timestamp"=>"2013-04-15 14:51:58", "UIDSignature"=>"Zvh5vAgkNVe2238tsZSlb0WZ2WY=", "signatureTimestamp"=>"1366037518", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"m+AOpWb+z4XV4Z2YcJAiXo3ovRA=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
155
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
156
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
157
+
158
+
159
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 10:52:54 -0400
160
+ Served asset /application.css - 304 Not Modified (1ms)
161
+
162
+
163
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 10:52:54 -0400
164
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
165
+
166
+
167
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 10:52:54 -0400
168
+ Served asset /jquery.js - 304 Not Modified (2ms)
169
+
170
+
171
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 10:52:54 -0400
172
+ Served asset /application.js - 304 Not Modified (3ms)
173
+
174
+
175
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&timestamp=2013-04-15%2014%3A51%3A58&UIDSignature=Zvh5vAgkNVe2238tsZSlb0WZ2WY%3D&signatureTimestamp=1366037518&loginProviderUID=100002922034023&isSiteUID=false&signature=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 11:14:52 -0400
176
+ Processing by WelcomeController#index as HTML
177
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"m+AOpWb+z4XV4Z2YcJAiXo3ovRA=", "timestamp"=>"2013-04-15 14:51:58", "UIDSignature"=>"Zvh5vAgkNVe2238tsZSlb0WZ2WY=", "signatureTimestamp"=>"1366037518", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"m+AOpWb+z4XV4Z2YcJAiXo3ovRA=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
178
+ Completed 500 Internal Server Error in 1ms
179
+
180
+ NameError (uninitialized constant WelcomeController::Gigya):
181
+ app/controllers/welcome_controller.rb:10:in `index'
182
+
183
+
184
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
185
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
186
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
187
+
188
+
189
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&timestamp=2013-04-15%2014%3A51%3A58&UIDSignature=Zvh5vAgkNVe2238tsZSlb0WZ2WY%3D&signatureTimestamp=1366037518&loginProviderUID=100002922034023&isSiteUID=false&signature=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 11:15:06 -0400
190
+
191
+ LoadError (cannot load such file -- Gigya):
192
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
193
+
194
+
195
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
196
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
197
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)
198
+ Connecting to database specified by database.yml
199
+
200
+
201
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&timestamp=2013-04-15%2014%3A51%3A58&UIDSignature=Zvh5vAgkNVe2238tsZSlb0WZ2WY%3D&signatureTimestamp=1366037518&loginProviderUID=100002922034023&isSiteUID=false&signature=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 11:17:25 -0400
202
+
203
+ LoadError (cannot load such file -- Gigya):
204
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
205
+
206
+
207
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
208
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
209
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.6ms)
210
+ Connecting to database specified by database.yml
211
+
212
+
213
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&timestamp=2013-04-15%2014%3A51%3A58&UIDSignature=Zvh5vAgkNVe2238tsZSlb0WZ2WY%3D&signatureTimestamp=1366037518&loginProviderUID=100002922034023&isSiteUID=false&signature=m%2BAOpWb%2Bz4XV4Z2YcJAiXo3ovRA%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 11:18:11 -0400
214
+
215
+ LoadError (cannot load such file -- Gigya):
216
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
217
+
218
+
219
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
220
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
221
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@giggity/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms)
222
+ Connecting to database specified by database.yml
223
+ Connecting to database specified by database.yml
224
+ Connecting to database specified by database.yml
225
+ Connecting to database specified by database.yml
226
+ Connecting to database specified by database.yml
227
+ RGigya returned Error code 400006.
228
+
229
+ Error Message: Invalid parameter value
230
+
231
+ Error Details: Invalid argument: ApiKey
232
+ Connecting to database specified by database.yml
233
+ Connecting to database specified by database.yml
234
+ Connecting to database specified by database.yml
235
+ Connecting to database specified by database.yml
236
+ Connecting to database specified by database.yml
237
+ RGigya returned Error code 400006.
238
+
239
+ Error Message: Invalid parameter value
240
+
241
+ Error Details: Invalid argument: ApiKey
242
+ RGigya returned Error code 400006.
243
+
244
+ Error Message: Invalid parameter value
245
+
246
+ Error Details: Invalid argument: ApiKey
247
+ Connecting to database specified by database.yml
248
+
249
+
250
+ Started GET "/" for 127.0.0.1 at 2013-04-15 14:37:12 -0400
251
+
252
+ LoadError (cannot load such file -- Gigya):
253
+ app/controllers/welcome_controller.rb:1:in `<top (required)>'
254
+
255
+
256
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
257
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (20.5ms)
258
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.4ms)
259
+
260
+
261
+ Started GET "/" for 127.0.0.1 at 2013-04-15 14:37:23 -0400
262
+ Processing by WelcomeController#index as HTML
263
+ RGigya returned Error code 400006.
264
+
265
+ Error Message: Invalid parameter value
266
+
267
+ Error Details: Invalid argument: ApiKey
268
+ Completed 500 Internal Server Error in 795ms
269
+
270
+ RGigya::ErrorCodeReturned (returned Error code 400006: Invalid parameter value):
271
+ app/controllers/welcome_controller.rb:12:in `index'
272
+
273
+
274
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
275
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
276
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
277
+
278
+
279
+ Started GET "/" for 127.0.0.1 at 2013-04-15 14:37:53 -0400
280
+ Processing by WelcomeController#index as HTML
281
+ {"controller"=>"welcome", "action"=>"index"}
282
+ RGigya returned Error code 400006.
283
+
284
+ Error Message: Invalid parameter value
285
+
286
+ Error Details: Invalid argument: ApiKey
287
+ Completed 500 Internal Server Error in 171ms
288
+
289
+ RGigya::ErrorCodeReturned (returned Error code 400006: Invalid parameter value):
290
+ app/controllers/welcome_controller.rb:13:in `index'
291
+
292
+
293
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
294
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
295
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
296
+
297
+
298
+ Started GET "/" for 127.0.0.1 at 2013-04-15 14:38:06 -0400
299
+ Processing by WelcomeController#index as HTML
300
+ {"controller"=>"welcome", "action"=>"index"}
301
+ RGigya returned Error code 400006.
302
+
303
+ Error Message: Invalid parameter value
304
+
305
+ Error Details: Invalid argument: ApiKey
306
+ Completed 500 Internal Server Error in 1148ms
307
+
308
+ RGigya::ErrorCodeReturned (returned Error code 400006: Invalid parameter value):
309
+ app/controllers/welcome_controller.rb:13:in `index'
310
+
311
+
312
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
313
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
314
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
315
+
316
+
317
+ Started GET "/" for 127.0.0.1 at 2013-04-15 14:38:19 -0400
318
+ Processing by WelcomeController#index as HTML
319
+ {"controller"=>"welcome", "action"=>"index"}
320
+ RGigya returned Error code 400006.
321
+
322
+ Error Message: Invalid parameter value
323
+
324
+ Error Details: Invalid argument: ApiKey
325
+ Completed 500 Internal Server Error in 177ms
326
+
327
+ RGigya::ErrorCodeReturned (returned Error code 400006: Invalid parameter value):
328
+ app/controllers/welcome_controller.rb:13:in `index'
329
+
330
+
331
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
332
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
333
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
334
+
335
+
336
+ Started GET "/" for 127.0.0.1 at 2013-04-15 14:38:46 -0400
337
+ Processing by WelcomeController#index as HTML
338
+ Rendered welcome/index.html.erb within layouts/application (0.4ms)
339
+ Compiled application.css (0ms) (pid 16093)
340
+ Compiled jquery.js (1ms) (pid 16093)
341
+ Compiled jquery_ujs.js (0ms) (pid 16093)
342
+ Compiled application.js (308ms) (pid 16093)
343
+ Completed 200 OK in 1538ms (Views: 1537.3ms | ActiveRecord: 0.0ms)
344
+
345
+
346
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:38:47 -0400
347
+ Served asset /application.css - 200 OK (1ms)
348
+
349
+
350
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:38:47 -0400
351
+ Served asset /jquery.js - 304 Not Modified (3ms)
352
+
353
+
354
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:38:47 -0400
355
+ Served asset /application.js - 304 Not Modified (38ms)
356
+
357
+
358
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:38:47 -0400
359
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
360
+
361
+
362
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:38:52 -0400
363
+ Processing by WelcomeController#index as HTML
364
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
365
+ RGigya returned Error code 400006.
366
+
367
+ Error Message: Invalid parameter value
368
+
369
+ Error Details: Invalid argument: ApiKey
370
+ Completed 500 Internal Server Error in 208ms
371
+
372
+ RGigya::ErrorCodeReturned (returned Error code 400006: Invalid parameter value):
373
+ app/controllers/welcome_controller.rb:12:in `index'
374
+
375
+
376
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
377
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
378
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
379
+ Connecting to database specified by database.yml
380
+
381
+
382
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:49:59 -0400
383
+ Processing by WelcomeController#index as HTML
384
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
385
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
386
+ Completed 200 OK in 256ms (Views: 17.2ms | ActiveRecord: 0.0ms)
387
+
388
+
389
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:49:59 -0400
390
+ Served asset /jquery.js - 304 Not Modified (3ms)
391
+
392
+
393
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:49:59 -0400
394
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
395
+
396
+
397
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:49:59 -0400
398
+ Served asset /application.css - 304 Not Modified (1ms)
399
+
400
+
401
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:49:59 -0400
402
+ Served asset /application.js - 304 Not Modified (4ms)
403
+
404
+
405
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:50:22 -0400
406
+ Processing by WelcomeController#index as HTML
407
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
408
+ {"UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"rf/P1p+unVLdyeDxIIrEIXsjZzM=", "timestamp"=>"2013-04-15 18:50:22", "UIDSignature"=>"0WHAj+p5HjC4KRj3bXhcRSinsX0=", "signatureTimestamp"=>"1366051822", "isSiteUser"=>true, "isConnected"=>true, "isLoggedIn"=>true, "isTempUser"=>false, "loginProvider"=>"facebook", "loginProviderUID"=>"100002922034023", "isSiteUID"=>false, "identities"=>[{"provider"=>"facebook", "providerUID"=>"100002922034023", "isLoginIdentity"=>true, "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "allowsLogin"=>true, "isExpiredSession"=>false, "missingPermissions"=>"Actions, Status", "lastLoginTime"=>1366051132, "lastUpdated"=>"2013-04-15T18:38:52.818Z", "lastUpdatedTimestamp"=>1366051132818, "oldestDataUpdated"=>"2013-04-15T18:38:52.076Z", "oldestDataUpdatedTimestamp"=>1366051132076}], "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "capabilities"=>"Login, Friends, Places", "providers"=>"facebook", "statusCode"=>200, "errorCode"=>0, "statusReason"=>"OK", "callId"=>"5b78c33c38844e56b8a90668bee0fe99", "oldestDataUpdatedTimestamp"=>1366051132076, "oldestDataAge"=>690}
409
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
410
+ Completed 200 OK in 211ms (Views: 3.4ms | ActiveRecord: 0.0ms)
411
+
412
+
413
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:50:22 -0400
414
+ Served asset /application.css - 304 Not Modified (0ms)
415
+
416
+
417
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:50:22 -0400
418
+ Served asset /jquery.js - 304 Not Modified (0ms)
419
+
420
+
421
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:50:22 -0400
422
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
423
+
424
+
425
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:50:22 -0400
426
+ Served asset /application.js - 304 Not Modified (0ms)
427
+
428
+
429
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:51:12 -0400
430
+ Processing by WelcomeController#index as HTML
431
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
432
+ {"UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"eW0zT29GSyDW33fOabL71RIL3Mk=", "timestamp"=>"2013-04-15 18:51:12", "UIDSignature"=>"/bSpg5hwaxsnFUGRhXpWp3qCEmc=", "signatureTimestamp"=>"1366051872", "isSiteUser"=>true, "isConnected"=>true, "isLoggedIn"=>true, "isTempUser"=>false, "loginProvider"=>"facebook", "loginProviderUID"=>"100002922034023", "isSiteUID"=>false, "identities"=>[{"provider"=>"facebook", "providerUID"=>"100002922034023", "isLoginIdentity"=>true, "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "allowsLogin"=>true, "isExpiredSession"=>false, "missingPermissions"=>"Actions, Status", "lastLoginTime"=>1366051132, "lastUpdated"=>"2013-04-15T18:38:52.818Z", "lastUpdatedTimestamp"=>1366051132818, "oldestDataUpdated"=>"2013-04-15T18:38:52.076Z", "oldestDataUpdatedTimestamp"=>1366051132076}], "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "capabilities"=>"Login, Friends, Places", "providers"=>"facebook", "statusCode"=>200, "errorCode"=>0, "statusReason"=>"OK", "callId"=>"b5718b79b94a4663a04d6dc02cbe8f78", "oldestDataUpdatedTimestamp"=>1366051132076, "oldestDataAge"=>740}
433
+ Rendered welcome/index.html.erb within layouts/application (0.5ms)
434
+ Completed 200 OK in 218ms (Views: 3.4ms | ActiveRecord: 0.0ms)
435
+
436
+
437
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:51:12 -0400
438
+ Served asset /application.css - 304 Not Modified (0ms)
439
+
440
+
441
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:12 -0400
442
+ Served asset /jquery.js - 304 Not Modified (0ms)
443
+
444
+
445
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:12 -0400
446
+ Served asset /application.js - 304 Not Modified (0ms)
447
+
448
+
449
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:12 -0400
450
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
451
+
452
+
453
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:51:41 -0400
454
+ Processing by WelcomeController#index as HTML
455
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
456
+ {"UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"Cl4DeHCY2ynYDif/JRmfc+mZIcI=", "timestamp"=>"2013-04-15 18:51:42", "UIDSignature"=>"I3mbEp7Rqj5P7VFHfp4VfRfCc3o=", "signatureTimestamp"=>"1366051902", "isSiteUser"=>true, "isConnected"=>true, "isLoggedIn"=>true, "isTempUser"=>false, "loginProvider"=>"facebook", "loginProviderUID"=>"100002922034023", "isSiteUID"=>false, "identities"=>[{"provider"=>"facebook", "providerUID"=>"100002922034023", "isLoginIdentity"=>true, "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "allowsLogin"=>true, "isExpiredSession"=>false, "missingPermissions"=>"Actions, Status", "lastLoginTime"=>1366051132, "lastUpdated"=>"2013-04-15T18:38:52.818Z", "lastUpdatedTimestamp"=>1366051132818, "oldestDataUpdated"=>"2013-04-15T18:38:52.076Z", "oldestDataUpdatedTimestamp"=>1366051132076}], "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "capabilities"=>"Login, Friends, Places", "providers"=>"facebook", "statusCode"=>200, "errorCode"=>0, "statusReason"=>"OK", "callId"=>"043f92d2102b44ada090cd87ad10fff8", "oldestDataUpdatedTimestamp"=>1366051132076, "oldestDataAge"=>770}
457
+ Rendered welcome/index.html.erb within layouts/application (0.5ms)
458
+ Completed 200 OK in 568ms (Views: 3.5ms | ActiveRecord: 0.0ms)
459
+
460
+
461
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:51:42 -0400
462
+ Served asset /application.css - 304 Not Modified (0ms)
463
+
464
+
465
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:42 -0400
466
+ Served asset /jquery.js - 304 Not Modified (0ms)
467
+
468
+
469
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:42 -0400
470
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
471
+
472
+
473
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:42 -0400
474
+ Served asset /application.js - 304 Not Modified (0ms)
475
+
476
+
477
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:51:50 -0400
478
+ Processing by WelcomeController#index as HTML
479
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
480
+ {"UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"9+xd1yMtMUPAk47IhEpJy/foGOs=", "timestamp"=>"2013-04-15 18:51:50", "UIDSignature"=>"PniqKdQ3SD5sxZl/ybpFpwRnmKA=", "signatureTimestamp"=>"1366051910", "isSiteUser"=>true, "isConnected"=>true, "isLoggedIn"=>true, "isTempUser"=>false, "loginProvider"=>"facebook", "loginProviderUID"=>"100002922034023", "isSiteUID"=>false, "identities"=>[{"provider"=>"facebook", "providerUID"=>"100002922034023", "isLoginIdentity"=>true, "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "allowsLogin"=>true, "isExpiredSession"=>false, "missingPermissions"=>"Actions, Status", "lastLoginTime"=>1366051132, "lastUpdated"=>"2013-04-15T18:38:52.818Z", "lastUpdatedTimestamp"=>1366051132818, "oldestDataUpdated"=>"2013-04-15T18:38:52.076Z", "oldestDataUpdatedTimestamp"=>1366051132076}], "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "capabilities"=>"Login, Friends, Places", "providers"=>"facebook", "statusCode"=>200, "errorCode"=>0, "statusReason"=>"OK", "callId"=>"4c3a2aa6d002486e9c16d6a0749e1847", "oldestDataUpdatedTimestamp"=>1366051132076, "oldestDataAge"=>777}
481
+ Rendered welcome/index.html.erb within layouts/application (0.4ms)
482
+ Completed 200 OK in 225ms (Views: 3.4ms | ActiveRecord: 0.0ms)
483
+
484
+
485
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:51:50 -0400
486
+ Served asset /application.css - 304 Not Modified (0ms)
487
+
488
+
489
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:50 -0400
490
+ Served asset /jquery.js - 304 Not Modified (0ms)
491
+
492
+
493
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:50 -0400
494
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
495
+
496
+
497
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:51:50 -0400
498
+ Served asset /application.js - 304 Not Modified (0ms)
499
+
500
+
501
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:52:05 -0400
502
+ Processing by WelcomeController#index as HTML
503
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
504
+ {"UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"bPYE0NrdZxXxJvwY5onxEEGYCrQ=", "timestamp"=>"2013-04-15 18:52:05", "UIDSignature"=>"KTVpJOEN96Jm2B3O/2LZz1hZYiE=", "signatureTimestamp"=>"1366051925", "isSiteUser"=>true, "isConnected"=>true, "isLoggedIn"=>true, "isTempUser"=>false, "loginProvider"=>"facebook", "loginProviderUID"=>"100002922034023", "isSiteUID"=>false, "identities"=>[{"provider"=>"facebook", "providerUID"=>"100002922034023", "isLoginIdentity"=>true, "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "allowsLogin"=>true, "isExpiredSession"=>false, "missingPermissions"=>"Actions, Status", "lastLoginTime"=>1366051132, "lastUpdated"=>"2013-04-15T18:38:52.818Z", "lastUpdatedTimestamp"=>1366051132818, "oldestDataUpdated"=>"2013-04-15T18:38:52.076Z", "oldestDataUpdatedTimestamp"=>1366051132076}], "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "capabilities"=>"Login, Friends, Places", "providers"=>"facebook", "statusCode"=>200, "errorCode"=>0, "statusReason"=>"OK", "callId"=>"99f55a98706c493b9049f42c5ac11743", "oldestDataUpdatedTimestamp"=>1366051132076, "oldestDataAge"=>793}
505
+ Rendered welcome/index.html.erb within layouts/application (0.4ms)
506
+ Compiled application.css (0ms) (pid 16138)
507
+ Completed 200 OK in 246ms (Views: 9.2ms | ActiveRecord: 0.0ms)
508
+
509
+
510
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:52:05 -0400
511
+ Served asset /jquery.js - 304 Not Modified (0ms)
512
+
513
+
514
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:52:05 -0400
515
+ Served asset /application.css - 200 OK (1ms)
516
+
517
+
518
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:52:05 -0400
519
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
520
+
521
+
522
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:52:05 -0400
523
+ Served asset /application.js - 304 Not Modified (0ms)
524
+
525
+
526
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&timestamp=2013-04-15%2018%3A38%3A52&UIDSignature=wDC3q9nKvzTKhpen3V3xpCNv4ts%3D&signatureTimestamp=1366051132&loginProviderUID=100002922034023&isSiteUID=false&signature=VsE3dcp%2F4F31g1ooEi9lQiYKaVY%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 14:52:18 -0400
527
+ Processing by WelcomeController#index as HTML
528
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "timestamp"=>"2013-04-15 18:38:52", "UIDSignature"=>"wDC3q9nKvzTKhpen3V3xpCNv4ts=", "signatureTimestamp"=>"1366051132", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"VsE3dcp/4F31g1ooEi9lQiYKaVY=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
529
+ {"UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"HNl4YNsVBRSL3e3B3AJFPx3C0Kc=", "timestamp"=>"2013-04-15 18:52:18", "UIDSignature"=>"pVlpoclZJ7k6qXVWAWje+l06UBk=", "signatureTimestamp"=>"1366051938", "isSiteUser"=>true, "isConnected"=>true, "isLoggedIn"=>true, "isTempUser"=>false, "loginProvider"=>"facebook", "loginProviderUID"=>"100002922034023", "isSiteUID"=>false, "identities"=>[{"provider"=>"facebook", "providerUID"=>"100002922034023", "isLoginIdentity"=>true, "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "allowsLogin"=>true, "isExpiredSession"=>false, "missingPermissions"=>"Actions, Status", "lastLoginTime"=>1366051132, "lastUpdated"=>"2013-04-15T18:38:52.818Z", "lastUpdatedTimestamp"=>1366051132818, "oldestDataUpdated"=>"2013-04-15T18:38:52.076Z", "oldestDataUpdatedTimestamp"=>1366051132076}], "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "firstName"=>"Fred", "lastName"=>"Guy", "gender"=>"m", "age"=>"33", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "email"=>"fbt@fishingmaster.com", "city"=>"Orlando, Florida", "profileURL"=>"http://www.facebook.com/fred.guy.79", "proxiedEmail"=>"", "capabilities"=>"Login, Friends, Places", "providers"=>"facebook", "statusCode"=>200, "errorCode"=>0, "statusReason"=>"OK", "callId"=>"38a636e283fe4924876163ac6bff0383", "oldestDataUpdatedTimestamp"=>1366051132076, "oldestDataAge"=>806}
530
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
531
+ Compiled application.css (0ms) (pid 16138)
532
+ Completed 200 OK in 219ms (Views: 9.8ms | ActiveRecord: 0.0ms)
533
+
534
+
535
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 14:52:18 -0400
536
+ Served asset /jquery.js - 304 Not Modified (0ms)
537
+
538
+
539
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 14:52:18 -0400
540
+ Served asset /application.css - 200 OK (2ms)
541
+
542
+
543
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 14:52:18 -0400
544
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
545
+
546
+
547
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 14:52:18 -0400
548
+ Served asset /application.js - 304 Not Modified (0ms)
549
+ Connecting to database specified by database.yml
550
+
551
+
552
+ Started GET "/" for 127.0.0.1 at 2013-04-15 15:00:34 -0400
553
+ Processing by WelcomeController#index as HTML
554
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
555
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
556
+
557
+
558
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 15:00:34 -0400
559
+ Served asset /application.css - 304 Not Modified (4ms)
560
+
561
+
562
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 15:00:34 -0400
563
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
564
+
565
+
566
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 15:00:34 -0400
567
+ Served asset /jquery.js - 304 Not Modified (1ms)
568
+
569
+
570
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 15:00:34 -0400
571
+ Served asset /application.js - 304 Not Modified (3ms)
572
+
573
+
574
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=H4gCTC7omdkyVAGV6WZMf19RacI%3D&timestamp=2013-04-15%2019%3A00%3A36&UIDSignature=X1JWkpq%2B%2FZun2fOd32I8jsb9FVM%3D&signatureTimestamp=1366052436&loginProviderUID=100002922034023&isSiteUID=false&signature=H4gCTC7omdkyVAGV6WZMf19RacI%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 15:00:38 -0400
575
+ Processing by WelcomeController#index as HTML
576
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "timestamp"=>"2013-04-15 19:00:36", "UIDSignature"=>"X1JWkpq+/Zun2fOd32I8jsb9FVM=", "signatureTimestamp"=>"1366052436", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
577
+ Completed 500 Internal Server Error in 591ms
578
+
579
+ NameError (uninitialized constant RGigya::BadParamsOrMethodNames):
580
+ app/controllers/welcome_controller.rb:16:in `index'
581
+
582
+
583
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
584
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
585
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms)
586
+
587
+
588
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=H4gCTC7omdkyVAGV6WZMf19RacI%3D&timestamp=2013-04-15%2019%3A00%3A36&UIDSignature=X1JWkpq%2B%2FZun2fOd32I8jsb9FVM%3D&signatureTimestamp=1366052436&loginProviderUID=100002922034023&isSiteUID=false&signature=H4gCTC7omdkyVAGV6WZMf19RacI%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 15:01:27 -0400
589
+ Processing by WelcomeController#index as HTML
590
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "timestamp"=>"2013-04-15 19:00:36", "UIDSignature"=>"X1JWkpq+/Zun2fOd32I8jsb9FVM=", "signatureTimestamp"=>"1366052436", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
591
+ Completed 500 Internal Server Error in 171ms
592
+
593
+ NameError (uninitialized constant RGigya::BadParamsOrMethodNames):
594
+ app/controllers/welcome_controller.rb:16:in `index'
595
+
596
+
597
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
598
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
599
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
600
+ Connecting to database specified by database.yml
601
+
602
+
603
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=H4gCTC7omdkyVAGV6WZMf19RacI%3D&timestamp=2013-04-15%2019%3A00%3A36&UIDSignature=X1JWkpq%2B%2FZun2fOd32I8jsb9FVM%3D&signatureTimestamp=1366052436&loginProviderUID=100002922034023&isSiteUID=false&signature=H4gCTC7omdkyVAGV6WZMf19RacI%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 15:02:14 -0400
604
+ Processing by WelcomeController#index as HTML
605
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "timestamp"=>"2013-04-15 19:00:36", "UIDSignature"=>"X1JWkpq+/Zun2fOd32I8jsb9FVM=", "signatureTimestamp"=>"1366052436", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
606
+ Completed 500 Internal Server Error in 612ms
607
+
608
+ RGigya::BadParamsOrMethodName (RGigya::BadParamsOrMethodName):
609
+ app/controllers/welcome_controller.rb:16:in `index'
610
+
611
+
612
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
613
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
614
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
615
+ Connecting to database specified by database.yml
616
+
617
+
618
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=H4gCTC7omdkyVAGV6WZMf19RacI%3D&timestamp=2013-04-15%2019%3A00%3A36&UIDSignature=X1JWkpq%2B%2FZun2fOd32I8jsb9FVM%3D&signatureTimestamp=1366052436&loginProviderUID=100002922034023&isSiteUID=false&signature=H4gCTC7omdkyVAGV6WZMf19RacI%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 15:03:00 -0400
619
+ Processing by WelcomeController#index as HTML
620
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "timestamp"=>"2013-04-15 19:00:36", "UIDSignature"=>"X1JWkpq+/Zun2fOd32I8jsb9FVM=", "signatureTimestamp"=>"1366052436", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
621
+ Completed 500 Internal Server Error in 184ms
622
+
623
+ RGigya::BadParamsOrMethodName (Missing required parameter):
624
+ app/controllers/welcome_controller.rb:16:in `index'
625
+
626
+
627
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
628
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
629
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.5ms)
630
+ Connecting to database specified by database.yml
631
+
632
+
633
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=H4gCTC7omdkyVAGV6WZMf19RacI%3D&timestamp=2013-04-15%2019%3A00%3A36&UIDSignature=X1JWkpq%2B%2FZun2fOd32I8jsb9FVM%3D&signatureTimestamp=1366052436&loginProviderUID=100002922034023&isSiteUID=false&signature=H4gCTC7omdkyVAGV6WZMf19RacI%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 15:03:48 -0400
634
+ Processing by WelcomeController#index as HTML
635
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "timestamp"=>"2013-04-15 19:00:36", "UIDSignature"=>"X1JWkpq+/Zun2fOd32I8jsb9FVM=", "signatureTimestamp"=>"1366052436", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
636
+ Completed 500 Internal Server Error in 555ms
637
+
638
+ RGigya::BadParamsOrMethodName (Missing required parameter - Missing required parameter: ApiKey):
639
+ app/controllers/welcome_controller.rb:16:in `index'
640
+
641
+
642
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
643
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
644
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
645
+ Connecting to database specified by database.yml
646
+
647
+
648
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=H4gCTC7omdkyVAGV6WZMf19RacI%3D&timestamp=2013-04-15%2019%3A00%3A36&UIDSignature=X1JWkpq%2B%2FZun2fOd32I8jsb9FVM%3D&signatureTimestamp=1366052436&loginProviderUID=100002922034023&isSiteUID=false&signature=H4gCTC7omdkyVAGV6WZMf19RacI%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 15:04:24 -0400
649
+ Processing by WelcomeController#index as HTML
650
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "timestamp"=>"2013-04-15 19:00:36", "UIDSignature"=>"X1JWkpq+/Zun2fOd32I8jsb9FVM=", "signatureTimestamp"=>"1366052436", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"H4gCTC7omdkyVAGV6WZMf19RacI=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
651
+ Completed 500 Internal Server Error in 196ms
652
+
653
+ RGigya::BadParamsOrMethodName (Missing required parameter: ApiKey):
654
+ app/controllers/welcome_controller.rb:16:in `index'
655
+
656
+
657
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
658
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
659
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
660
+ Connecting to database specified by database.yml
661
+
662
+
663
+ Started GET "/welcome.html" for 127.0.0.1 at 2013-04-15 16:41:42 -0400
664
+ Processing by WelcomeController#index as HTML
665
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
666
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
667
+
668
+
669
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:41:42 -0400
670
+ Served asset /application.css - 304 Not Modified (4ms)
671
+
672
+
673
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:41:42 -0400
674
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
675
+
676
+
677
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:41:42 -0400
678
+ Served asset /application.js - 304 Not Modified (6ms)
679
+
680
+
681
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:41:42 -0400
682
+ Served asset /jquery.js - 304 Not Modified (2ms)
683
+
684
+
685
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:41:45 -0400
686
+ Processing by WelcomeController#index as HTML
687
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
688
+ Completed 500 Internal Server Error in 638ms
689
+
690
+ RGigya::BadParamsOrMethodName (Missing required parameter: ApiKey):
691
+ app/controllers/welcome_controller.rb:16:in `index'
692
+
693
+
694
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
695
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
696
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms)
697
+ Connecting to database specified by database.yml
698
+
699
+
700
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:42:44 -0400
701
+ Processing by WelcomeController#index as HTML
702
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
703
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
704
+ Completed 200 OK in 572ms (Views: 17.2ms | ActiveRecord: 0.0ms)
705
+
706
+
707
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:42:45 -0400
708
+ Served asset /jquery.js - 304 Not Modified (3ms)
709
+
710
+
711
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:42:45 -0400
712
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
713
+
714
+
715
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:42:45 -0400
716
+ Served asset /application.css - 304 Not Modified (2ms)
717
+
718
+
719
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:42:45 -0400
720
+ Served asset /application.js - 304 Not Modified (3ms)
721
+
722
+
723
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:43:32 -0400
724
+ Processing by WelcomeController#index as HTML
725
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
726
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
727
+ Completed 200 OK in 201ms (Views: 3.0ms | ActiveRecord: 0.0ms)
728
+
729
+
730
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:43:32 -0400
731
+ Served asset /application.css - 304 Not Modified (0ms)
732
+
733
+
734
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:43:32 -0400
735
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
736
+
737
+
738
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:43:32 -0400
739
+ Served asset /application.js - 304 Not Modified (0ms)
740
+
741
+
742
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:43:32 -0400
743
+ Served asset /jquery.js - 304 Not Modified (0ms)
744
+
745
+
746
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:44:01 -0400
747
+ Processing by WelcomeController#index as HTML
748
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
749
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
750
+ Completed 200 OK in 1118ms (Views: 2.8ms | ActiveRecord: 0.0ms)
751
+
752
+
753
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:02 -0400
754
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
755
+
756
+
757
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:44:02 -0400
758
+ Served asset /application.css - 304 Not Modified (0ms)
759
+
760
+
761
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:02 -0400
762
+ Served asset /application.js - 304 Not Modified (0ms)
763
+
764
+
765
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:02 -0400
766
+ Served asset /jquery.js - 304 Not Modified (0ms)
767
+ Connecting to database specified by database.yml
768
+
769
+
770
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:44:29 -0400
771
+ Processing by WelcomeController#index as HTML
772
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
773
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
774
+ Completed 200 OK in 222ms (Views: 32.4ms | ActiveRecord: 0.0ms)
775
+
776
+
777
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:30 -0400
778
+ Served asset /jquery.js - 304 Not Modified (3ms)
779
+
780
+
781
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:30 -0400
782
+ Served asset /application.js - 304 Not Modified (3ms)
783
+
784
+
785
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:30 -0400
786
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
787
+
788
+
789
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:44:30 -0400
790
+ Served asset /application.css - 304 Not Modified (2ms)
791
+ Connecting to database specified by database.yml
792
+
793
+
794
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:44:51 -0400
795
+ Processing by WelcomeController#index as HTML
796
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
797
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
798
+ Completed 200 OK in 307ms (Views: 31.9ms | ActiveRecord: 0.0ms)
799
+
800
+
801
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:44:51 -0400
802
+ Served asset /application.css - 304 Not Modified (2ms)
803
+
804
+
805
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:51 -0400
806
+ Served asset /jquery.js - 304 Not Modified (3ms)
807
+
808
+
809
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:51 -0400
810
+ Served asset /application.js - 304 Not Modified (3ms)
811
+
812
+
813
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:44:51 -0400
814
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
815
+ Connecting to database specified by database.yml
816
+
817
+
818
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:47:22 -0400
819
+ Processing by WelcomeController#index as HTML
820
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
821
+ ddddddddddddddd has key
822
+ Rendered welcome/index.html.erb within layouts/application (16.6ms)
823
+ Completed 200 OK in 259ms (Views: 32.5ms | ActiveRecord: 0.0ms)
824
+
825
+
826
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:47:23 -0400
827
+ Served asset /application.css - 304 Not Modified (3ms)
828
+
829
+
830
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:47:23 -0400
831
+ Served asset /jquery.js - 304 Not Modified (2ms)
832
+
833
+
834
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:47:23 -0400
835
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
836
+
837
+
838
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:47:23 -0400
839
+ Served asset /application.js - 304 Not Modified (5ms)
840
+ Connecting to database specified by database.yml
841
+
842
+
843
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:49:48 -0400
844
+ Processing by WelcomeController#index as HTML
845
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
846
+ Completed 500 Internal Server Error in 0ms
847
+
848
+ NoMethodError (undefined method `socialize_getUserInfo' for RGigya:Class):
849
+ app/controllers/welcome_controller.rb:16:in `index'
850
+
851
+
852
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
853
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
854
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
855
+ Connecting to database specified by database.yml
856
+
857
+
858
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:50:19 -0400
859
+ Processing by WelcomeController#index as HTML
860
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
861
+ Completed 500 Internal Server Error in 0ms
862
+
863
+ NoMethodError (undefined method `socialize_getUserInfo' for RGigya:Class):
864
+ app/controllers/welcome_controller.rb:16:in `index'
865
+
866
+
867
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
868
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
869
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
870
+ Connecting to database specified by database.yml
871
+
872
+
873
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:50:42 -0400
874
+ Processing by WelcomeController#index as HTML
875
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
876
+ Completed 500 Internal Server Error in 0ms
877
+
878
+ NoMethodError (undefined method `socialize_getUserInfo' for RGigya:Class):
879
+ app/controllers/welcome_controller.rb:16:in `index'
880
+
881
+
882
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
883
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
884
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
885
+ Connecting to database specified by database.yml
886
+
887
+
888
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:51:36 -0400
889
+ Processing by WelcomeController#index as HTML
890
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
891
+ wwwwwwwwwwwwww
892
+ socialize.getUserInfo
893
+ socialize
894
+ Completed 500 Internal Server Error in 0ms
895
+
896
+ NoMethodError (undefined method `socialize_getUserInfo' for RGigya:Class):
897
+ app/controllers/welcome_controller.rb:16:in `index'
898
+
899
+
900
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
901
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
902
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
903
+
904
+
905
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:51:37 -0400
906
+ Processing by WelcomeController#index as HTML
907
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
908
+ wwwwwwwwwwwwww
909
+ socialize.getUserInfo
910
+ socialize
911
+ Completed 500 Internal Server Error in 0ms
912
+
913
+ NoMethodError (undefined method `socialize_getUserInfo' for RGigya:Class):
914
+ app/controllers/welcome_controller.rb:16:in `index'
915
+
916
+
917
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
918
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
919
+ Rendered /Users/scottsampson/.rvm/gems/ruby-1.9.3-p125@rgigya/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
920
+ Connecting to database specified by database.yml
921
+
922
+
923
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=mBUP4adFdaB3gZEBJofTuZils60%3D&timestamp=2013-04-15%2020%3A41%3A44&UIDSignature=kwtIVTZqZ3rRlZmL8h5kEjNSE%2FQ%3D&signatureTimestamp=1366058504&loginProviderUID=100002922034023&isSiteUID=false&signature=mBUP4adFdaB3gZEBJofTuZils60%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-15 16:52:40 -0400
924
+ Processing by WelcomeController#index as HTML
925
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"mBUP4adFdaB3gZEBJofTuZils60=", "timestamp"=>"2013-04-15 20:41:44", "UIDSignature"=>"kwtIVTZqZ3rRlZmL8h5kEjNSE/Q=", "signatureTimestamp"=>"1366058504", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"mBUP4adFdaB3gZEBJofTuZils60=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
926
+ wwwwwwwwwwwwww
927
+ socialize.getUserInfo
928
+ socialize
929
+ iiiiiiiiiiiiiiiiiii
930
+ Rendered welcome/index.html.erb within layouts/application (16.4ms)
931
+ Completed 200 OK in 261ms (Views: 32.0ms | ActiveRecord: 0.0ms)
932
+
933
+
934
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-15 16:52:40 -0400
935
+ Served asset /application.css - 304 Not Modified (1ms)
936
+
937
+
938
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-15 16:52:40 -0400
939
+ Served asset /jquery.js - 304 Not Modified (2ms)
940
+
941
+
942
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-15 16:52:41 -0400
943
+ Served asset /application.js - 304 Not Modified (4ms)
944
+
945
+
946
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-15 16:52:41 -0400
947
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
948
+ Connecting to database specified by database.yml
949
+
950
+
951
+ Started GET "/" for 127.0.0.1 at 2013-04-16 11:04:51 -0400
952
+ Processing by WelcomeController#index as HTML
953
+ Rendered welcome/index.html.erb within layouts/application (2.2ms)
954
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
955
+
956
+
957
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:04:51 -0400
958
+ Served asset /application.css - 304 Not Modified (1ms)
959
+
960
+
961
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:04:51 -0400
962
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
963
+
964
+
965
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:04:51 -0400
966
+ Served asset /jquery.js - 304 Not Modified (1ms)
967
+
968
+
969
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:04:51 -0400
970
+ Served asset /application.js - 304 Not Modified (3ms)
971
+ Connecting to database specified by database.yml
972
+
973
+
974
+ Started GET "/" for 127.0.0.1 at 2013-04-16 11:06:00 -0400
975
+ Processing by WelcomeController#index as HTML
976
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
977
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
978
+
979
+
980
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:06:00 -0400
981
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
982
+
983
+
984
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:06:00 -0400
985
+ Served asset /jquery.js - 304 Not Modified (2ms)
986
+
987
+
988
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:06:00 -0400
989
+ Served asset /application.css - 304 Not Modified (1ms)
990
+
991
+
992
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:06:00 -0400
993
+ Served asset /application.js - 304 Not Modified (4ms)
994
+ Connecting to database specified by database.yml
995
+
996
+
997
+ Started GET "/" for 127.0.0.1 at 2013-04-16 11:06:25 -0400
998
+ Processing by WelcomeController#index as HTML
999
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
1000
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
1001
+
1002
+
1003
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:06:25 -0400
1004
+ Served asset /application.css - 304 Not Modified (3ms)
1005
+
1006
+
1007
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:06:25 -0400
1008
+ Served asset /jquery.js - 304 Not Modified (2ms)
1009
+
1010
+
1011
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:06:25 -0400
1012
+ Served asset /application.js - 304 Not Modified (5ms)
1013
+
1014
+
1015
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:06:25 -0400
1016
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1017
+ Connecting to database specified by database.yml
1018
+
1019
+
1020
+ Started GET "/" for 127.0.0.1 at 2013-04-16 11:07:48 -0400
1021
+ Processing by WelcomeController#index as HTML
1022
+ Rendered welcome/index.html.erb within layouts/application (1.5ms)
1023
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
1024
+
1025
+
1026
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:07:48 -0400
1027
+ Served asset /application.css - 304 Not Modified (3ms)
1028
+
1029
+
1030
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:07:48 -0400
1031
+ Served asset /jquery.js - 304 Not Modified (2ms)
1032
+
1033
+
1034
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:07:48 -0400
1035
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1036
+
1037
+
1038
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:07:48 -0400
1039
+ Served asset /application.js - 304 Not Modified (3ms)
1040
+
1041
+
1042
+ Started GET "/" for 127.0.0.1 at 2013-04-16 11:09:01 -0400
1043
+ Processing by WelcomeController#index as HTML
1044
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
1045
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1046
+
1047
+
1048
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:09:01 -0400
1049
+ Served asset /application.js - 304 Not Modified (0ms)
1050
+
1051
+
1052
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:09:01 -0400
1053
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1054
+
1055
+
1056
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:09:01 -0400
1057
+ Served asset /application.css - 304 Not Modified (0ms)
1058
+
1059
+
1060
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:09:01 -0400
1061
+ Served asset /jquery.js - 304 Not Modified (0ms)
1062
+
1063
+
1064
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=%2FsYL4ix9P%2BdaoiPo0%2B9SzcvMRgg%3D&timestamp=2013-04-16%2015%3A10%3A16&UIDSignature=80w4mJkZMYx2kRhKwRD49cmBUeQ%3D&signatureTimestamp=1366125016&loginProviderUID=100002922034023&isSiteUID=false&signature=%2FsYL4ix9P%2BdaoiPo0%2B9SzcvMRgg%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-16 11:10:16 -0400
1065
+ Processing by WelcomeController#index as HTML
1066
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"/sYL4ix9P+daoiPo0+9SzcvMRgg=", "timestamp"=>"2013-04-16 15:10:16", "UIDSignature"=>"80w4mJkZMYx2kRhKwRD49cmBUeQ=", "signatureTimestamp"=>"1366125016", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"/sYL4ix9P+daoiPo0+9SzcvMRgg=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
1067
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
1068
+ Completed 200 OK in 583ms (Views: 20.5ms | ActiveRecord: 0.0ms)
1069
+
1070
+
1071
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:10:18 -0400
1072
+ Served asset /application.css - 304 Not Modified (0ms)
1073
+
1074
+
1075
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:18 -0400
1076
+ Served asset /jquery.js - 304 Not Modified (0ms)
1077
+
1078
+
1079
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:18 -0400
1080
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1081
+
1082
+
1083
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:18 -0400
1084
+ Served asset /application.js - 304 Not Modified (0ms)
1085
+ Connecting to database specified by database.yml
1086
+
1087
+
1088
+ Started GET "/" for 127.0.0.1 at 2013-04-16 11:10:54 -0400
1089
+ Processing by WelcomeController#index as HTML
1090
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
1091
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
1092
+
1093
+
1094
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:54 -0400
1095
+ Served asset /jquery.js - 304 Not Modified (3ms)
1096
+
1097
+
1098
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:54 -0400
1099
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1100
+
1101
+
1102
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:10:54 -0400
1103
+ Served asset /application.css - 304 Not Modified (1ms)
1104
+
1105
+
1106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:54 -0400
1107
+ Served asset /application.js - 304 Not Modified (4ms)
1108
+
1109
+
1110
+ Started GET "/welcome.html?provider=facebook&UID=_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I%3D&UIDSig=1jGSwSUcGHtrAs7jrYjjrNZls%2Fc%3D&timestamp=2013-04-16%2015%3A10%3A56&UIDSignature=7UZBKcRm3LAUoH43zqaq%2B8Nd%2FLc%3D&signatureTimestamp=1366125056&loginProviderUID=100002922034023&isSiteUID=false&signature=1jGSwSUcGHtrAs7jrYjjrNZls%2Fc%3D&nickname=Fred%20Guy&photoURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dlarge&thumbnailURL=http%3A%2F%2Fgraph.facebook.com%2F100002922034023%2Fpicture%3Ftype%3Dsquare&birthDay=16&birthMonth=5&birthYear=1979&gender=m&email=fbt%40fishingmaster.com&proxiedEmail=&country=&state=&city=Orlando%2C%20Florida&zip=&firstName=Fred&lastName=Guy&profileURL=http%3A%2F%2Fwww.facebook.com%2Ffred.guy.79&isLoggedIn=true&isConnected=true&isSiteUser=true&loginProvider=facebook&isTempUser=false" for 127.0.0.1 at 2013-04-16 11:10:56 -0400
1111
+ Processing by WelcomeController#index as HTML
1112
+ Parameters: {"provider"=>"facebook", "UID"=>"_guid_Fl0PNcNBhiBWbQxbhAJHHXqFsI22kJulKl43kwQFO-I=", "UIDSig"=>"1jGSwSUcGHtrAs7jrYjjrNZls/c=", "timestamp"=>"2013-04-16 15:10:56", "UIDSignature"=>"7UZBKcRm3LAUoH43zqaq+8Nd/Lc=", "signatureTimestamp"=>"1366125056", "loginProviderUID"=>"100002922034023", "isSiteUID"=>"false", "signature"=>"1jGSwSUcGHtrAs7jrYjjrNZls/c=", "nickname"=>"Fred Guy", "photoURL"=>"http://graph.facebook.com/100002922034023/picture?type=large", "thumbnailURL"=>"http://graph.facebook.com/100002922034023/picture?type=square", "birthDay"=>"16", "birthMonth"=>"5", "birthYear"=>"1979", "gender"=>"m", "email"=>"fbt@fishingmaster.com", "proxiedEmail"=>"", "country"=>"", "state"=>"", "city"=>"Orlando, Florida", "zip"=>"", "firstName"=>"Fred", "lastName"=>"Guy", "profileURL"=>"http://www.facebook.com/fred.guy.79", "isLoggedIn"=>"true", "isConnected"=>"true", "isSiteUser"=>"true", "loginProvider"=>"facebook", "isTempUser"=>"false"}
1113
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
1114
+ Completed 200 OK in 544ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1115
+
1116
+
1117
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-04-16 11:10:57 -0400
1118
+ Served asset /application.css - 304 Not Modified (0ms)
1119
+
1120
+
1121
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:57 -0400
1122
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1123
+
1124
+
1125
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:57 -0400
1126
+ Served asset /application.js - 304 Not Modified (0ms)
1127
+
1128
+
1129
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-16 11:10:57 -0400
1130
+ Served asset /jquery.js - 304 Not Modified (0ms)