devise-heroku 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +37 -0
  4. data/app/controllers/devise_heroku/sso_controller.rb +8 -0
  5. data/config/initializers/devise-heroku/heroku_sso.rb +25 -0
  6. data/config/routes.rb +6 -0
  7. data/lib/devise-heroku.rb +18 -0
  8. data/lib/devise-heroku/engine.rb +8 -0
  9. data/lib/devise-heroku/version.rb +3 -0
  10. data/lib/tasks/devise-heroku_tasks.rake +4 -0
  11. data/test/devise-heroku_test.rb +8 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +7 -0
  14. data/test/dummy/app/assets/javascripts/home.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  16. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  17. data/test/dummy/app/controllers/application_controller.rb +3 -0
  18. data/test/dummy/app/controllers/home_controller.rb +5 -0
  19. data/test/dummy/app/helpers/application_helper.rb +2 -0
  20. data/test/dummy/app/helpers/home_helper.rb +2 -0
  21. data/test/dummy/app/models/user.rb +18 -0
  22. data/test/dummy/app/views/home/index.html.erb +2 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/config.ru +4 -0
  25. data/test/dummy/config/application.rb +51 -0
  26. data/test/dummy/config/boot.rb +10 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +30 -0
  29. data/test/dummy/config/environments/production.rb +60 -0
  30. data/test/dummy/config/environments/test.rb +39 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/devise.rb +213 -0
  33. data/test/dummy/config/initializers/devise_heroku.rb +5 -0
  34. data/test/dummy/config/initializers/inflections.rb +10 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +7 -0
  37. data/test/dummy/config/initializers/session_store.rb +8 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +10 -0
  39. data/test/dummy/config/locales/devise.en.yml +58 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +63 -0
  42. data/test/dummy/log/development.log +0 -0
  43. data/test/dummy/log/test.log +3109 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +26 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/test/functional/home_controller_test.rb +9 -0
  50. data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
  51. data/test/integration/navigation_test.rb +86 -0
  52. data/test/test_helper.rb +10 -0
  53. metadata +165 -0
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,213 @@
1
+ # Use this hook to configure devise mailer, warden hooks and so forth.
2
+ # Many of these configuration options can be set straight in your model.
3
+ Devise.setup do |config|
4
+ # ==> Mailer Configuration
5
+ # Configure the e-mail address which will be shown in Devise::Mailer,
6
+ # note that it will be overwritten if you use your own mailer class with default "from" parameter.
7
+ config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
8
+
9
+ # Configure the class responsible to send e-mails.
10
+ # config.mailer = "Devise::Mailer"
11
+
12
+ # ==> ORM configuration
13
+ # Load and configure the ORM. Supports :active_record (default) and
14
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
15
+ # available as additional gems.
16
+ require 'devise/orm/active_record'
17
+
18
+ # ==> Configuration for any authentication mechanism
19
+ # Configure which keys are used when authenticating a user. The default is
20
+ # just :email. You can configure it to use [:username, :subdomain], so for
21
+ # authenticating a user, both parameters are required. Remember that those
22
+ # parameters are used only when authenticating and not when retrieving from
23
+ # session. If you need permissions, you should implement that in a before filter.
24
+ # You can also supply a hash where the value is a boolean determining whether
25
+ # or not authentication should be aborted when the value is not present.
26
+ # config.authentication_keys = [ :email ]
27
+
28
+ # Configure parameters from the request object used for authentication. Each entry
29
+ # given should be a request method and it will automatically be passed to the
30
+ # find_for_authentication method and considered in your model lookup. For instance,
31
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
32
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
33
+ # config.request_keys = []
34
+
35
+ # Configure which authentication keys should be case-insensitive.
36
+ # These keys will be downcased upon creating or modifying a user and when used
37
+ # to authenticate or find a user. Default is :email.
38
+ config.case_insensitive_keys = [ :email ]
39
+
40
+ # Configure which authentication keys should have whitespace stripped.
41
+ # These keys will have whitespace before and after removed upon creating or
42
+ # modifying a user and when used to authenticate or find a user. Default is :email.
43
+ config.strip_whitespace_keys = [ :email ]
44
+
45
+ # Tell if authentication through request.params is enabled. True by default.
46
+ # config.params_authenticatable = true
47
+
48
+ # Tell if authentication through HTTP Basic Auth is enabled. False by default.
49
+ # config.http_authenticatable = false
50
+
51
+ # If http headers should be returned for AJAX requests. True by default.
52
+ # config.http_authenticatable_on_xhr = true
53
+
54
+ # The realm used in Http Basic Authentication. "Application" by default.
55
+ # config.http_authentication_realm = "Application"
56
+
57
+ # It will change confirmation, password recovery and other workflows
58
+ # to behave the same regardless if the e-mail provided was right or wrong.
59
+ # Does not affect registerable.
60
+ # config.paranoid = true
61
+
62
+ # ==> Configuration for :database_authenticatable
63
+ # For bcrypt, this is the cost for hashing the password and defaults to 10. If
64
+ # using other encryptors, it sets how many times you want the password re-encrypted.
65
+ #
66
+ # Limiting the stretches to just one in testing will increase the performance of
67
+ # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
68
+ # a value less than 10 in other environments.
69
+ config.stretches = Rails.env.test? ? 1 : 10
70
+
71
+ # Setup a pepper to generate the encrypted password.
72
+ # config.pepper = "c422cebd7c7396b95e39f93e950702819ab61703ec3dd72b71961e6b8a725e147bfd8ffdcfea5fdd2c1f82fe52c4963d5eae25285dad2fd0f9bbb54a26ea1d15"
73
+
74
+ # ==> Configuration for :confirmable
75
+ # A period that the user is allowed to access the website even without
76
+ # confirming his account. For instance, if set to 2.days, the user will be
77
+ # able to access the website for two days without confirming his account,
78
+ # access will be blocked just in the third day. Default is 0.days, meaning
79
+ # the user cannot access the website without confirming his account.
80
+ # config.confirm_within = 2.days
81
+
82
+ # Defines which key will be used when confirming an account
83
+ # config.confirmation_keys = [ :email ]
84
+
85
+ # ==> Configuration for :rememberable
86
+ # The time the user will be remembered without asking for credentials again.
87
+ # config.remember_for = 2.weeks
88
+
89
+ # If true, a valid remember token can be re-used between multiple browsers.
90
+ # config.remember_across_browsers = true
91
+
92
+ # If true, extends the user's remember period when remembered via cookie.
93
+ # config.extend_remember_period = false
94
+
95
+ # If true, uses the password salt as remember token. This should be turned
96
+ # to false if you are not using database authenticatable.
97
+ config.use_salt_as_remember_token = true
98
+
99
+ # Options to be passed to the created cookie. For instance, you can set
100
+ # :secure => true in order to force SSL only cookies.
101
+ # config.cookie_options = {}
102
+
103
+ # ==> Configuration for :validatable
104
+ # Range for password length. Default is 6..128.
105
+ # config.password_length = 6..128
106
+
107
+ # Email regex used to validate email formats. It simply asserts that
108
+ # an one (and only one) @ exists in the given string. This is mainly
109
+ # to give user feedback and not to assert the e-mail validity.
110
+ # config.email_regexp = /\A[^@]+@[^@]+\z/
111
+
112
+ # ==> Configuration for :timeoutable
113
+ # The time you want to timeout the user session without activity. After this
114
+ # time the user will be asked for credentials again. Default is 30 minutes.
115
+ # config.timeout_in = 30.minutes
116
+
117
+ # ==> Configuration for :lockable
118
+ # Defines which strategy will be used to lock an account.
119
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
120
+ # :none = No lock strategy. You should handle locking by yourself.
121
+ # config.lock_strategy = :failed_attempts
122
+
123
+ # Defines which key will be used when locking and unlocking an account
124
+ # config.unlock_keys = [ :email ]
125
+
126
+ # Defines which strategy will be used to unlock an account.
127
+ # :email = Sends an unlock link to the user email
128
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
129
+ # :both = Enables both strategies
130
+ # :none = No unlock strategy. You should handle unlocking by yourself.
131
+ # config.unlock_strategy = :both
132
+
133
+ # Number of authentication tries before locking an account if lock_strategy
134
+ # is failed attempts.
135
+ # config.maximum_attempts = 20
136
+
137
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
138
+ # config.unlock_in = 1.hour
139
+
140
+ # ==> Configuration for :recoverable
141
+ #
142
+ # Defines which key will be used when recovering the password for an account
143
+ # config.reset_password_keys = [ :email ]
144
+
145
+ # Time interval you can reset your password with a reset password key.
146
+ # Don't put a too small interval or your users won't have the time to
147
+ # change their passwords.
148
+ config.reset_password_within = 2.hours
149
+
150
+ # ==> Configuration for :encryptable
151
+ # Allow you to use another encryption algorithm besides bcrypt (default). You can use
152
+ # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
153
+ # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
154
+ # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
155
+ # REST_AUTH_SITE_KEY to pepper)
156
+ # config.encryptor = :sha512
157
+
158
+ # ==> Configuration for :token_authenticatable
159
+ # Defines name of the authentication token params key
160
+ # config.token_authentication_key = :auth_token
161
+
162
+ # If true, authentication through token does not store user in session and needs
163
+ # to be supplied on each request. Useful if you are using the token as API token.
164
+ # config.stateless_token = false
165
+
166
+ # ==> Scopes configuration
167
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
168
+ # "users/sessions/new". It's turned off by default because it's slower if you
169
+ # are using only default views.
170
+ # config.scoped_views = false
171
+
172
+ # Configure the default scope given to Warden. By default it's the first
173
+ # devise role declared in your routes (usually :user).
174
+ # config.default_scope = :user
175
+
176
+ # Configure sign_out behavior.
177
+ # Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
178
+ # The default is true, which means any logout action will sign out all active scopes.
179
+ # config.sign_out_all_scopes = true
180
+
181
+ # ==> Navigation configuration
182
+ # Lists the formats that should be treated as navigational. Formats like
183
+ # :html, should redirect to the sign in page when the user does not have
184
+ # access, but formats like :xml or :json, should return 401.
185
+ #
186
+ # If you have any extra navigational formats, like :iphone or :mobile, you
187
+ # should add them to the navigational formats lists.
188
+ #
189
+ # The :"*/*" and "*/*" formats below is required to match Internet
190
+ # Explorer requests.
191
+ # config.navigational_formats = [:"*/*", "*/*", :html]
192
+
193
+ # The default HTTP method used to sign out a resource. Default is :delete.
194
+ config.sign_out_via = :delete
195
+
196
+ # ==> OmniAuth
197
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
198
+ # up on your models and hooks.
199
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
200
+
201
+ # ==> Warden configuration
202
+ # If you want to use other strategies, that are not supported by Devise, or
203
+ # change the failure app, you can configure them inside the config.warden block.
204
+ #
205
+ # config.warden do |manager|
206
+ # manager.intercept_401 = false
207
+ # manager.default_strategies(:scope => :user).unshift :some_external_strategy
208
+ # end
209
+
210
+ config.warden do |manager|
211
+ manager.default_strategies(:scope => :user).unshift :heroku_sso_authenticable
212
+ end
213
+ end
@@ -0,0 +1,5 @@
1
+ DeviseHeroku.setup do |config|
2
+ config.resource = User
3
+ config.sso_salt = "happy day!"
4
+ config.redirect_path = "/"
5
+ end
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '03076c40736863f03fa4ab05d6b7dc4c15348b10d6d15d3e0e22913b84c8d3731af80d00c1c7f6c6a7ce95e57727dd1cf3ad4e115869c90bc14b218aff9903df'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
@@ -0,0 +1,58 @@
1
+ # Additional translations at https://github.com/plataformatec/devise/wiki/I18n
2
+
3
+ en:
4
+ errors:
5
+ messages:
6
+ expired: "has expired, please request a new one"
7
+ not_found: "not found"
8
+ already_confirmed: "was already confirmed, please try signing in"
9
+ not_locked: "was not locked"
10
+ not_saved:
11
+ one: "1 error prohibited this %{resource} from being saved:"
12
+ other: "%{count} errors prohibited this %{resource} from being saved:"
13
+
14
+ devise:
15
+ failure:
16
+ already_authenticated: 'You are already signed in.'
17
+ unauthenticated: 'You need to sign in or sign up before continuing.'
18
+ unconfirmed: 'You have to confirm your account before continuing.'
19
+ locked: 'Your account is locked.'
20
+ invalid: 'Invalid email or password.'
21
+ invalid_token: 'Invalid authentication token.'
22
+ timeout: 'Your session expired, please sign in again to continue.'
23
+ inactive: 'Your account was not activated yet.'
24
+ sessions:
25
+ signed_in: 'Signed in successfully.'
26
+ signed_out: 'Signed out successfully.'
27
+ passwords:
28
+ send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
29
+ updated: 'Your password was changed successfully. You are now signed in.'
30
+ updated_not_active: 'Your password was changed successfully.'
31
+ send_paranoid_instructions: "If your e-mail exists on our database, you will receive a password recovery link on your e-mail"
32
+ confirmations:
33
+ send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
34
+ send_paranoid_instructions: 'If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.'
35
+ confirmed: 'Your account was successfully confirmed. You are now signed in.'
36
+ registrations:
37
+ signed_up: 'Welcome! You have signed up successfully.'
38
+ inactive_signed_up: 'You have signed up successfully. However, we could not sign you in because your account is %{reason}.'
39
+ updated: 'You updated your account successfully.'
40
+ destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
41
+ reasons:
42
+ inactive: 'inactive'
43
+ unconfirmed: 'unconfirmed'
44
+ locked: 'locked'
45
+ unlocks:
46
+ send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
47
+ unlocked: 'Your account was successfully unlocked. You are now signed in.'
48
+ send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.'
49
+ omniauth_callbacks:
50
+ success: 'Successfully authorized from %{kind} account.'
51
+ failure: 'Could not authorize you from %{kind} because "%{reason}".'
52
+ mailer:
53
+ confirmation_instructions:
54
+ subject: 'Confirmation instructions'
55
+ reset_password_instructions:
56
+ subject: 'Reset password instructions'
57
+ unlock_instructions:
58
+ subject: 'Unlock Instructions'
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,63 @@
1
+ Dummy::Application.routes.draw do
2
+
3
+ devise_for :users
4
+
5
+ root :to => "home#index"
6
+
7
+ # The priority is based upon order of creation:
8
+ # first created -> highest priority.
9
+
10
+ # Sample of regular route:
11
+ # match 'products/:id' => 'catalog#view'
12
+ # Keep in mind you can assign values other than :controller and :action
13
+
14
+ # Sample of named route:
15
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
16
+ # This route can be invoked with purchase_url(:id => product.id)
17
+
18
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
19
+ # resources :products
20
+
21
+ # Sample resource route with options:
22
+ # resources :products do
23
+ # member do
24
+ # get 'short'
25
+ # post 'toggle'
26
+ # end
27
+ #
28
+ # collection do
29
+ # get 'sold'
30
+ # end
31
+ # end
32
+
33
+ # Sample resource route with sub-resources:
34
+ # resources :products do
35
+ # resources :comments, :sales
36
+ # resource :seller
37
+ # end
38
+
39
+ # Sample resource route with more complex sub-resources
40
+ # resources :products do
41
+ # resources :comments
42
+ # resources :sales do
43
+ # get 'recent', :on => :collection
44
+ # end
45
+ # end
46
+
47
+ # Sample resource route within a namespace:
48
+ # namespace :admin do
49
+ # # Directs /admin/products/* to Admin::ProductsController
50
+ # # (app/controllers/admin/products_controller.rb)
51
+ # resources :products
52
+ # end
53
+
54
+ # You can have the root of your site routed with "root"
55
+ # just remember to delete public/index.html.
56
+ # root :to => 'welcome#index'
57
+
58
+ # See how all your routes lay out with "rake routes"
59
+
60
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
61
+ # Note: This route will make all actions in every controller accessible via GET requests.
62
+ # match ':controller(/:action(/:id(.:format)))'
63
+ end
File without changes
@@ -0,0 +1,3109 @@
1
+
2
+
3
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:10:47 -0400
4
+
5
+
6
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:11:44 -0400
7
+
8
+
9
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:12:50 -0400
10
+
11
+
12
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:14:34 -0400
13
+
14
+
15
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:14:56 -0400
16
+
17
+
18
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:25:59 -0400
19
+
20
+
21
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:26:55 -0400
22
+
23
+
24
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:27:16 -0400
25
+
26
+
27
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:27:31 -0400
28
+
29
+
30
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:30:38 -0400
31
+
32
+
33
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:32:42 -0400
34
+
35
+
36
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:33:41 -0400
37
+
38
+
39
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:35:12 -0400
40
+
41
+
42
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:35:35 -0400
43
+ Processing by DeviseHeroku::SsoController#login as HTML
44
+ Parameters: {"token"=>"test", "id"=>"test"}
45
+ Completed 500 Internal Server Error in 7ms
46
+
47
+
48
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:36:53 -0400
49
+ Processing by DeviseHeroku::SsoController#login as HTML
50
+ Parameters: {"token"=>"test", "id"=>"test"}
51
+ Completed 500 Internal Server Error in 1ms
52
+
53
+
54
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:38:14 -0400
55
+ Processing by DeviseHeroku::SsoController#login as HTML
56
+ Parameters: {"token"=>"test", "id"=>"test"}
57
+ Redirected to http://www.example.com/
58
+ Completed 302 Found in 1ms
59
+
60
+
61
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:51:34 -0400
62
+ Processing by DeviseHeroku::SsoController#login as HTML
63
+ Parameters: {"token"=>"test", "id"=>"test"}
64
+ Completed 500 Internal Server Error in 8ms
65
+
66
+
67
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 10:52:13 -0400
68
+ Processing by DeviseHeroku::SsoController#login as HTML
69
+ Parameters: {"token"=>"test", "id"=>"test"}
70
+ Completed 500 Internal Server Error in 6ms
71
+
72
+
73
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:39:48 -0400
74
+ Processing by DeviseHeroku::SsoController#login as HTML
75
+ Parameters: {"token"=>"test", "id"=>"test"}
76
+ Completed 500 Internal Server Error in 6ms
77
+ Processing by HomeController#index as HTML
78
+ Rendered home/index.html.erb within layouts/application (12.5ms)
79
+ Completed 200 OK in 59ms (Views: 58.9ms)
80
+
81
+
82
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:45:12 -0400
83
+ Processing by DeviseHeroku::SsoController#login as HTML
84
+ Parameters: {"token"=>"test", "id"=>"test"}
85
+ Completed 401 Unauthorized in 0ms
86
+ Processing by HomeController#index as HTML
87
+ Rendered home/index.html.erb within layouts/application (12.2ms)
88
+ Completed 200 OK in 56ms (Views: 55.8ms)
89
+
90
+
91
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:49:08 -0400
92
+ Processing by DeviseHeroku::SsoController#login as HTML
93
+ Parameters: {"token"=>"test", "id"=>"test"}
94
+ Completed 401 Unauthorized in 0ms
95
+ Processing by HomeController#index as HTML
96
+ Rendered home/index.html.erb within layouts/application (12.4ms)
97
+ Completed 200 OK in 67ms (Views: 67.0ms)
98
+
99
+
100
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:49:45 -0400
101
+ Processing by DeviseHeroku::SsoController#login as HTML
102
+ Parameters: {"token"=>"test", "id"=>"test"}
103
+ Completed 401 Unauthorized in 0ms
104
+ Processing by HomeController#index as HTML
105
+ Rendered home/index.html.erb within layouts/application (13.1ms)
106
+ Completed 200 OK in 58ms (Views: 57.8ms)
107
+
108
+
109
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:56:47 -0400
110
+ Processing by DeviseHeroku::SsoController#login as HTML
111
+ Parameters: {"token"=>"test", "id"=>"test"}
112
+ Completed 401 Unauthorized in 0ms
113
+ Processing by HomeController#index as HTML
114
+ Rendered home/index.html.erb within layouts/application (12.0ms)
115
+ Completed 200 OK in 60ms (Views: 59.3ms)
116
+
117
+
118
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:58:44 -0400
119
+ Processing by DeviseHeroku::SsoController#login as HTML
120
+ Parameters: {"token"=>"test", "id"=>"test"}
121
+ Completed 401 Unauthorized in 0ms
122
+ Processing by HomeController#index as HTML
123
+ Rendered home/index.html.erb within layouts/application (12.6ms)
124
+ Completed 200 OK in 56ms (Views: 55.6ms)
125
+
126
+
127
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 11:59:23 -0400
128
+ Processing by DeviseHeroku::SsoController#login as HTML
129
+ Parameters: {"token"=>"test", "id"=>"test"}
130
+ Completed 401 Unauthorized in 0ms
131
+ Processing by HomeController#index as HTML
132
+ Rendered home/index.html.erb within layouts/application (12.3ms)
133
+ Completed 200 OK in 57ms (Views: 56.2ms)
134
+
135
+
136
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:05:40 -0400
137
+ Processing by DeviseHeroku::SsoController#login as HTML
138
+ Parameters: {"token"=>"test", "id"=>"test"}
139
+ Completed 401 Unauthorized in 0ms
140
+
141
+
142
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:05:40 -0400
143
+ Processing by DeviseHeroku::SsoController#login as HTML
144
+ Parameters: {"miscdata"=>"some misc data"}
145
+ Completed 401 Unauthorized in 0ms
146
+
147
+
148
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:05:40 -0400
149
+ Processing by DeviseHeroku::SsoController#login as HTML
150
+ Parameters: {"token"=>"test", "id"=>"test"}
151
+ Completed 401 Unauthorized in 0ms
152
+
153
+
154
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:05:40 -0400
155
+ Processing by DeviseHeroku::SsoController#login as HTML
156
+ Parameters: {"token"=>"test", "id"=>"test"}
157
+ Completed 401 Unauthorized in 0ms
158
+ Processing by HomeController#index as HTML
159
+ Rendered home/index.html.erb within layouts/application (13.4ms)
160
+ Completed 200 OK in 69ms (Views: 68.1ms)
161
+
162
+
163
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:07:32 -0400
164
+ Processing by DeviseHeroku::SsoController#login as HTML
165
+ Parameters: {"token"=>"test", "id"=>"test"}
166
+ Completed 401 Unauthorized in 0ms
167
+
168
+
169
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:07:32 -0400
170
+ Processing by DeviseHeroku::SsoController#login as HTML
171
+ Parameters: {"miscdata"=>"some misc data"}
172
+ Completed 401 Unauthorized in 0ms
173
+
174
+
175
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:07:32 -0400
176
+ Processing by DeviseHeroku::SsoController#login as HTML
177
+ Parameters: {"token"=>"test", "id"=>"test"}
178
+ Completed 401 Unauthorized in 0ms
179
+
180
+
181
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:07:32 -0400
182
+ Processing by DeviseHeroku::SsoController#login as HTML
183
+ Parameters: {"token"=>"test", "id"=>"test"}
184
+ Completed 401 Unauthorized in 0ms
185
+ Processing by HomeController#index as HTML
186
+ Rendered home/index.html.erb within layouts/application (12.1ms)
187
+ Completed 200 OK in 58ms (Views: 57.7ms)
188
+ Processing by HomeController#index as HTML
189
+ Rendered home/index.html.erb within layouts/application (12.1ms)
190
+ Completed 200 OK in 55ms (Views: 54.2ms)
191
+ Processing by HomeController#index as HTML
192
+ Rendered home/index.html.erb within layouts/application (13.1ms)
193
+ Completed 200 OK in 57ms (Views: 56.7ms)
194
+ Processing by HomeController#index as HTML
195
+ Rendered home/index.html.erb within layouts/application (12.1ms)
196
+ Completed 200 OK in 56ms (Views: 55.9ms)
197
+
198
+
199
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
200
+ Processing by DeviseHeroku::SsoController#login as HTML
201
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:31:19 UTC", "token"=>"someOtherToken"}
202
+ Completed 401 Unauthorized in 0ms
203
+
204
+
205
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
206
+ Processing by DeviseHeroku::SsoController#login as HTML
207
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
208
+ Completed 401 Unauthorized in 0ms
209
+
210
+
211
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
212
+ Processing by DeviseHeroku::SsoController#login as HTML
213
+ Parameters: {"id"=>"1"}
214
+ Completed 401 Unauthorized in 0ms
215
+
216
+
217
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
218
+ Processing by DeviseHeroku::SsoController#login as HTML
219
+ Parameters: {"timestamp"=>"2012-04-30 16:31:19 UTC"}
220
+ Completed 401 Unauthorized in 0ms
221
+
222
+
223
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
224
+ Processing by DeviseHeroku::SsoController#login as HTML
225
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:31:19 UTC"}
226
+ Completed 401 Unauthorized in 0ms
227
+
228
+
229
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
230
+ Processing by DeviseHeroku::SsoController#login as HTML
231
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf", "timestamp"=>"2012-04-30 16:31:19 UTC"}
232
+ Completed 401 Unauthorized in 0ms
233
+
234
+
235
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
236
+ Processing by DeviseHeroku::SsoController#login as HTML
237
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf", "id"=>"1"}
238
+ Completed 401 Unauthorized in 0ms
239
+
240
+
241
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
242
+ Processing by DeviseHeroku::SsoController#login as HTML
243
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:31:19 UTC", "token"=>"fa1f2ad985a92bc5366eec2f115247f5afb860a8"}
244
+ Completed 401 Unauthorized in 0ms
245
+
246
+
247
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:31:19 -0400
248
+ Processing by DeviseHeroku::SsoController#login as HTML
249
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:31:19 UTC", "token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
250
+ Completed 401 Unauthorized in 0ms
251
+ Processing by HomeController#index as HTML
252
+ Rendered home/index.html.erb within layouts/application (12.3ms)
253
+ Completed 200 OK in 56ms (Views: 55.4ms)
254
+
255
+
256
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
257
+ Processing by DeviseHeroku::SsoController#login as HTML
258
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:32:14 UTC", "token"=>"someOtherToken"}
259
+ Completed 401 Unauthorized in 0ms
260
+
261
+
262
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
263
+ Processing by DeviseHeroku::SsoController#login as HTML
264
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
265
+ Completed 401 Unauthorized in 0ms
266
+
267
+
268
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
269
+ Processing by DeviseHeroku::SsoController#login as HTML
270
+ Parameters: {"id"=>"1"}
271
+ Completed 401 Unauthorized in 0ms
272
+
273
+
274
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
275
+ Processing by DeviseHeroku::SsoController#login as HTML
276
+ Parameters: {"timestamp"=>"2012-04-30 16:32:14 UTC"}
277
+ Completed 401 Unauthorized in 0ms
278
+
279
+
280
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
281
+ Processing by DeviseHeroku::SsoController#login as HTML
282
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:32:14 UTC"}
283
+ Completed 401 Unauthorized in 0ms
284
+
285
+
286
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
287
+ Processing by DeviseHeroku::SsoController#login as HTML
288
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf", "timestamp"=>"2012-04-30 16:32:14 UTC"}
289
+ Completed 401 Unauthorized in 0ms
290
+
291
+
292
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
293
+ Processing by DeviseHeroku::SsoController#login as HTML
294
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf", "id"=>"1"}
295
+ Completed 401 Unauthorized in 0ms
296
+
297
+
298
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
299
+ Processing by DeviseHeroku::SsoController#login as HTML
300
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:32:14 UTC", "token"=>"fa1f2ad985a92bc5366eec2f115247f5afb860a8"}
301
+ Completed 401 Unauthorized in 0ms
302
+
303
+
304
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
305
+ Processing by DeviseHeroku::SsoController#login as HTML
306
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
307
+ Completed 401 Unauthorized in 0ms
308
+
309
+
310
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:32:14 -0400
311
+ Processing by DeviseHeroku::SsoController#login as HTML
312
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:32:14 UTC", "token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
313
+ Completed 401 Unauthorized in 0ms
314
+ Processing by HomeController#index as HTML
315
+ Rendered home/index.html.erb within layouts/application (12.7ms)
316
+ Completed 200 OK in 62ms (Views: 62.1ms)
317
+
318
+
319
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
320
+ Processing by DeviseHeroku::SsoController#login as HTML
321
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:33:13 UTC", "token"=>"someOtherToken"}
322
+ Completed 401 Unauthorized in 0ms
323
+
324
+
325
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
326
+ Processing by DeviseHeroku::SsoController#login as HTML
327
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
328
+ Completed 401 Unauthorized in 0ms
329
+
330
+
331
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
332
+ Processing by DeviseHeroku::SsoController#login as HTML
333
+ Parameters: {"id"=>"1"}
334
+ Completed 401 Unauthorized in 0ms
335
+
336
+
337
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
338
+ Processing by DeviseHeroku::SsoController#login as HTML
339
+ Parameters: {"timestamp"=>"2012-04-30 16:33:13 UTC"}
340
+ Completed 401 Unauthorized in 0ms
341
+
342
+
343
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
344
+ Processing by DeviseHeroku::SsoController#login as HTML
345
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:33:13 UTC"}
346
+ Completed 401 Unauthorized in 0ms
347
+
348
+
349
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
350
+ Processing by DeviseHeroku::SsoController#login as HTML
351
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf", "timestamp"=>"2012-04-30 16:33:13 UTC"}
352
+ Completed 401 Unauthorized in 0ms
353
+
354
+
355
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
356
+ Processing by DeviseHeroku::SsoController#login as HTML
357
+ Parameters: {"token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf", "id"=>"1"}
358
+ Completed 401 Unauthorized in 0ms
359
+
360
+
361
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
362
+ Processing by DeviseHeroku::SsoController#login as HTML
363
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:33:13 UTC", "token"=>"fa1f2ad985a92bc5366eec2f115247f5afb860a8"}
364
+ Completed 401 Unauthorized in 0ms
365
+
366
+
367
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
368
+ Processing by DeviseHeroku::SsoController#login as HTML
369
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
370
+ Completed 401 Unauthorized in 0ms
371
+
372
+
373
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:33:13 -0400
374
+ Processing by DeviseHeroku::SsoController#login as HTML
375
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:33:13 UTC", "token"=>"d897f582c3526d4ebd37a96796c33b3eb5e13daf"}
376
+ Completed 401 Unauthorized in 0ms
377
+ Processing by HomeController#index as HTML
378
+ Rendered home/index.html.erb within layouts/application (12.2ms)
379
+ Completed 200 OK in 55ms (Views: 54.8ms)
380
+
381
+
382
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
383
+ Processing by DeviseHeroku::SsoController#login as HTML
384
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:34:14 UTC", "token"=>"someOtherToken"}
385
+ Completed 401 Unauthorized in 0ms
386
+
387
+
388
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
389
+ Processing by DeviseHeroku::SsoController#login as HTML
390
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
391
+ Completed 401 Unauthorized in 0ms
392
+
393
+
394
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
395
+ Processing by DeviseHeroku::SsoController#login as HTML
396
+ Parameters: {"id"=>"1"}
397
+ Completed 401 Unauthorized in 0ms
398
+
399
+
400
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
401
+ Processing by DeviseHeroku::SsoController#login as HTML
402
+ Parameters: {"timestamp"=>"2012-04-30 16:34:14 UTC"}
403
+ Completed 401 Unauthorized in 0ms
404
+
405
+
406
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
407
+ Processing by DeviseHeroku::SsoController#login as HTML
408
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:34:14 UTC"}
409
+ Completed 401 Unauthorized in 0ms
410
+
411
+
412
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
413
+ Processing by DeviseHeroku::SsoController#login as HTML
414
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:34:14 UTC"}
415
+ Completed 401 Unauthorized in 0ms
416
+
417
+
418
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
419
+ Processing by DeviseHeroku::SsoController#login as HTML
420
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
421
+ Completed 401 Unauthorized in 0ms
422
+
423
+
424
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
425
+ Processing by DeviseHeroku::SsoController#login as HTML
426
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:34:14 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
427
+ Completed 401 Unauthorized in 0ms
428
+
429
+
430
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
431
+ Processing by DeviseHeroku::SsoController#login as HTML
432
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
433
+ Completed 401 Unauthorized in 0ms
434
+
435
+
436
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:34:14 -0400
437
+ Processing by DeviseHeroku::SsoController#login as HTML
438
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:34:14 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
439
+ Completed 401 Unauthorized in 0ms
440
+ Processing by HomeController#index as HTML
441
+ Rendered home/index.html.erb within layouts/application (12.3ms)
442
+ Completed 200 OK in 56ms (Views: 55.7ms)
443
+
444
+
445
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
446
+ Processing by DeviseHeroku::SsoController#login as HTML
447
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:35:29 UTC", "token"=>"someOtherToken"}
448
+ Completed 401 Unauthorized in 0ms
449
+
450
+
451
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
452
+ Processing by DeviseHeroku::SsoController#login as HTML
453
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
454
+ Completed 401 Unauthorized in 0ms
455
+
456
+
457
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
458
+ Processing by DeviseHeroku::SsoController#login as HTML
459
+ Parameters: {"id"=>"1"}
460
+ Completed 401 Unauthorized in 0ms
461
+
462
+
463
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
464
+ Processing by DeviseHeroku::SsoController#login as HTML
465
+ Parameters: {"timestamp"=>"2012-04-30 16:35:29 UTC"}
466
+ Completed 401 Unauthorized in 0ms
467
+
468
+
469
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
470
+ Processing by DeviseHeroku::SsoController#login as HTML
471
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:35:29 UTC"}
472
+ Completed 401 Unauthorized in 0ms
473
+
474
+
475
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
476
+ Processing by DeviseHeroku::SsoController#login as HTML
477
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:35:29 UTC"}
478
+ Completed 401 Unauthorized in 0ms
479
+
480
+
481
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
482
+ Processing by DeviseHeroku::SsoController#login as HTML
483
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
484
+ Completed 401 Unauthorized in 0ms
485
+
486
+
487
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
488
+ Processing by DeviseHeroku::SsoController#login as HTML
489
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:35:29 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
490
+ Completed 401 Unauthorized in 0ms
491
+
492
+
493
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
494
+ Processing by DeviseHeroku::SsoController#login as HTML
495
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
496
+ Completed 401 Unauthorized in 0ms
497
+
498
+
499
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:29 -0400
500
+ Processing by DeviseHeroku::SsoController#login as HTML
501
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:35:29 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
502
+ Completed 401 Unauthorized in 0ms
503
+ Processing by HomeController#index as HTML
504
+ Rendered home/index.html.erb within layouts/application (12.6ms)
505
+ Completed 200 OK in 57ms (Views: 55.9ms)
506
+
507
+
508
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
509
+ Processing by DeviseHeroku::SsoController#login as HTML
510
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:35:54 UTC", "token"=>"someOtherToken"}
511
+ Completed 401 Unauthorized in 0ms
512
+
513
+
514
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
515
+ Processing by DeviseHeroku::SsoController#login as HTML
516
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
517
+ Completed 401 Unauthorized in 0ms
518
+
519
+
520
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
521
+ Processing by DeviseHeroku::SsoController#login as HTML
522
+ Parameters: {"id"=>"1"}
523
+ Completed 401 Unauthorized in 0ms
524
+
525
+
526
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
527
+ Processing by DeviseHeroku::SsoController#login as HTML
528
+ Parameters: {"timestamp"=>"2012-04-30 16:35:54 UTC"}
529
+ Completed 401 Unauthorized in 0ms
530
+
531
+
532
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
533
+ Processing by DeviseHeroku::SsoController#login as HTML
534
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:35:54 UTC"}
535
+ Completed 401 Unauthorized in 0ms
536
+
537
+
538
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
539
+ Processing by DeviseHeroku::SsoController#login as HTML
540
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:35:54 UTC"}
541
+ Completed 401 Unauthorized in 0ms
542
+
543
+
544
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
545
+ Processing by DeviseHeroku::SsoController#login as HTML
546
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
547
+ Completed 401 Unauthorized in 0ms
548
+
549
+
550
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
551
+ Processing by DeviseHeroku::SsoController#login as HTML
552
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:35:54 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
553
+ Completed 401 Unauthorized in 0ms
554
+
555
+
556
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
557
+ Processing by DeviseHeroku::SsoController#login as HTML
558
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
559
+ Completed 401 Unauthorized in 0ms
560
+
561
+
562
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:35:54 -0400
563
+ Processing by DeviseHeroku::SsoController#login as HTML
564
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:35:54 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
565
+ Completed 401 Unauthorized in 0ms
566
+ Processing by HomeController#index as HTML
567
+ Rendered home/index.html.erb within layouts/application (12.1ms)
568
+ Completed 200 OK in 56ms (Views: 55.5ms)
569
+
570
+
571
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
572
+ Processing by DeviseHeroku::SsoController#login as HTML
573
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:36:14 UTC", "token"=>"someOtherToken"}
574
+ Completed 401 Unauthorized in 0ms
575
+
576
+
577
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
578
+ Processing by DeviseHeroku::SsoController#login as HTML
579
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
580
+ Completed 401 Unauthorized in 0ms
581
+
582
+
583
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
584
+ Processing by DeviseHeroku::SsoController#login as HTML
585
+ Parameters: {"id"=>"1"}
586
+ Completed 401 Unauthorized in 0ms
587
+
588
+
589
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
590
+ Processing by DeviseHeroku::SsoController#login as HTML
591
+ Parameters: {"timestamp"=>"2012-04-30 16:36:14 UTC"}
592
+ Completed 401 Unauthorized in 0ms
593
+
594
+
595
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
596
+ Processing by DeviseHeroku::SsoController#login as HTML
597
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:36:14 UTC"}
598
+ Completed 401 Unauthorized in 0ms
599
+
600
+
601
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
602
+ Processing by DeviseHeroku::SsoController#login as HTML
603
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:36:14 UTC"}
604
+ Completed 401 Unauthorized in 0ms
605
+
606
+
607
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
608
+ Processing by DeviseHeroku::SsoController#login as HTML
609
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
610
+ Completed 401 Unauthorized in 0ms
611
+
612
+
613
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
614
+ Processing by DeviseHeroku::SsoController#login as HTML
615
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:36:14 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
616
+ Completed 401 Unauthorized in 0ms
617
+
618
+
619
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
620
+ Processing by DeviseHeroku::SsoController#login as HTML
621
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
622
+ Completed 401 Unauthorized in 0ms
623
+
624
+
625
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:14 -0400
626
+ Processing by DeviseHeroku::SsoController#login as HTML
627
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:36:14 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
628
+ Completed 401 Unauthorized in 0ms
629
+ Processing by HomeController#index as HTML
630
+ Rendered home/index.html.erb within layouts/application (13.8ms)
631
+ Completed 200 OK in 57ms (Views: 57.0ms)
632
+
633
+
634
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
635
+ Processing by DeviseHeroku::SsoController#login as HTML
636
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:36:51 UTC", "token"=>"someOtherToken"}
637
+ Completed 401 Unauthorized in 0ms
638
+
639
+
640
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
641
+ Processing by DeviseHeroku::SsoController#login as HTML
642
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
643
+ Completed 401 Unauthorized in 0ms
644
+
645
+
646
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
647
+ Processing by DeviseHeroku::SsoController#login as HTML
648
+ Parameters: {"id"=>"1"}
649
+ Completed 401 Unauthorized in 0ms
650
+
651
+
652
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
653
+ Processing by DeviseHeroku::SsoController#login as HTML
654
+ Parameters: {"timestamp"=>"2012-04-30 16:36:51 UTC"}
655
+ Completed 401 Unauthorized in 0ms
656
+
657
+
658
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
659
+ Processing by DeviseHeroku::SsoController#login as HTML
660
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:36:51 UTC"}
661
+ Completed 401 Unauthorized in 0ms
662
+
663
+
664
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
665
+ Processing by DeviseHeroku::SsoController#login as HTML
666
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:36:51 UTC"}
667
+ Completed 401 Unauthorized in 0ms
668
+
669
+
670
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
671
+ Processing by DeviseHeroku::SsoController#login as HTML
672
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
673
+ Completed 401 Unauthorized in 0ms
674
+
675
+
676
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
677
+ Processing by DeviseHeroku::SsoController#login as HTML
678
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:36:51 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
679
+ Completed 401 Unauthorized in 0ms
680
+
681
+
682
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
683
+ Processing by DeviseHeroku::SsoController#login as HTML
684
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
685
+ Completed 401 Unauthorized in 0ms
686
+
687
+
688
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:36:51 -0400
689
+ Processing by DeviseHeroku::SsoController#login as HTML
690
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:36:51 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
691
+ Completed 401 Unauthorized in 0ms
692
+ Processing by HomeController#index as HTML
693
+ Rendered home/index.html.erb within layouts/application (14.8ms)
694
+ Completed 200 OK in 58ms (Views: 57.7ms)
695
+
696
+
697
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
698
+ Processing by DeviseHeroku::SsoController#login as HTML
699
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:37:42 UTC", "token"=>"someOtherToken"}
700
+ Completed 401 Unauthorized in 0ms
701
+
702
+
703
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
704
+ Processing by DeviseHeroku::SsoController#login as HTML
705
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
706
+ Completed 401 Unauthorized in 0ms
707
+
708
+
709
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
710
+ Processing by DeviseHeroku::SsoController#login as HTML
711
+ Parameters: {"id"=>"1"}
712
+ Completed 401 Unauthorized in 0ms
713
+
714
+
715
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
716
+ Processing by DeviseHeroku::SsoController#login as HTML
717
+ Parameters: {"timestamp"=>"2012-04-30 16:37:42 UTC"}
718
+ Completed 401 Unauthorized in 0ms
719
+
720
+
721
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
722
+ Processing by DeviseHeroku::SsoController#login as HTML
723
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:37:42 UTC"}
724
+ Completed 401 Unauthorized in 0ms
725
+
726
+
727
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
728
+ Processing by DeviseHeroku::SsoController#login as HTML
729
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:37:42 UTC"}
730
+ Completed 401 Unauthorized in 0ms
731
+
732
+
733
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
734
+ Processing by DeviseHeroku::SsoController#login as HTML
735
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
736
+ Completed 401 Unauthorized in 0ms
737
+
738
+
739
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
740
+ Processing by DeviseHeroku::SsoController#login as HTML
741
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:37:42 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
742
+ Completed 401 Unauthorized in 0ms
743
+
744
+
745
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
746
+ Processing by DeviseHeroku::SsoController#login as HTML
747
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
748
+ Completed 401 Unauthorized in 0ms
749
+
750
+
751
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:37:42 -0400
752
+ Processing by DeviseHeroku::SsoController#login as HTML
753
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:37:42 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
754
+ Completed 401 Unauthorized in 0ms
755
+ Processing by HomeController#index as HTML
756
+ Rendered home/index.html.erb within layouts/application (12.1ms)
757
+ Completed 200 OK in 58ms (Views: 57.3ms)
758
+
759
+
760
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:10 -0400
761
+ Processing by DeviseHeroku::SsoController#login as HTML
762
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:38:10 UTC", "token"=>"someOtherToken"}
763
+ Completed 401 Unauthorized in 0ms
764
+
765
+
766
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
767
+ Processing by DeviseHeroku::SsoController#login as HTML
768
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
769
+ Completed 401 Unauthorized in 0ms
770
+
771
+
772
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
773
+ Processing by DeviseHeroku::SsoController#login as HTML
774
+ Parameters: {"id"=>"1"}
775
+ Completed 401 Unauthorized in 0ms
776
+
777
+
778
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
779
+ Processing by DeviseHeroku::SsoController#login as HTML
780
+ Parameters: {"timestamp"=>"2012-04-30 16:38:11 UTC"}
781
+ Completed 401 Unauthorized in 0ms
782
+
783
+
784
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
785
+ Processing by DeviseHeroku::SsoController#login as HTML
786
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:38:11 UTC"}
787
+ Completed 401 Unauthorized in 0ms
788
+
789
+
790
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
791
+ Processing by DeviseHeroku::SsoController#login as HTML
792
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:38:11 UTC"}
793
+ Completed 401 Unauthorized in 0ms
794
+
795
+
796
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
797
+ Processing by DeviseHeroku::SsoController#login as HTML
798
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
799
+ Completed 401 Unauthorized in 0ms
800
+
801
+
802
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
803
+ Processing by DeviseHeroku::SsoController#login as HTML
804
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:38:11 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
805
+ Completed 401 Unauthorized in 0ms
806
+
807
+
808
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
809
+ Processing by DeviseHeroku::SsoController#login as HTML
810
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
811
+ Completed 401 Unauthorized in 0ms
812
+
813
+
814
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:38:11 -0400
815
+ Processing by DeviseHeroku::SsoController#login as HTML
816
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:38:11 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
817
+ Completed 401 Unauthorized in 0ms
818
+ Processing by HomeController#index as HTML
819
+ Rendered home/index.html.erb within layouts/application (12.2ms)
820
+ Completed 200 OK in 56ms (Views: 55.4ms)
821
+
822
+
823
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
824
+ Processing by DeviseHeroku::SsoController#login as HTML
825
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:39:04 UTC", "token"=>"someOtherToken"}
826
+ Completed 401 Unauthorized in 0ms
827
+
828
+
829
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
830
+ Processing by DeviseHeroku::SsoController#login as HTML
831
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
832
+ Completed 401 Unauthorized in 0ms
833
+
834
+
835
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
836
+ Processing by DeviseHeroku::SsoController#login as HTML
837
+ Parameters: {"id"=>"1"}
838
+ Completed 401 Unauthorized in 0ms
839
+
840
+
841
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
842
+ Processing by DeviseHeroku::SsoController#login as HTML
843
+ Parameters: {"timestamp"=>"2012-04-30 16:39:04 UTC"}
844
+ Completed 401 Unauthorized in 0ms
845
+
846
+
847
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
848
+ Processing by DeviseHeroku::SsoController#login as HTML
849
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:39:04 UTC"}
850
+ Completed 401 Unauthorized in 0ms
851
+
852
+
853
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
854
+ Processing by DeviseHeroku::SsoController#login as HTML
855
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:39:04 UTC"}
856
+ Completed 401 Unauthorized in 0ms
857
+
858
+
859
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
860
+ Processing by DeviseHeroku::SsoController#login as HTML
861
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
862
+ Completed 401 Unauthorized in 0ms
863
+
864
+
865
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
866
+ Processing by DeviseHeroku::SsoController#login as HTML
867
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:39:04 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
868
+ Completed 401 Unauthorized in 0ms
869
+
870
+
871
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
872
+ Processing by DeviseHeroku::SsoController#login as HTML
873
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
874
+ Completed 401 Unauthorized in 0ms
875
+
876
+
877
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:39:04 -0400
878
+ Processing by DeviseHeroku::SsoController#login as HTML
879
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:39:04 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
880
+ Completed 401 Unauthorized in 0ms
881
+ Processing by HomeController#index as HTML
882
+ Rendered home/index.html.erb within layouts/application (12.3ms)
883
+ Completed 200 OK in 55ms (Views: 54.9ms)
884
+
885
+
886
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
887
+ Processing by DeviseHeroku::SsoController#login as HTML
888
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:41:10 UTC", "token"=>"someOtherToken"}
889
+ Completed 401 Unauthorized in 0ms
890
+
891
+
892
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
893
+ Processing by DeviseHeroku::SsoController#login as HTML
894
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
895
+ Completed 401 Unauthorized in 0ms
896
+
897
+
898
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
899
+ Processing by DeviseHeroku::SsoController#login as HTML
900
+ Parameters: {"id"=>"1"}
901
+ Completed 401 Unauthorized in 0ms
902
+
903
+
904
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
905
+ Processing by DeviseHeroku::SsoController#login as HTML
906
+ Parameters: {"timestamp"=>"2012-04-30 16:41:10 UTC"}
907
+ Completed 401 Unauthorized in 0ms
908
+
909
+
910
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
911
+ Processing by DeviseHeroku::SsoController#login as HTML
912
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:41:10 UTC"}
913
+ Completed 401 Unauthorized in 0ms
914
+
915
+
916
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
917
+ Processing by DeviseHeroku::SsoController#login as HTML
918
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:41:10 UTC"}
919
+ Completed 401 Unauthorized in 0ms
920
+
921
+
922
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
923
+ Processing by DeviseHeroku::SsoController#login as HTML
924
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
925
+ Completed 401 Unauthorized in 0ms
926
+
927
+
928
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
929
+ Processing by DeviseHeroku::SsoController#login as HTML
930
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:41:10 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
931
+ Completed 401 Unauthorized in 0ms
932
+
933
+
934
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
935
+ Processing by DeviseHeroku::SsoController#login as HTML
936
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
937
+ Completed 401 Unauthorized in 0ms
938
+
939
+
940
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:10 -0400
941
+ Processing by DeviseHeroku::SsoController#login as HTML
942
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:41:10 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
943
+ Completed 401 Unauthorized in 0ms
944
+ Processing by HomeController#index as HTML
945
+ Rendered home/index.html.erb within layouts/application (13.3ms)
946
+ Completed 200 OK in 59ms (Views: 58.3ms)
947
+
948
+
949
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
950
+ Processing by DeviseHeroku::SsoController#login as HTML
951
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:41:50 UTC", "token"=>"someOtherToken"}
952
+ Completed 401 Unauthorized in 0ms
953
+
954
+
955
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
956
+ Processing by DeviseHeroku::SsoController#login as HTML
957
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
958
+ Completed 401 Unauthorized in 0ms
959
+
960
+
961
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
962
+ Processing by DeviseHeroku::SsoController#login as HTML
963
+ Parameters: {"id"=>"1"}
964
+ Completed 401 Unauthorized in 0ms
965
+
966
+
967
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
968
+ Processing by DeviseHeroku::SsoController#login as HTML
969
+ Parameters: {"timestamp"=>"2012-04-30 16:41:50 UTC"}
970
+ Completed 401 Unauthorized in 0ms
971
+
972
+
973
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
974
+ Processing by DeviseHeroku::SsoController#login as HTML
975
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:41:50 UTC"}
976
+ Completed 401 Unauthorized in 0ms
977
+
978
+
979
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
980
+ Processing by DeviseHeroku::SsoController#login as HTML
981
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:41:50 UTC"}
982
+ Completed 401 Unauthorized in 0ms
983
+
984
+
985
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
986
+ Processing by DeviseHeroku::SsoController#login as HTML
987
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
988
+ Completed 401 Unauthorized in 0ms
989
+
990
+
991
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
992
+ Processing by DeviseHeroku::SsoController#login as HTML
993
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:41:50 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
994
+ Completed 401 Unauthorized in 0ms
995
+
996
+
997
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
998
+ Processing by DeviseHeroku::SsoController#login as HTML
999
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1000
+ Completed 401 Unauthorized in 0ms
1001
+
1002
+
1003
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:41:50 -0400
1004
+ Processing by DeviseHeroku::SsoController#login as HTML
1005
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:41:50 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1006
+ Completed 401 Unauthorized in 0ms
1007
+ Processing by HomeController#index as HTML
1008
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1009
+ Completed 200 OK in 55ms (Views: 54.7ms)
1010
+
1011
+
1012
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1013
+ Processing by DeviseHeroku::SsoController#login as HTML
1014
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:42:52 UTC", "token"=>"someOtherToken"}
1015
+ Completed 401 Unauthorized in 0ms
1016
+
1017
+
1018
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1019
+ Processing by DeviseHeroku::SsoController#login as HTML
1020
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1021
+ Completed 401 Unauthorized in 0ms
1022
+
1023
+
1024
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1025
+ Processing by DeviseHeroku::SsoController#login as HTML
1026
+ Parameters: {"id"=>"1"}
1027
+ Completed 401 Unauthorized in 0ms
1028
+
1029
+
1030
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1031
+ Processing by DeviseHeroku::SsoController#login as HTML
1032
+ Parameters: {"timestamp"=>"2012-04-30 16:42:52 UTC"}
1033
+ Completed 401 Unauthorized in 0ms
1034
+
1035
+
1036
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1037
+ Processing by DeviseHeroku::SsoController#login as HTML
1038
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:42:52 UTC"}
1039
+ Completed 401 Unauthorized in 0ms
1040
+
1041
+
1042
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1043
+ Processing by DeviseHeroku::SsoController#login as HTML
1044
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:42:52 UTC"}
1045
+ Completed 401 Unauthorized in 0ms
1046
+
1047
+
1048
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1049
+ Processing by DeviseHeroku::SsoController#login as HTML
1050
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1051
+ Completed 401 Unauthorized in 0ms
1052
+
1053
+
1054
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1055
+ Processing by DeviseHeroku::SsoController#login as HTML
1056
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:42:52 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1057
+ Completed 401 Unauthorized in 0ms
1058
+
1059
+
1060
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1061
+ Processing by DeviseHeroku::SsoController#login as HTML
1062
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1063
+ Completed 401 Unauthorized in 0ms
1064
+
1065
+
1066
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:42:52 -0400
1067
+ Processing by DeviseHeroku::SsoController#login as HTML
1068
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:42:52 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1069
+ Completed 401 Unauthorized in 0ms
1070
+ Processing by HomeController#index as HTML
1071
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1072
+ Completed 200 OK in 52ms (Views: 52.0ms)
1073
+
1074
+
1075
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1076
+ Processing by DeviseHeroku::SsoController#login as HTML
1077
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:43:46 UTC", "token"=>"someOtherToken"}
1078
+ Completed 401 Unauthorized in 0ms
1079
+
1080
+
1081
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1082
+ Processing by DeviseHeroku::SsoController#login as HTML
1083
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1084
+ Completed 401 Unauthorized in 0ms
1085
+
1086
+
1087
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1088
+ Processing by DeviseHeroku::SsoController#login as HTML
1089
+ Parameters: {"id"=>"1"}
1090
+ Completed 401 Unauthorized in 0ms
1091
+
1092
+
1093
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1094
+ Processing by DeviseHeroku::SsoController#login as HTML
1095
+ Parameters: {"timestamp"=>"2012-04-30 16:43:46 UTC"}
1096
+ Completed 401 Unauthorized in 0ms
1097
+
1098
+
1099
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1100
+ Processing by DeviseHeroku::SsoController#login as HTML
1101
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:43:46 UTC"}
1102
+ Completed 401 Unauthorized in 0ms
1103
+
1104
+
1105
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1106
+ Processing by DeviseHeroku::SsoController#login as HTML
1107
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:43:46 UTC"}
1108
+ Completed 401 Unauthorized in 0ms
1109
+
1110
+
1111
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1112
+ Processing by DeviseHeroku::SsoController#login as HTML
1113
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1114
+ Completed 401 Unauthorized in 0ms
1115
+
1116
+
1117
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1118
+ Processing by DeviseHeroku::SsoController#login as HTML
1119
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:43:46 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1120
+ Completed 401 Unauthorized in 0ms
1121
+
1122
+
1123
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1124
+ Processing by DeviseHeroku::SsoController#login as HTML
1125
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1126
+ Completed 401 Unauthorized in 0ms
1127
+
1128
+
1129
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:43:46 -0400
1130
+ Processing by DeviseHeroku::SsoController#login as HTML
1131
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:43:46 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1132
+ Completed 401 Unauthorized in 0ms
1133
+ Processing by HomeController#index as HTML
1134
+ Rendered home/index.html.erb within layouts/application (15.8ms)
1135
+ Completed 200 OK in 65ms (Views: 64.5ms)
1136
+
1137
+
1138
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1139
+ Processing by DeviseHeroku::SsoController#login as HTML
1140
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:45:27 UTC", "token"=>"someOtherToken"}
1141
+ Completed 401 Unauthorized in 0ms
1142
+
1143
+
1144
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1145
+ Processing by DeviseHeroku::SsoController#login as HTML
1146
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1147
+ Completed 401 Unauthorized in 0ms
1148
+
1149
+
1150
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1151
+ Processing by DeviseHeroku::SsoController#login as HTML
1152
+ Parameters: {"id"=>"1"}
1153
+ Completed 401 Unauthorized in 0ms
1154
+
1155
+
1156
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1157
+ Processing by DeviseHeroku::SsoController#login as HTML
1158
+ Parameters: {"timestamp"=>"2012-04-30 16:45:27 UTC"}
1159
+ Completed 401 Unauthorized in 0ms
1160
+
1161
+
1162
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1163
+ Processing by DeviseHeroku::SsoController#login as HTML
1164
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:45:27 UTC"}
1165
+ Completed 401 Unauthorized in 0ms
1166
+
1167
+
1168
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1169
+ Processing by DeviseHeroku::SsoController#login as HTML
1170
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:45:27 UTC"}
1171
+ Completed 401 Unauthorized in 0ms
1172
+
1173
+
1174
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1175
+ Processing by DeviseHeroku::SsoController#login as HTML
1176
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1177
+ Completed 401 Unauthorized in 0ms
1178
+
1179
+
1180
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1181
+ Processing by DeviseHeroku::SsoController#login as HTML
1182
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:45:27 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1183
+ Completed 401 Unauthorized in 0ms
1184
+
1185
+
1186
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1187
+ Processing by DeviseHeroku::SsoController#login as HTML
1188
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1189
+ Completed 401 Unauthorized in 0ms
1190
+
1191
+
1192
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:45:27 -0400
1193
+ Processing by DeviseHeroku::SsoController#login as HTML
1194
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:45:27 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1195
+ Completed 401 Unauthorized in 0ms
1196
+ Processing by HomeController#index as HTML
1197
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1198
+ Completed 200 OK in 56ms (Views: 55.6ms)
1199
+
1200
+
1201
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1202
+ Processing by DeviseHeroku::SsoController#login as HTML
1203
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:53:17 UTC", "token"=>"someOtherToken"}
1204
+ Completed 401 Unauthorized in 0ms
1205
+
1206
+
1207
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1208
+ Processing by DeviseHeroku::SsoController#login as HTML
1209
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1210
+ Completed 401 Unauthorized in 0ms
1211
+
1212
+
1213
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1214
+ Processing by DeviseHeroku::SsoController#login as HTML
1215
+ Parameters: {"id"=>"1"}
1216
+ Completed 401 Unauthorized in 0ms
1217
+
1218
+
1219
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1220
+ Processing by DeviseHeroku::SsoController#login as HTML
1221
+ Parameters: {"timestamp"=>"2012-04-30 16:53:17 UTC"}
1222
+ Completed 401 Unauthorized in 0ms
1223
+
1224
+
1225
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1226
+ Processing by DeviseHeroku::SsoController#login as HTML
1227
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:53:17 UTC"}
1228
+ Completed 401 Unauthorized in 0ms
1229
+
1230
+
1231
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1232
+ Processing by DeviseHeroku::SsoController#login as HTML
1233
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:53:17 UTC"}
1234
+ Completed 401 Unauthorized in 0ms
1235
+
1236
+
1237
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1238
+ Processing by DeviseHeroku::SsoController#login as HTML
1239
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1240
+ Completed 401 Unauthorized in 0ms
1241
+
1242
+
1243
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1244
+ Processing by DeviseHeroku::SsoController#login as HTML
1245
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:53:17 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1246
+ Completed 401 Unauthorized in 0ms
1247
+
1248
+
1249
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1250
+ Processing by DeviseHeroku::SsoController#login as HTML
1251
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1252
+ Completed 401 Unauthorized in 0ms
1253
+
1254
+
1255
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:17 -0400
1256
+ Processing by DeviseHeroku::SsoController#login as HTML
1257
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:53:17 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1258
+ Completed 401 Unauthorized in 0ms
1259
+ Processing by HomeController#index as HTML
1260
+ Rendered home/index.html.erb within layouts/application (12.2ms)
1261
+ Completed 200 OK in 56ms (Views: 55.3ms)
1262
+
1263
+
1264
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1265
+ Processing by DeviseHeroku::SsoController#login as HTML
1266
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:53:53 UTC", "token"=>"someOtherToken"}
1267
+ Completed 401 Unauthorized in 0ms
1268
+
1269
+
1270
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1271
+ Processing by DeviseHeroku::SsoController#login as HTML
1272
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1273
+ Completed 401 Unauthorized in 0ms
1274
+
1275
+
1276
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1277
+ Processing by DeviseHeroku::SsoController#login as HTML
1278
+ Parameters: {"id"=>"1"}
1279
+ Completed 401 Unauthorized in 0ms
1280
+
1281
+
1282
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1283
+ Processing by DeviseHeroku::SsoController#login as HTML
1284
+ Parameters: {"timestamp"=>"2012-04-30 16:53:53 UTC"}
1285
+ Completed 401 Unauthorized in 0ms
1286
+
1287
+
1288
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1289
+ Processing by DeviseHeroku::SsoController#login as HTML
1290
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:53:53 UTC"}
1291
+ Completed 401 Unauthorized in 0ms
1292
+
1293
+
1294
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1295
+ Processing by DeviseHeroku::SsoController#login as HTML
1296
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:53:53 UTC"}
1297
+ Completed 401 Unauthorized in 0ms
1298
+
1299
+
1300
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1301
+ Processing by DeviseHeroku::SsoController#login as HTML
1302
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1303
+ Completed 401 Unauthorized in 0ms
1304
+
1305
+
1306
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1307
+ Processing by DeviseHeroku::SsoController#login as HTML
1308
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:53:53 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1309
+ Completed 401 Unauthorized in 0ms
1310
+
1311
+
1312
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1313
+ Processing by DeviseHeroku::SsoController#login as HTML
1314
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1315
+ Completed 401 Unauthorized in 0ms
1316
+
1317
+
1318
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:53:53 -0400
1319
+ Processing by DeviseHeroku::SsoController#login as HTML
1320
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:53:53 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1321
+ Completed 401 Unauthorized in 0ms
1322
+ Processing by HomeController#index as HTML
1323
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1324
+ Completed 200 OK in 55ms (Views: 55.0ms)
1325
+
1326
+
1327
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1328
+ Processing by DeviseHeroku::SsoController#login as HTML
1329
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:54:37 UTC", "token"=>"someOtherToken"}
1330
+ Completed 401 Unauthorized in 0ms
1331
+
1332
+
1333
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1334
+ Processing by DeviseHeroku::SsoController#login as HTML
1335
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1336
+ Completed 401 Unauthorized in 0ms
1337
+
1338
+
1339
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1340
+ Processing by DeviseHeroku::SsoController#login as HTML
1341
+ Parameters: {"id"=>"1"}
1342
+ Completed 401 Unauthorized in 0ms
1343
+
1344
+
1345
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1346
+ Processing by DeviseHeroku::SsoController#login as HTML
1347
+ Parameters: {"timestamp"=>"2012-04-30 16:54:37 UTC"}
1348
+ Completed 401 Unauthorized in 0ms
1349
+
1350
+
1351
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1352
+ Processing by DeviseHeroku::SsoController#login as HTML
1353
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:54:37 UTC"}
1354
+ Completed 401 Unauthorized in 0ms
1355
+
1356
+
1357
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1358
+ Processing by DeviseHeroku::SsoController#login as HTML
1359
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:54:37 UTC"}
1360
+ Completed 401 Unauthorized in 0ms
1361
+
1362
+
1363
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1364
+ Processing by DeviseHeroku::SsoController#login as HTML
1365
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1366
+ Completed 401 Unauthorized in 0ms
1367
+
1368
+
1369
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1370
+ Processing by DeviseHeroku::SsoController#login as HTML
1371
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:54:37 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1372
+ Completed 401 Unauthorized in 0ms
1373
+
1374
+
1375
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1376
+ Processing by DeviseHeroku::SsoController#login as HTML
1377
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1378
+ Completed 401 Unauthorized in 0ms
1379
+
1380
+
1381
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:54:37 -0400
1382
+ Processing by DeviseHeroku::SsoController#login as HTML
1383
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:54:37 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1384
+ Completed 401 Unauthorized in 0ms
1385
+ Processing by HomeController#index as HTML
1386
+ Rendered home/index.html.erb within layouts/application (12.5ms)
1387
+ Completed 200 OK in 53ms (Views: 53.0ms)
1388
+
1389
+
1390
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1391
+ Processing by DeviseHeroku::SsoController#login as HTML
1392
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:56:00 UTC", "token"=>"someOtherToken"}
1393
+ Completed 401 Unauthorized in 0ms
1394
+
1395
+
1396
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1397
+ Processing by DeviseHeroku::SsoController#login as HTML
1398
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1399
+ Completed 401 Unauthorized in 0ms
1400
+
1401
+
1402
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1403
+ Processing by DeviseHeroku::SsoController#login as HTML
1404
+ Parameters: {"id"=>"1"}
1405
+ Completed 401 Unauthorized in 0ms
1406
+
1407
+
1408
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1409
+ Processing by DeviseHeroku::SsoController#login as HTML
1410
+ Parameters: {"timestamp"=>"2012-04-30 16:56:00 UTC"}
1411
+ Completed 401 Unauthorized in 0ms
1412
+
1413
+
1414
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1415
+ Processing by DeviseHeroku::SsoController#login as HTML
1416
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:56:00 UTC"}
1417
+ Completed 401 Unauthorized in 0ms
1418
+
1419
+
1420
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1421
+ Processing by DeviseHeroku::SsoController#login as HTML
1422
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:56:00 UTC"}
1423
+ Completed 401 Unauthorized in 0ms
1424
+
1425
+
1426
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1427
+ Processing by DeviseHeroku::SsoController#login as HTML
1428
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1429
+ Completed 401 Unauthorized in 0ms
1430
+
1431
+
1432
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1433
+ Processing by DeviseHeroku::SsoController#login as HTML
1434
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:56:00 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1435
+ Completed 401 Unauthorized in 0ms
1436
+
1437
+
1438
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1439
+ Processing by DeviseHeroku::SsoController#login as HTML
1440
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1441
+ Completed 401 Unauthorized in 0ms
1442
+
1443
+
1444
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:00 -0400
1445
+ Processing by DeviseHeroku::SsoController#login as HTML
1446
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:56:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1447
+ Completed 401 Unauthorized in 0ms
1448
+ Processing by HomeController#index as HTML
1449
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1450
+ Completed 200 OK in 56ms (Views: 55.7ms)
1451
+
1452
+
1453
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1454
+ Processing by DeviseHeroku::SsoController#login as HTML
1455
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:56:36 UTC", "token"=>"someOtherToken"}
1456
+ Completed 401 Unauthorized in 0ms
1457
+
1458
+
1459
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1460
+ Processing by DeviseHeroku::SsoController#login as HTML
1461
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1462
+ Completed 401 Unauthorized in 0ms
1463
+
1464
+
1465
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1466
+ Processing by DeviseHeroku::SsoController#login as HTML
1467
+ Parameters: {"id"=>"1"}
1468
+ Completed 401 Unauthorized in 0ms
1469
+
1470
+
1471
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1472
+ Processing by DeviseHeroku::SsoController#login as HTML
1473
+ Parameters: {"timestamp"=>"2012-04-30 16:56:36 UTC"}
1474
+ Completed 401 Unauthorized in 0ms
1475
+
1476
+
1477
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1478
+ Processing by DeviseHeroku::SsoController#login as HTML
1479
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:56:36 UTC"}
1480
+ Completed 401 Unauthorized in 0ms
1481
+
1482
+
1483
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1484
+ Processing by DeviseHeroku::SsoController#login as HTML
1485
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:56:36 UTC"}
1486
+ Completed 401 Unauthorized in 0ms
1487
+
1488
+
1489
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1490
+ Processing by DeviseHeroku::SsoController#login as HTML
1491
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1492
+ Completed 401 Unauthorized in 0ms
1493
+
1494
+
1495
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1496
+ Processing by DeviseHeroku::SsoController#login as HTML
1497
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:56:36 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1498
+ Completed 401 Unauthorized in 0ms
1499
+
1500
+
1501
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1502
+ Processing by DeviseHeroku::SsoController#login as HTML
1503
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1504
+ Completed 401 Unauthorized in 0ms
1505
+
1506
+
1507
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:56:36 -0400
1508
+ Processing by DeviseHeroku::SsoController#login as HTML
1509
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:56:36 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1510
+ Completed 401 Unauthorized in 0ms
1511
+ Processing by HomeController#index as HTML
1512
+ Rendered home/index.html.erb within layouts/application (14.1ms)
1513
+ Completed 200 OK in 57ms (Views: 57.1ms)
1514
+
1515
+
1516
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1517
+ Processing by DeviseHeroku::SsoController#login as HTML
1518
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:57:31 UTC", "token"=>"someOtherToken"}
1519
+ Completed 401 Unauthorized in 0ms
1520
+
1521
+
1522
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1523
+ Processing by DeviseHeroku::SsoController#login as HTML
1524
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1525
+ Completed 401 Unauthorized in 0ms
1526
+
1527
+
1528
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1529
+ Processing by DeviseHeroku::SsoController#login as HTML
1530
+ Parameters: {"id"=>"1"}
1531
+ Completed 401 Unauthorized in 0ms
1532
+
1533
+
1534
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1535
+ Processing by DeviseHeroku::SsoController#login as HTML
1536
+ Parameters: {"timestamp"=>"2012-04-30 16:57:31 UTC"}
1537
+ Completed 401 Unauthorized in 0ms
1538
+
1539
+
1540
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1541
+ Processing by DeviseHeroku::SsoController#login as HTML
1542
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:57:31 UTC"}
1543
+ Completed 401 Unauthorized in 0ms
1544
+
1545
+
1546
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1547
+ Processing by DeviseHeroku::SsoController#login as HTML
1548
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:57:31 UTC"}
1549
+ Completed 401 Unauthorized in 0ms
1550
+
1551
+
1552
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1553
+ Processing by DeviseHeroku::SsoController#login as HTML
1554
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1555
+ Completed 401 Unauthorized in 0ms
1556
+
1557
+
1558
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1559
+ Processing by DeviseHeroku::SsoController#login as HTML
1560
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:57:31 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1561
+ Completed 401 Unauthorized in 0ms
1562
+
1563
+
1564
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1565
+ Processing by DeviseHeroku::SsoController#login as HTML
1566
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1567
+ Completed 401 Unauthorized in 0ms
1568
+
1569
+
1570
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:31 -0400
1571
+ Processing by DeviseHeroku::SsoController#login as HTML
1572
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:57:31 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1573
+ Completed 401 Unauthorized in 0ms
1574
+ Processing by HomeController#index as HTML
1575
+ Rendered home/index.html.erb within layouts/application (12.3ms)
1576
+ Completed 200 OK in 58ms (Views: 57.3ms)
1577
+
1578
+
1579
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1580
+ Processing by DeviseHeroku::SsoController#login as HTML
1581
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:57:54 UTC", "token"=>"someOtherToken"}
1582
+ Completed 401 Unauthorized in 0ms
1583
+
1584
+
1585
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1586
+ Processing by DeviseHeroku::SsoController#login as HTML
1587
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1588
+ Completed 401 Unauthorized in 0ms
1589
+
1590
+
1591
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1592
+ Processing by DeviseHeroku::SsoController#login as HTML
1593
+ Parameters: {"id"=>"1"}
1594
+ Completed 401 Unauthorized in 0ms
1595
+
1596
+
1597
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1598
+ Processing by DeviseHeroku::SsoController#login as HTML
1599
+ Parameters: {"timestamp"=>"2012-04-30 16:57:54 UTC"}
1600
+ Completed 401 Unauthorized in 0ms
1601
+
1602
+
1603
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1604
+ Processing by DeviseHeroku::SsoController#login as HTML
1605
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:57:54 UTC"}
1606
+ Completed 401 Unauthorized in 0ms
1607
+
1608
+
1609
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1610
+ Processing by DeviseHeroku::SsoController#login as HTML
1611
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:57:54 UTC"}
1612
+ Completed 401 Unauthorized in 0ms
1613
+
1614
+
1615
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1616
+ Processing by DeviseHeroku::SsoController#login as HTML
1617
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1618
+ Completed 401 Unauthorized in 0ms
1619
+
1620
+
1621
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1622
+ Processing by DeviseHeroku::SsoController#login as HTML
1623
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:57:54 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1624
+ Completed 401 Unauthorized in 0ms
1625
+
1626
+
1627
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1628
+ Processing by DeviseHeroku::SsoController#login as HTML
1629
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1630
+ Completed 401 Unauthorized in 0ms
1631
+
1632
+
1633
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:57:54 -0400
1634
+ Processing by DeviseHeroku::SsoController#login as HTML
1635
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:57:54 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1636
+ Completed 401 Unauthorized in 0ms
1637
+ Processing by HomeController#index as HTML
1638
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1639
+ Completed 200 OK in 54ms (Views: 53.6ms)
1640
+
1641
+
1642
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1643
+ Processing by DeviseHeroku::SsoController#login as HTML
1644
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:58:39 UTC", "token"=>"someOtherToken"}
1645
+ Completed 401 Unauthorized in 0ms
1646
+
1647
+
1648
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1649
+ Processing by DeviseHeroku::SsoController#login as HTML
1650
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1651
+ Completed 401 Unauthorized in 0ms
1652
+
1653
+
1654
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1655
+ Processing by DeviseHeroku::SsoController#login as HTML
1656
+ Parameters: {"id"=>"1"}
1657
+ Completed 401 Unauthorized in 0ms
1658
+
1659
+
1660
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1661
+ Processing by DeviseHeroku::SsoController#login as HTML
1662
+ Parameters: {"timestamp"=>"2012-04-30 16:58:39 UTC"}
1663
+ Completed 401 Unauthorized in 0ms
1664
+
1665
+
1666
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1667
+ Processing by DeviseHeroku::SsoController#login as HTML
1668
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:58:39 UTC"}
1669
+ Completed 401 Unauthorized in 0ms
1670
+
1671
+
1672
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1673
+ Processing by DeviseHeroku::SsoController#login as HTML
1674
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:58:39 UTC"}
1675
+ Completed 401 Unauthorized in 0ms
1676
+
1677
+
1678
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1679
+ Processing by DeviseHeroku::SsoController#login as HTML
1680
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1681
+ Completed 401 Unauthorized in 0ms
1682
+
1683
+
1684
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1685
+ Processing by DeviseHeroku::SsoController#login as HTML
1686
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:58:39 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1687
+ Completed 401 Unauthorized in 0ms
1688
+
1689
+
1690
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1691
+ Processing by DeviseHeroku::SsoController#login as HTML
1692
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1693
+ Completed 401 Unauthorized in 0ms
1694
+
1695
+
1696
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:39 -0400
1697
+ Processing by DeviseHeroku::SsoController#login as HTML
1698
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:58:39 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1699
+ Completed 401 Unauthorized in 0ms
1700
+ Processing by HomeController#index as HTML
1701
+ Rendered home/index.html.erb within layouts/application (13.3ms)
1702
+ Completed 200 OK in 56ms (Views: 55.7ms)
1703
+
1704
+
1705
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1706
+ Processing by DeviseHeroku::SsoController#login as HTML
1707
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:58:54 UTC", "token"=>"someOtherToken"}
1708
+ Completed 401 Unauthorized in 0ms
1709
+
1710
+
1711
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1712
+ Processing by DeviseHeroku::SsoController#login as HTML
1713
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1714
+ Completed 401 Unauthorized in 0ms
1715
+
1716
+
1717
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1718
+ Processing by DeviseHeroku::SsoController#login as HTML
1719
+ Parameters: {"id"=>"1"}
1720
+ Completed 401 Unauthorized in 0ms
1721
+
1722
+
1723
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1724
+ Processing by DeviseHeroku::SsoController#login as HTML
1725
+ Parameters: {"timestamp"=>"2012-04-30 16:58:54 UTC"}
1726
+ Completed 401 Unauthorized in 0ms
1727
+
1728
+
1729
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1730
+ Processing by DeviseHeroku::SsoController#login as HTML
1731
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:58:54 UTC"}
1732
+ Completed 401 Unauthorized in 0ms
1733
+
1734
+
1735
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1736
+ Processing by DeviseHeroku::SsoController#login as HTML
1737
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 16:58:54 UTC"}
1738
+ Completed 401 Unauthorized in 0ms
1739
+
1740
+
1741
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1742
+ Processing by DeviseHeroku::SsoController#login as HTML
1743
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1744
+ Completed 401 Unauthorized in 0ms
1745
+
1746
+
1747
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1748
+ Processing by DeviseHeroku::SsoController#login as HTML
1749
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 16:58:54 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1750
+ Completed 401 Unauthorized in 0ms
1751
+
1752
+
1753
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1754
+ Processing by DeviseHeroku::SsoController#login as HTML
1755
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1756
+ Completed 401 Unauthorized in 0ms
1757
+
1758
+
1759
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 12:58:54 -0400
1760
+ Processing by DeviseHeroku::SsoController#login as HTML
1761
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 16:58:54 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1762
+ Completed 401 Unauthorized in 0ms
1763
+ Processing by HomeController#index as HTML
1764
+ Rendered home/index.html.erb within layouts/application (12.1ms)
1765
+ Completed 200 OK in 58ms (Views: 57.5ms)
1766
+
1767
+
1768
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1769
+ Processing by DeviseHeroku::SsoController#login as HTML
1770
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:04:26 UTC", "token"=>"someOtherToken"}
1771
+ Completed 401 Unauthorized in 0ms
1772
+
1773
+
1774
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1775
+ Processing by DeviseHeroku::SsoController#login as HTML
1776
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1777
+ Completed 401 Unauthorized in 0ms
1778
+
1779
+
1780
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1781
+ Processing by DeviseHeroku::SsoController#login as HTML
1782
+ Parameters: {"id"=>"1"}
1783
+ Completed 401 Unauthorized in 0ms
1784
+
1785
+
1786
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1787
+ Processing by DeviseHeroku::SsoController#login as HTML
1788
+ Parameters: {"timestamp"=>"2012-04-30 17:04:26 UTC"}
1789
+ Completed 401 Unauthorized in 0ms
1790
+
1791
+
1792
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1793
+ Processing by DeviseHeroku::SsoController#login as HTML
1794
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:04:26 UTC"}
1795
+ Completed 401 Unauthorized in 0ms
1796
+
1797
+
1798
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1799
+ Processing by DeviseHeroku::SsoController#login as HTML
1800
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:04:26 UTC"}
1801
+ Completed 401 Unauthorized in 0ms
1802
+
1803
+
1804
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1805
+ Processing by DeviseHeroku::SsoController#login as HTML
1806
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1807
+ Completed 401 Unauthorized in 0ms
1808
+
1809
+
1810
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1811
+ Processing by DeviseHeroku::SsoController#login as HTML
1812
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:04:26 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1813
+ Completed 401 Unauthorized in 0ms
1814
+
1815
+
1816
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1817
+ Processing by DeviseHeroku::SsoController#login as HTML
1818
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1819
+ Completed 401 Unauthorized in 0ms
1820
+
1821
+
1822
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:04:26 -0400
1823
+ Processing by DeviseHeroku::SsoController#login as HTML
1824
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:04:26 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1825
+ Completed 401 Unauthorized in 0ms
1826
+ Processing by HomeController#index as HTML
1827
+ Rendered home/index.html.erb within layouts/application (12.7ms)
1828
+ Completed 200 OK in 56ms (Views: 56.1ms)
1829
+
1830
+
1831
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1832
+ Processing by DeviseHeroku::SsoController#login as HTML
1833
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:09:13 UTC", "token"=>"someOtherToken"}
1834
+ Completed 401 Unauthorized in 0ms
1835
+
1836
+
1837
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1838
+ Processing by DeviseHeroku::SsoController#login as HTML
1839
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1840
+ Completed 401 Unauthorized in 0ms
1841
+
1842
+
1843
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1844
+ Processing by DeviseHeroku::SsoController#login as HTML
1845
+ Parameters: {"id"=>"1"}
1846
+ Completed 401 Unauthorized in 0ms
1847
+
1848
+
1849
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1850
+ Processing by DeviseHeroku::SsoController#login as HTML
1851
+ Parameters: {"timestamp"=>"2012-04-30 17:09:13 UTC"}
1852
+ Completed 401 Unauthorized in 0ms
1853
+
1854
+
1855
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1856
+ Processing by DeviseHeroku::SsoController#login as HTML
1857
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:09:13 UTC"}
1858
+ Completed 401 Unauthorized in 0ms
1859
+
1860
+
1861
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1862
+ Processing by DeviseHeroku::SsoController#login as HTML
1863
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:09:13 UTC"}
1864
+ Completed 401 Unauthorized in 0ms
1865
+
1866
+
1867
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1868
+ Processing by DeviseHeroku::SsoController#login as HTML
1869
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1870
+ Completed 401 Unauthorized in 0ms
1871
+
1872
+
1873
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1874
+ Processing by DeviseHeroku::SsoController#login as HTML
1875
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:09:13 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1876
+ Completed 401 Unauthorized in 0ms
1877
+
1878
+
1879
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1880
+ Processing by DeviseHeroku::SsoController#login as HTML
1881
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1882
+ Completed 401 Unauthorized in 0ms
1883
+
1884
+
1885
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:13 -0400
1886
+ Processing by DeviseHeroku::SsoController#login as HTML
1887
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:09:13 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1888
+ Completed 401 Unauthorized in 0ms
1889
+ Processing by HomeController#index as HTML
1890
+ Rendered home/index.html.erb within layouts/application (12.4ms)
1891
+ Completed 200 OK in 56ms (Views: 55.6ms)
1892
+
1893
+
1894
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1895
+ Processing by DeviseHeroku::SsoController#login as HTML
1896
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:09:38 UTC", "token"=>"someOtherToken"}
1897
+ Completed 401 Unauthorized in 0ms
1898
+
1899
+
1900
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1901
+ Processing by DeviseHeroku::SsoController#login as HTML
1902
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1903
+ Completed 401 Unauthorized in 0ms
1904
+
1905
+
1906
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1907
+ Processing by DeviseHeroku::SsoController#login as HTML
1908
+ Parameters: {"id"=>"1"}
1909
+ Completed 401 Unauthorized in 0ms
1910
+
1911
+
1912
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1913
+ Processing by DeviseHeroku::SsoController#login as HTML
1914
+ Parameters: {"timestamp"=>"2012-04-30 17:09:38 UTC"}
1915
+ Completed 401 Unauthorized in 0ms
1916
+
1917
+
1918
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1919
+ Processing by DeviseHeroku::SsoController#login as HTML
1920
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:09:38 UTC"}
1921
+ Completed 401 Unauthorized in 0ms
1922
+
1923
+
1924
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1925
+ Processing by DeviseHeroku::SsoController#login as HTML
1926
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:09:38 UTC"}
1927
+ Completed 401 Unauthorized in 0ms
1928
+
1929
+
1930
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1931
+ Processing by DeviseHeroku::SsoController#login as HTML
1932
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1933
+ Completed 401 Unauthorized in 0ms
1934
+
1935
+
1936
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1937
+ Processing by DeviseHeroku::SsoController#login as HTML
1938
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:09:38 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
1939
+ Completed 401 Unauthorized in 0ms
1940
+
1941
+
1942
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1943
+ Processing by DeviseHeroku::SsoController#login as HTML
1944
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1945
+ Completed 401 Unauthorized in 0ms
1946
+
1947
+
1948
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:09:38 -0400
1949
+ Processing by DeviseHeroku::SsoController#login as HTML
1950
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:09:38 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1951
+ Completed 401 Unauthorized in 0ms
1952
+ Processing by HomeController#index as HTML
1953
+ Rendered home/index.html.erb within layouts/application (13.4ms)
1954
+ Completed 200 OK in 67ms (Views: 66.6ms)
1955
+
1956
+
1957
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1958
+ Processing by DeviseHeroku::SsoController#login as HTML
1959
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:10:01 UTC", "token"=>"someOtherToken"}
1960
+ Completed 401 Unauthorized in 0ms
1961
+
1962
+
1963
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1964
+ Processing by DeviseHeroku::SsoController#login as HTML
1965
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
1966
+ Completed 401 Unauthorized in 0ms
1967
+
1968
+
1969
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1970
+ Processing by DeviseHeroku::SsoController#login as HTML
1971
+ Parameters: {"id"=>"1"}
1972
+ Completed 401 Unauthorized in 0ms
1973
+
1974
+
1975
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1976
+ Processing by DeviseHeroku::SsoController#login as HTML
1977
+ Parameters: {"timestamp"=>"2012-04-30 17:10:01 UTC"}
1978
+ Completed 401 Unauthorized in 0ms
1979
+
1980
+
1981
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1982
+ Processing by DeviseHeroku::SsoController#login as HTML
1983
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:10:01 UTC"}
1984
+ Completed 401 Unauthorized in 0ms
1985
+
1986
+
1987
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1988
+ Processing by DeviseHeroku::SsoController#login as HTML
1989
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:10:01 UTC"}
1990
+ Completed 401 Unauthorized in 0ms
1991
+
1992
+
1993
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
1994
+ Processing by DeviseHeroku::SsoController#login as HTML
1995
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
1996
+ Completed 401 Unauthorized in 0ms
1997
+
1998
+
1999
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
2000
+ Processing by DeviseHeroku::SsoController#login as HTML
2001
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:10:01 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2002
+ Completed 401 Unauthorized in 0ms
2003
+
2004
+
2005
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
2006
+ Processing by DeviseHeroku::SsoController#login as HTML
2007
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2008
+ Completed 401 Unauthorized in 0ms
2009
+
2010
+
2011
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:10:01 -0400
2012
+ Processing by DeviseHeroku::SsoController#login as HTML
2013
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:10:01 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2014
+ Completed 401 Unauthorized in 0ms
2015
+ Processing by HomeController#index as HTML
2016
+ Rendered home/index.html.erb within layouts/application (14.2ms)
2017
+ Completed 200 OK in 59ms (Views: 58.2ms)
2018
+
2019
+
2020
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2021
+ Processing by DeviseHeroku::SsoController#login as HTML
2022
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:11:26 UTC", "token"=>"someOtherToken"}
2023
+ Completed 401 Unauthorized in 0ms
2024
+
2025
+
2026
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2027
+ Processing by DeviseHeroku::SsoController#login as HTML
2028
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2029
+ Completed 401 Unauthorized in 0ms
2030
+
2031
+
2032
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2033
+ Processing by DeviseHeroku::SsoController#login as HTML
2034
+ Parameters: {"id"=>"1"}
2035
+ Completed 401 Unauthorized in 0ms
2036
+
2037
+
2038
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2039
+ Processing by DeviseHeroku::SsoController#login as HTML
2040
+ Parameters: {"timestamp"=>"2012-04-30 17:11:26 UTC"}
2041
+ Completed 401 Unauthorized in 0ms
2042
+
2043
+
2044
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2045
+ Processing by DeviseHeroku::SsoController#login as HTML
2046
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:11:26 UTC"}
2047
+ Completed 401 Unauthorized in 0ms
2048
+
2049
+
2050
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2051
+ Processing by DeviseHeroku::SsoController#login as HTML
2052
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:11:26 UTC"}
2053
+ Completed 401 Unauthorized in 0ms
2054
+
2055
+
2056
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2057
+ Processing by DeviseHeroku::SsoController#login as HTML
2058
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2059
+ Completed 401 Unauthorized in 0ms
2060
+
2061
+
2062
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2063
+ Processing by DeviseHeroku::SsoController#login as HTML
2064
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:11:26 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2065
+ Completed 401 Unauthorized in 0ms
2066
+
2067
+
2068
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2069
+ Processing by DeviseHeroku::SsoController#login as HTML
2070
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2071
+ Completed 401 Unauthorized in 0ms
2072
+
2073
+
2074
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:26 -0400
2075
+ Processing by DeviseHeroku::SsoController#login as HTML
2076
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:11:26 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2077
+ Completed 401 Unauthorized in 0ms
2078
+ Processing by HomeController#index as HTML
2079
+ Rendered home/index.html.erb within layouts/application (13.1ms)
2080
+ Completed 200 OK in 58ms (Views: 57.9ms)
2081
+
2082
+
2083
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2084
+ Processing by DeviseHeroku::SsoController#login as HTML
2085
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:11:46 UTC", "token"=>"someOtherToken"}
2086
+ Completed 401 Unauthorized in 0ms
2087
+
2088
+
2089
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2090
+ Processing by DeviseHeroku::SsoController#login as HTML
2091
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2092
+ Completed 401 Unauthorized in 0ms
2093
+
2094
+
2095
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2096
+ Processing by DeviseHeroku::SsoController#login as HTML
2097
+ Parameters: {"id"=>"1"}
2098
+ Completed 401 Unauthorized in 0ms
2099
+
2100
+
2101
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2102
+ Processing by DeviseHeroku::SsoController#login as HTML
2103
+ Parameters: {"timestamp"=>"2012-04-30 17:11:46 UTC"}
2104
+ Completed 401 Unauthorized in 0ms
2105
+
2106
+
2107
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2108
+ Processing by DeviseHeroku::SsoController#login as HTML
2109
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:11:46 UTC"}
2110
+ Completed 401 Unauthorized in 0ms
2111
+
2112
+
2113
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2114
+ Processing by DeviseHeroku::SsoController#login as HTML
2115
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:11:46 UTC"}
2116
+ Completed 401 Unauthorized in 0ms
2117
+
2118
+
2119
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2120
+ Processing by DeviseHeroku::SsoController#login as HTML
2121
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2122
+ Completed 401 Unauthorized in 0ms
2123
+
2124
+
2125
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2126
+ Processing by DeviseHeroku::SsoController#login as HTML
2127
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:11:46 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2128
+ Completed 401 Unauthorized in 0ms
2129
+
2130
+
2131
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2132
+ Processing by DeviseHeroku::SsoController#login as HTML
2133
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2134
+ Completed 401 Unauthorized in 0ms
2135
+
2136
+
2137
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:11:46 -0400
2138
+ Processing by DeviseHeroku::SsoController#login as HTML
2139
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:11:46 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2140
+ Completed 401 Unauthorized in 0ms
2141
+ Processing by HomeController#index as HTML
2142
+ Rendered home/index.html.erb within layouts/application (14.2ms)
2143
+ Completed 200 OK in 62ms (Views: 62.1ms)
2144
+
2145
+
2146
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2147
+ Processing by DeviseHeroku::SsoController#login as HTML
2148
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:12:12 UTC", "token"=>"someOtherToken"}
2149
+ Completed 401 Unauthorized in 0ms
2150
+
2151
+
2152
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2153
+ Processing by DeviseHeroku::SsoController#login as HTML
2154
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2155
+ Completed 401 Unauthorized in 0ms
2156
+
2157
+
2158
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2159
+ Processing by DeviseHeroku::SsoController#login as HTML
2160
+ Parameters: {"id"=>"1"}
2161
+ Completed 401 Unauthorized in 0ms
2162
+
2163
+
2164
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2165
+ Processing by DeviseHeroku::SsoController#login as HTML
2166
+ Parameters: {"timestamp"=>"2012-04-30 17:12:12 UTC"}
2167
+ Completed 401 Unauthorized in 0ms
2168
+
2169
+
2170
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2171
+ Processing by DeviseHeroku::SsoController#login as HTML
2172
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:12:12 UTC"}
2173
+ Completed 401 Unauthorized in 0ms
2174
+
2175
+
2176
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2177
+ Processing by DeviseHeroku::SsoController#login as HTML
2178
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:12:12 UTC"}
2179
+ Completed 401 Unauthorized in 0ms
2180
+
2181
+
2182
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2183
+ Processing by DeviseHeroku::SsoController#login as HTML
2184
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2185
+ Completed 401 Unauthorized in 0ms
2186
+
2187
+
2188
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2189
+ Processing by DeviseHeroku::SsoController#login as HTML
2190
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:12:12 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2191
+ Completed 401 Unauthorized in 0ms
2192
+
2193
+
2194
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2195
+ Processing by DeviseHeroku::SsoController#login as HTML
2196
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2197
+ Completed 401 Unauthorized in 0ms
2198
+
2199
+
2200
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:12 -0400
2201
+ Processing by DeviseHeroku::SsoController#login as HTML
2202
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:12:12 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2203
+ Completed 401 Unauthorized in 0ms
2204
+ Processing by HomeController#index as HTML
2205
+ Rendered home/index.html.erb within layouts/application (12.1ms)
2206
+ Completed 200 OK in 56ms (Views: 55.9ms)
2207
+
2208
+
2209
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:52 -0400
2210
+ Processing by DeviseHeroku::SsoController#login as HTML
2211
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:12:52 UTC", "token"=>"someOtherToken"}
2212
+ Completed 401 Unauthorized in 0ms
2213
+
2214
+
2215
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2216
+ Processing by DeviseHeroku::SsoController#login as HTML
2217
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2218
+ Completed 401 Unauthorized in 0ms
2219
+
2220
+
2221
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2222
+ Processing by DeviseHeroku::SsoController#login as HTML
2223
+ Parameters: {"id"=>"1"}
2224
+ Completed 401 Unauthorized in 0ms
2225
+
2226
+
2227
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2228
+ Processing by DeviseHeroku::SsoController#login as HTML
2229
+ Parameters: {"timestamp"=>"2012-04-30 17:12:53 UTC"}
2230
+ Completed 401 Unauthorized in 0ms
2231
+
2232
+
2233
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2234
+ Processing by DeviseHeroku::SsoController#login as HTML
2235
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:12:53 UTC"}
2236
+ Completed 401 Unauthorized in 0ms
2237
+
2238
+
2239
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2240
+ Processing by DeviseHeroku::SsoController#login as HTML
2241
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:12:53 UTC"}
2242
+ Completed 401 Unauthorized in 0ms
2243
+
2244
+
2245
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2246
+ Processing by DeviseHeroku::SsoController#login as HTML
2247
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2248
+ Completed 401 Unauthorized in 0ms
2249
+
2250
+
2251
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2252
+ Processing by DeviseHeroku::SsoController#login as HTML
2253
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:12:53 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2254
+ Completed 401 Unauthorized in 0ms
2255
+
2256
+
2257
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2258
+ Processing by DeviseHeroku::SsoController#login as HTML
2259
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2260
+ Completed 401 Unauthorized in 0ms
2261
+
2262
+
2263
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:12:53 -0400
2264
+ Processing by DeviseHeroku::SsoController#login as HTML
2265
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:12:53 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2266
+ Completed 401 Unauthorized in 0ms
2267
+ Processing by HomeController#index as HTML
2268
+ Rendered home/index.html.erb within layouts/application (12.8ms)
2269
+ Completed 200 OK in 55ms (Views: 54.1ms)
2270
+
2271
+
2272
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2273
+ Processing by DeviseHeroku::SsoController#login as HTML
2274
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:13:52 UTC", "token"=>"someOtherToken"}
2275
+ Completed 401 Unauthorized in 0ms
2276
+
2277
+
2278
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2279
+ Processing by DeviseHeroku::SsoController#login as HTML
2280
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2281
+ Completed 401 Unauthorized in 0ms
2282
+
2283
+
2284
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2285
+ Processing by DeviseHeroku::SsoController#login as HTML
2286
+ Parameters: {"id"=>"1"}
2287
+ Completed 401 Unauthorized in 0ms
2288
+
2289
+
2290
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2291
+ Processing by DeviseHeroku::SsoController#login as HTML
2292
+ Parameters: {"timestamp"=>"2012-04-30 17:13:52 UTC"}
2293
+ Completed 401 Unauthorized in 0ms
2294
+
2295
+
2296
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2297
+ Processing by DeviseHeroku::SsoController#login as HTML
2298
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:13:52 UTC"}
2299
+ Completed 401 Unauthorized in 0ms
2300
+
2301
+
2302
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2303
+ Processing by DeviseHeroku::SsoController#login as HTML
2304
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:13:52 UTC"}
2305
+ Completed 401 Unauthorized in 0ms
2306
+
2307
+
2308
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2309
+ Processing by DeviseHeroku::SsoController#login as HTML
2310
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2311
+ Completed 401 Unauthorized in 0ms
2312
+
2313
+
2314
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2315
+ Processing by DeviseHeroku::SsoController#login as HTML
2316
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:13:52 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2317
+ Completed 401 Unauthorized in 0ms
2318
+
2319
+
2320
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2321
+ Processing by DeviseHeroku::SsoController#login as HTML
2322
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2323
+ Completed 401 Unauthorized in 0ms
2324
+
2325
+
2326
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:13:52 -0400
2327
+ Processing by DeviseHeroku::SsoController#login as HTML
2328
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:13:52 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2329
+ Completed 401 Unauthorized in 0ms
2330
+ Processing by HomeController#index as HTML
2331
+ Rendered home/index.html.erb within layouts/application (12.4ms)
2332
+ Completed 200 OK in 56ms (Views: 55.7ms)
2333
+
2334
+
2335
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2336
+ Processing by DeviseHeroku::SsoController#login as HTML
2337
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:15:53 UTC", "token"=>"someOtherToken"}
2338
+ Completed 401 Unauthorized in 0ms
2339
+
2340
+
2341
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2342
+ Processing by DeviseHeroku::SsoController#login as HTML
2343
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2344
+ Completed 401 Unauthorized in 0ms
2345
+
2346
+
2347
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2348
+ Processing by DeviseHeroku::SsoController#login as HTML
2349
+ Parameters: {"id"=>"1"}
2350
+ Completed 401 Unauthorized in 0ms
2351
+
2352
+
2353
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2354
+ Processing by DeviseHeroku::SsoController#login as HTML
2355
+ Parameters: {"timestamp"=>"2012-04-30 17:15:53 UTC"}
2356
+ Completed 401 Unauthorized in 0ms
2357
+
2358
+
2359
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2360
+ Processing by DeviseHeroku::SsoController#login as HTML
2361
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:15:53 UTC"}
2362
+ Completed 401 Unauthorized in 0ms
2363
+
2364
+
2365
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2366
+ Processing by DeviseHeroku::SsoController#login as HTML
2367
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:15:53 UTC"}
2368
+ Completed 401 Unauthorized in 0ms
2369
+
2370
+
2371
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2372
+ Processing by DeviseHeroku::SsoController#login as HTML
2373
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2374
+ Completed 401 Unauthorized in 0ms
2375
+
2376
+
2377
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2378
+ Processing by DeviseHeroku::SsoController#login as HTML
2379
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:15:53 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2380
+ Completed 401 Unauthorized in 0ms
2381
+
2382
+
2383
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2384
+ Processing by DeviseHeroku::SsoController#login as HTML
2385
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2386
+ Completed 401 Unauthorized in 0ms
2387
+
2388
+
2389
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:15:53 -0400
2390
+ Processing by DeviseHeroku::SsoController#login as HTML
2391
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:15:53 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2392
+ Completed 401 Unauthorized in 0ms
2393
+ Processing by HomeController#index as HTML
2394
+ Rendered home/index.html.erb within layouts/application (12.5ms)
2395
+ Completed 200 OK in 55ms (Views: 54.9ms)
2396
+
2397
+
2398
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:17:08 -0400
2399
+ Processing by DeviseHeroku::SsoController#login as HTML
2400
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:17:08 UTC", "token"=>"someOtherToken"}
2401
+ Completed 500 Internal Server Error in 1ms
2402
+
2403
+
2404
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:17:08 -0400
2405
+ Processing by DeviseHeroku::SsoController#login as HTML
2406
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2407
+ Completed 500 Internal Server Error in 0ms
2408
+
2409
+
2410
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:17:08 -0400
2411
+ Processing by DeviseHeroku::SsoController#login as HTML
2412
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:17:08 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2413
+ Completed 500 Internal Server Error in 1ms
2414
+
2415
+
2416
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:17:08 -0400
2417
+ Processing by DeviseHeroku::SsoController#login as HTML
2418
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2419
+ Completed 500 Internal Server Error in 2ms
2420
+
2421
+
2422
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:17:08 -0400
2423
+ Processing by DeviseHeroku::SsoController#login as HTML
2424
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:17:08 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2425
+ Completed 500 Internal Server Error in 0ms
2426
+ Processing by HomeController#index as HTML
2427
+ Rendered home/index.html.erb within layouts/application (13.1ms)
2428
+ Completed 200 OK in 59ms (Views: 58.1ms)
2429
+
2430
+
2431
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:18:30 -0400
2432
+ Processing by DeviseHeroku::SsoController#login as HTML
2433
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:18:30 UTC", "token"=>"someOtherToken"}
2434
+ Completed 500 Internal Server Error in 1ms
2435
+
2436
+
2437
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:18:30 -0400
2438
+ Processing by DeviseHeroku::SsoController#login as HTML
2439
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2440
+ Completed 500 Internal Server Error in 0ms
2441
+
2442
+
2443
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:18:30 -0400
2444
+ Processing by DeviseHeroku::SsoController#login as HTML
2445
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:18:30 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2446
+ Completed 500 Internal Server Error in 0ms
2447
+
2448
+
2449
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:18:30 -0400
2450
+ Processing by DeviseHeroku::SsoController#login as HTML
2451
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2452
+ Completed 500 Internal Server Error in 0ms
2453
+
2454
+
2455
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:18:30 -0400
2456
+ Processing by DeviseHeroku::SsoController#login as HTML
2457
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:18:30 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2458
+ Completed 500 Internal Server Error in 0ms
2459
+ Processing by HomeController#index as HTML
2460
+ Rendered home/index.html.erb within layouts/application (12.2ms)
2461
+ Completed 200 OK in 56ms (Views: 56.0ms)
2462
+
2463
+
2464
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:09 -0400
2465
+ Processing by DeviseHeroku::SsoController#login as HTML
2466
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:20:09 UTC", "token"=>"someOtherToken"}
2467
+ Completed 500 Internal Server Error in 1ms
2468
+
2469
+
2470
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:09 -0400
2471
+ Processing by DeviseHeroku::SsoController#login as HTML
2472
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2473
+ Completed 500 Internal Server Error in 0ms
2474
+
2475
+
2476
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:09 -0400
2477
+ Processing by DeviseHeroku::SsoController#login as HTML
2478
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:20:09 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2479
+ Completed 500 Internal Server Error in 0ms
2480
+
2481
+
2482
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:09 -0400
2483
+ Processing by DeviseHeroku::SsoController#login as HTML
2484
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2485
+ Completed 500 Internal Server Error in 0ms
2486
+
2487
+
2488
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:09 -0400
2489
+ Processing by DeviseHeroku::SsoController#login as HTML
2490
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:20:09 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2491
+ Completed 500 Internal Server Error in 0ms
2492
+ Processing by HomeController#index as HTML
2493
+ Rendered home/index.html.erb within layouts/application (12.3ms)
2494
+ Completed 200 OK in 56ms (Views: 55.1ms)
2495
+
2496
+
2497
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:37 -0400
2498
+ Processing by DeviseHeroku::SsoController#login as HTML
2499
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:20:37 UTC", "token"=>"someOtherToken"}
2500
+ Completed 500 Internal Server Error in 1ms
2501
+
2502
+
2503
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:37 -0400
2504
+ Processing by DeviseHeroku::SsoController#login as HTML
2505
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2506
+ Completed 500 Internal Server Error in 0ms
2507
+
2508
+
2509
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:37 -0400
2510
+ Processing by DeviseHeroku::SsoController#login as HTML
2511
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:20:37 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2512
+ Completed 500 Internal Server Error in 0ms
2513
+
2514
+
2515
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:37 -0400
2516
+ Processing by DeviseHeroku::SsoController#login as HTML
2517
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2518
+ Completed 500 Internal Server Error in 0ms
2519
+
2520
+
2521
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:20:37 -0400
2522
+ Processing by DeviseHeroku::SsoController#login as HTML
2523
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:20:37 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2524
+ Completed 500 Internal Server Error in 0ms
2525
+ Processing by HomeController#index as HTML
2526
+ Rendered home/index.html.erb within layouts/application (12.6ms)
2527
+ Completed 200 OK in 57ms (Views: 56.3ms)
2528
+
2529
+
2530
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:22:01 -0400
2531
+ Processing by DeviseHeroku::SsoController#login as HTML
2532
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:22:01 UTC", "token"=>"someOtherToken"}
2533
+ Completed 500 Internal Server Error in 1ms
2534
+
2535
+
2536
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:22:01 -0400
2537
+ Processing by DeviseHeroku::SsoController#login as HTML
2538
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2539
+ Completed 500 Internal Server Error in 0ms
2540
+
2541
+
2542
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:22:01 -0400
2543
+ Processing by DeviseHeroku::SsoController#login as HTML
2544
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:22:01 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2545
+ Completed 401 Unauthorized in 0ms
2546
+
2547
+
2548
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:22:01 -0400
2549
+ Processing by DeviseHeroku::SsoController#login as HTML
2550
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2551
+ Completed 500 Internal Server Error in 0ms
2552
+
2553
+
2554
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:22:01 -0400
2555
+ Processing by DeviseHeroku::SsoController#login as HTML
2556
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:22:01 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2557
+ Completed 500 Internal Server Error in 0ms
2558
+ Processing by HomeController#index as HTML
2559
+ Rendered home/index.html.erb within layouts/application (12.9ms)
2560
+ Completed 200 OK in 58ms (Views: 57.3ms)
2561
+
2562
+
2563
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:23:03 -0400
2564
+ Processing by DeviseHeroku::SsoController#login as HTML
2565
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:23:03 UTC", "token"=>"someOtherToken"}
2566
+ Completed 500 Internal Server Error in 1ms
2567
+
2568
+
2569
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:23:03 -0400
2570
+ Processing by DeviseHeroku::SsoController#login as HTML
2571
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2572
+ Completed 500 Internal Server Error in 0ms
2573
+
2574
+
2575
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:23:03 -0400
2576
+ Processing by DeviseHeroku::SsoController#login as HTML
2577
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:23:03 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2578
+ Completed 401 Unauthorized in 0ms
2579
+
2580
+
2581
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:23:03 -0400
2582
+ Processing by DeviseHeroku::SsoController#login as HTML
2583
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2584
+ Completed 500 Internal Server Error in 0ms
2585
+
2586
+
2587
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:23:03 -0400
2588
+ Processing by DeviseHeroku::SsoController#login as HTML
2589
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:23:03 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2590
+ Completed 500 Internal Server Error in 0ms
2591
+ Processing by HomeController#index as HTML
2592
+ Rendered home/index.html.erb within layouts/application (13.3ms)
2593
+ Completed 200 OK in 57ms (Views: 56.3ms)
2594
+
2595
+
2596
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2597
+ Processing by DeviseHeroku::SsoController#login as HTML
2598
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:24:34 UTC", "token"=>"someOtherToken"}
2599
+ Completed 500 Internal Server Error in 1ms
2600
+
2601
+
2602
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2603
+ Processing by DeviseHeroku::SsoController#login as HTML
2604
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2605
+ Completed 401 Unauthorized in 0ms
2606
+
2607
+
2608
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2609
+ Processing by DeviseHeroku::SsoController#login as HTML
2610
+ Parameters: {"id"=>"1"}
2611
+ Completed 401 Unauthorized in 0ms
2612
+
2613
+
2614
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2615
+ Processing by DeviseHeroku::SsoController#login as HTML
2616
+ Parameters: {"timestamp"=>"2012-04-30 17:24:34 UTC"}
2617
+ Completed 401 Unauthorized in 0ms
2618
+
2619
+
2620
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2621
+ Processing by DeviseHeroku::SsoController#login as HTML
2622
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:24:34 UTC"}
2623
+ Completed 401 Unauthorized in 0ms
2624
+
2625
+
2626
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2627
+ Processing by DeviseHeroku::SsoController#login as HTML
2628
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:24:34 UTC"}
2629
+ Completed 401 Unauthorized in 0ms
2630
+
2631
+
2632
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2633
+ Processing by DeviseHeroku::SsoController#login as HTML
2634
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2635
+ Completed 401 Unauthorized in 0ms
2636
+
2637
+
2638
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2639
+ Processing by DeviseHeroku::SsoController#login as HTML
2640
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:24:34 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2641
+ Completed 401 Unauthorized in 0ms
2642
+
2643
+
2644
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2645
+ Processing by DeviseHeroku::SsoController#login as HTML
2646
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2647
+ Completed 500 Internal Server Error in 0ms
2648
+
2649
+
2650
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:24:34 -0400
2651
+ Processing by DeviseHeroku::SsoController#login as HTML
2652
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:24:34 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2653
+ Completed 500 Internal Server Error in 0ms
2654
+ Processing by HomeController#index as HTML
2655
+ Rendered home/index.html.erb within layouts/application (12.2ms)
2656
+ Completed 200 OK in 55ms (Views: 55.0ms)
2657
+
2658
+
2659
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2660
+ Processing by DeviseHeroku::SsoController#login as HTML
2661
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:25:00 UTC", "token"=>"someOtherToken"}
2662
+ Completed 500 Internal Server Error in 1ms
2663
+
2664
+
2665
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2666
+ Processing by DeviseHeroku::SsoController#login as HTML
2667
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2668
+ Completed 401 Unauthorized in 0ms
2669
+
2670
+
2671
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2672
+ Processing by DeviseHeroku::SsoController#login as HTML
2673
+ Parameters: {"id"=>"1"}
2674
+ Completed 401 Unauthorized in 0ms
2675
+
2676
+
2677
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2678
+ Processing by DeviseHeroku::SsoController#login as HTML
2679
+ Parameters: {"timestamp"=>"2012-04-30 17:25:00 UTC"}
2680
+ Completed 401 Unauthorized in 0ms
2681
+
2682
+
2683
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2684
+ Processing by DeviseHeroku::SsoController#login as HTML
2685
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:25:00 UTC"}
2686
+ Completed 401 Unauthorized in 0ms
2687
+
2688
+
2689
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2690
+ Processing by DeviseHeroku::SsoController#login as HTML
2691
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:25:00 UTC"}
2692
+ Completed 401 Unauthorized in 0ms
2693
+
2694
+
2695
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2696
+ Processing by DeviseHeroku::SsoController#login as HTML
2697
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2698
+ Completed 401 Unauthorized in 0ms
2699
+
2700
+
2701
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2702
+ Processing by DeviseHeroku::SsoController#login as HTML
2703
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:25:00 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2704
+ Completed 401 Unauthorized in 0ms
2705
+
2706
+
2707
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2708
+ Processing by DeviseHeroku::SsoController#login as HTML
2709
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2710
+ Completed 500 Internal Server Error in 0ms
2711
+
2712
+
2713
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:25:00 -0400
2714
+ Processing by DeviseHeroku::SsoController#login as HTML
2715
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:25:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2716
+ Completed 500 Internal Server Error in 0ms
2717
+ Processing by HomeController#index as HTML
2718
+ Rendered home/index.html.erb within layouts/application (12.2ms)
2719
+ Completed 200 OK in 61ms (Views: 60.1ms)
2720
+
2721
+
2722
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2723
+ Processing by DeviseHeroku::SsoController#login as HTML
2724
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:30:21 UTC", "token"=>"someOtherToken"}
2725
+ Completed 500 Internal Server Error in 4ms
2726
+
2727
+
2728
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2729
+ Processing by DeviseHeroku::SsoController#login as HTML
2730
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2731
+ Completed 401 Unauthorized in 0ms
2732
+
2733
+
2734
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2735
+ Processing by DeviseHeroku::SsoController#login as HTML
2736
+ Parameters: {"id"=>"1"}
2737
+ Completed 401 Unauthorized in 0ms
2738
+
2739
+
2740
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2741
+ Processing by DeviseHeroku::SsoController#login as HTML
2742
+ Parameters: {"timestamp"=>"2012-04-30 17:30:21 UTC"}
2743
+ Completed 401 Unauthorized in 0ms
2744
+
2745
+
2746
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2747
+ Processing by DeviseHeroku::SsoController#login as HTML
2748
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:30:21 UTC"}
2749
+ Completed 401 Unauthorized in 0ms
2750
+
2751
+
2752
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2753
+ Processing by DeviseHeroku::SsoController#login as HTML
2754
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:30:21 UTC"}
2755
+ Completed 401 Unauthorized in 0ms
2756
+
2757
+
2758
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2759
+ Processing by DeviseHeroku::SsoController#login as HTML
2760
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2761
+ Completed 401 Unauthorized in 0ms
2762
+
2763
+
2764
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2765
+ Processing by DeviseHeroku::SsoController#login as HTML
2766
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:30:21 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2767
+ Completed 401 Unauthorized in 0ms
2768
+
2769
+
2770
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2771
+ Processing by DeviseHeroku::SsoController#login as HTML
2772
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2773
+ Completed 500 Internal Server Error in 4ms
2774
+
2775
+
2776
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:21 -0400
2777
+ Processing by DeviseHeroku::SsoController#login as HTML
2778
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:30:21 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2779
+ Completed 500 Internal Server Error in 3ms
2780
+ Processing by HomeController#index as HTML
2781
+ Rendered home/index.html.erb within layouts/application (12.2ms)
2782
+ Completed 200 OK in 62ms (Views: 61.2ms)
2783
+
2784
+
2785
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2786
+ Processing by DeviseHeroku::SsoController#login as HTML
2787
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:30:53 UTC", "token"=>"someOtherToken"}
2788
+ Redirected to http://www.example.com/
2789
+ Completed 302 Found in 1ms
2790
+
2791
+
2792
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2793
+ Processing by DeviseHeroku::SsoController#login as HTML
2794
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2795
+ Completed 401 Unauthorized in 0ms
2796
+
2797
+
2798
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2799
+ Processing by DeviseHeroku::SsoController#login as HTML
2800
+ Parameters: {"id"=>"1"}
2801
+ Completed 401 Unauthorized in 0ms
2802
+
2803
+
2804
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2805
+ Processing by DeviseHeroku::SsoController#login as HTML
2806
+ Parameters: {"timestamp"=>"2012-04-30 17:30:53 UTC"}
2807
+ Completed 401 Unauthorized in 0ms
2808
+
2809
+
2810
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2811
+ Processing by DeviseHeroku::SsoController#login as HTML
2812
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:30:53 UTC"}
2813
+ Completed 401 Unauthorized in 0ms
2814
+
2815
+
2816
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2817
+ Processing by DeviseHeroku::SsoController#login as HTML
2818
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:30:53 UTC"}
2819
+ Completed 401 Unauthorized in 0ms
2820
+
2821
+
2822
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2823
+ Processing by DeviseHeroku::SsoController#login as HTML
2824
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2825
+ Completed 401 Unauthorized in 0ms
2826
+
2827
+
2828
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2829
+ Processing by DeviseHeroku::SsoController#login as HTML
2830
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:30:53 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2831
+ Completed 401 Unauthorized in 0ms
2832
+
2833
+
2834
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2835
+ Processing by DeviseHeroku::SsoController#login as HTML
2836
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2837
+ Redirected to http://www.example.com/
2838
+ Completed 302 Found in 0ms
2839
+
2840
+
2841
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:30:53 -0400
2842
+ Processing by DeviseHeroku::SsoController#login as HTML
2843
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:30:53 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2844
+ Redirected to http://www.example.com/
2845
+ Completed 302 Found in 0ms
2846
+ Processing by HomeController#index as HTML
2847
+ Rendered home/index.html.erb within layouts/application (12.3ms)
2848
+ Completed 200 OK in 55ms (Views: 54.6ms)
2849
+
2850
+
2851
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2852
+ Processing by DeviseHeroku::SsoController#login as HTML
2853
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:32:53 UTC", "token"=>"someOtherToken"}
2854
+ Redirected to http://www.example.com/
2855
+ Completed 302 Found in 1ms
2856
+
2857
+
2858
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2859
+ Processing by DeviseHeroku::SsoController#login as HTML
2860
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2861
+ Completed 401 Unauthorized in 0ms
2862
+
2863
+
2864
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2865
+ Processing by DeviseHeroku::SsoController#login as HTML
2866
+ Parameters: {"id"=>"1"}
2867
+ Completed 401 Unauthorized in 0ms
2868
+
2869
+
2870
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2871
+ Processing by DeviseHeroku::SsoController#login as HTML
2872
+ Parameters: {"timestamp"=>"2012-04-30 17:32:53 UTC"}
2873
+ Completed 401 Unauthorized in 0ms
2874
+
2875
+
2876
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2877
+ Processing by DeviseHeroku::SsoController#login as HTML
2878
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:32:53 UTC"}
2879
+ Completed 401 Unauthorized in 0ms
2880
+
2881
+
2882
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2883
+ Processing by DeviseHeroku::SsoController#login as HTML
2884
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:32:53 UTC"}
2885
+ Completed 401 Unauthorized in 0ms
2886
+
2887
+
2888
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2889
+ Processing by DeviseHeroku::SsoController#login as HTML
2890
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2891
+ Completed 401 Unauthorized in 0ms
2892
+
2893
+
2894
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2895
+ Processing by DeviseHeroku::SsoController#login as HTML
2896
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:32:53 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2897
+ Completed 401 Unauthorized in 0ms
2898
+
2899
+
2900
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2901
+ Processing by DeviseHeroku::SsoController#login as HTML
2902
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2903
+ Redirected to http://www.example.com/
2904
+ Completed 302 Found in 0ms
2905
+
2906
+
2907
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:32:53 -0400
2908
+ Processing by DeviseHeroku::SsoController#login as HTML
2909
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:32:53 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2910
+ Redirected to http://www.example.com/
2911
+ Completed 302 Found in 1ms
2912
+ Processing by HomeController#index as HTML
2913
+ Rendered home/index.html.erb within layouts/application (12.2ms)
2914
+ Completed 200 OK in 56ms (Views: 55.3ms)
2915
+
2916
+
2917
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2918
+ Processing by DeviseHeroku::SsoController#login as HTML
2919
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:33:36 UTC", "token"=>"someOtherToken"}
2920
+ Redirected to http://www.example.com/
2921
+ Completed 302 Found in 1ms
2922
+
2923
+
2924
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2925
+ Processing by DeviseHeroku::SsoController#login as HTML
2926
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2927
+ Completed 401 Unauthorized in 0ms
2928
+
2929
+
2930
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2931
+ Processing by DeviseHeroku::SsoController#login as HTML
2932
+ Parameters: {"id"=>"1"}
2933
+ Completed 401 Unauthorized in 0ms
2934
+
2935
+
2936
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2937
+ Processing by DeviseHeroku::SsoController#login as HTML
2938
+ Parameters: {"timestamp"=>"2012-04-30 17:33:36 UTC"}
2939
+ Completed 401 Unauthorized in 0ms
2940
+
2941
+
2942
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2943
+ Processing by DeviseHeroku::SsoController#login as HTML
2944
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:33:36 UTC"}
2945
+ Completed 401 Unauthorized in 0ms
2946
+
2947
+
2948
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2949
+ Processing by DeviseHeroku::SsoController#login as HTML
2950
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:33:36 UTC"}
2951
+ Completed 401 Unauthorized in 0ms
2952
+
2953
+
2954
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2955
+ Processing by DeviseHeroku::SsoController#login as HTML
2956
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
2957
+ Completed 401 Unauthorized in 0ms
2958
+
2959
+
2960
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2961
+ Processing by DeviseHeroku::SsoController#login as HTML
2962
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:33:36 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
2963
+ Completed 401 Unauthorized in 0ms
2964
+
2965
+
2966
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2967
+ Processing by DeviseHeroku::SsoController#login as HTML
2968
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2969
+ Redirected to http://www.example.com/
2970
+ Completed 302 Found in 0ms
2971
+
2972
+
2973
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:33:36 -0400
2974
+ Processing by DeviseHeroku::SsoController#login as HTML
2975
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:33:36 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2976
+ Redirected to http://www.example.com/
2977
+ Completed 302 Found in 0ms
2978
+ Processing by HomeController#index as HTML
2979
+ Rendered home/index.html.erb within layouts/application (12.1ms)
2980
+ Completed 200 OK in 57ms (Views: 56.0ms)
2981
+
2982
+
2983
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
2984
+ Processing by DeviseHeroku::SsoController#login as HTML
2985
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:34:46 UTC", "token"=>"someOtherToken"}
2986
+ Redirected to http://www.example.com/
2987
+ Completed 302 Found in 1ms
2988
+
2989
+
2990
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
2991
+ Processing by DeviseHeroku::SsoController#login as HTML
2992
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
2993
+ Completed 401 Unauthorized in 0ms
2994
+
2995
+
2996
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
2997
+ Processing by DeviseHeroku::SsoController#login as HTML
2998
+ Parameters: {"id"=>"1"}
2999
+ Completed 401 Unauthorized in 0ms
3000
+
3001
+
3002
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3003
+ Processing by DeviseHeroku::SsoController#login as HTML
3004
+ Parameters: {"timestamp"=>"2012-04-30 17:34:46 UTC"}
3005
+ Completed 401 Unauthorized in 0ms
3006
+
3007
+
3008
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3009
+ Processing by DeviseHeroku::SsoController#login as HTML
3010
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:34:46 UTC"}
3011
+ Completed 401 Unauthorized in 0ms
3012
+
3013
+
3014
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3015
+ Processing by DeviseHeroku::SsoController#login as HTML
3016
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:34:46 UTC"}
3017
+ Completed 401 Unauthorized in 0ms
3018
+
3019
+
3020
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3021
+ Processing by DeviseHeroku::SsoController#login as HTML
3022
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
3023
+ Completed 401 Unauthorized in 0ms
3024
+
3025
+
3026
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3027
+ Processing by DeviseHeroku::SsoController#login as HTML
3028
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:34:46 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
3029
+ Completed 401 Unauthorized in 0ms
3030
+
3031
+
3032
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3033
+ Processing by DeviseHeroku::SsoController#login as HTML
3034
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
3035
+ Redirected to http://www.example.com/
3036
+ Completed 302 Found in 0ms
3037
+
3038
+
3039
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:34:46 -0400
3040
+ Processing by DeviseHeroku::SsoController#login as HTML
3041
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:34:46 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
3042
+ Redirected to http://www.example.com/
3043
+ Completed 302 Found in 0ms
3044
+ Processing by HomeController#index as HTML
3045
+ Rendered home/index.html.erb within layouts/application (13.1ms)
3046
+ Completed 200 OK in 57ms (Views: 56.6ms)
3047
+
3048
+
3049
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3050
+ Processing by DeviseHeroku::SsoController#login as HTML
3051
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:35:11 UTC", "token"=>"someOtherToken"}
3052
+ Redirected to http://www.example.com/
3053
+ Completed 302 Found in 1ms
3054
+
3055
+
3056
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3057
+ Processing by DeviseHeroku::SsoController#login as HTML
3058
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
3059
+ Completed 401 Unauthorized in 0ms
3060
+
3061
+
3062
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3063
+ Processing by DeviseHeroku::SsoController#login as HTML
3064
+ Parameters: {"id"=>"1"}
3065
+ Completed 401 Unauthorized in 0ms
3066
+
3067
+
3068
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3069
+ Processing by DeviseHeroku::SsoController#login as HTML
3070
+ Parameters: {"timestamp"=>"2012-04-30 17:35:12 UTC"}
3071
+ Completed 401 Unauthorized in 0ms
3072
+
3073
+
3074
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3075
+ Processing by DeviseHeroku::SsoController#login as HTML
3076
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:35:12 UTC"}
3077
+ Completed 401 Unauthorized in 0ms
3078
+
3079
+
3080
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3081
+ Processing by DeviseHeroku::SsoController#login as HTML
3082
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "timestamp"=>"2012-04-30 17:35:12 UTC"}
3083
+ Completed 401 Unauthorized in 0ms
3084
+
3085
+
3086
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3087
+ Processing by DeviseHeroku::SsoController#login as HTML
3088
+ Parameters: {"token"=>"2982c76e608bfdb9bbec2966f70691955772723b", "id"=>"1"}
3089
+ Completed 401 Unauthorized in 0ms
3090
+
3091
+
3092
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3093
+ Processing by DeviseHeroku::SsoController#login as HTML
3094
+ Parameters: {"id"=>"2", "timestamp"=>"2012-04-30 17:35:12 UTC", "token"=>"21acb7d7e1ca74b1d52f3d9ff1df9a6edacab755"}
3095
+ Completed 401 Unauthorized in 0ms
3096
+
3097
+
3098
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3099
+ Processing by DeviseHeroku::SsoController#login as HTML
3100
+ Parameters: {"id"=>"1", "timestamp"=>"1970-01-01 00:00:00 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
3101
+ Redirected to http://www.example.com/
3102
+ Completed 302 Found in 0ms
3103
+
3104
+
3105
+ Started POST "/heroku/sso/login" for 127.0.0.1 at 2012-04-30 13:35:12 -0400
3106
+ Processing by DeviseHeroku::SsoController#login as HTML
3107
+ Parameters: {"id"=>"1", "timestamp"=>"2012-04-30 17:35:12 UTC", "token"=>"2982c76e608bfdb9bbec2966f70691955772723b"}
3108
+ Redirected to http://www.example.com/
3109
+ Completed 302 Found in 0ms