devise-ios-rails 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5b611e41a762f53917831f41e63a056fd952f450
4
- data.tar.gz: 534315cc34d02e2509041488d9cb01425b5ad2b1
3
+ metadata.gz: cbded569cfcaf39278d3af8c650dfe9c1837ba70
4
+ data.tar.gz: 34c7a9285220e2f4b55f7200fd238ddfc68ce821
5
5
  SHA512:
6
- metadata.gz: fc0fb680199da39a4fbc710a930035f9ba21a171ce033b78e94d050ff1bbba310d0dc55b6b6650bcc1d5d6b8ff080ea8041ad0e05c25fa97bfd3a0ecad3f5631
7
- data.tar.gz: 860a947794081d9bbc5a090e7fbc45b6a0614dcee40611e1ad558e38d388f8210870989198e110a7f852e60e94fbb87dde2486f3eda5b77a11e7b6c46285015d
6
+ metadata.gz: fb1c8c7eb4ef7274f08d766a7fcf2cc02653ea67083e0c17abf13dd0b73783fe37012a1cdd56c442b168d1faf977b693228c2ef905d6420b0713fe39ac530524
7
+ data.tar.gz: daba7c7ce12805b05af025913e50d1ab58fdb8e008045f9646e7e504f07d50d1cc42fe563c22e7074e335c57c5ac6603795838ebccbead31c2f6013923843b84
data/README.md CHANGED
@@ -27,7 +27,15 @@ With a working devise environment, the only thing you need to do is:
27
27
  - in your routes change `devise_for ModelName` with `devise_ios_rails_for ModelName` (ModelName is usually User)
28
28
  - authentication is handled by user token which is generated for each user during the registration process.
29
29
 
30
- To make it work you need to run migration that adds `authentication_token` column to your Devise model.
30
+ Add the following line to your ModelName model
31
+ ```ruby
32
+ # app/models/model_name.rb
33
+ class ModelName < ActiveRecord::Base
34
+ acts_as_token_authenticatable
35
+ ...
36
+ end
37
+ ```
38
+ Add a migration for adding `authentication_token` column to your Devise model.
31
39
  If your ModelName is `User` then the migration should look like this:
32
40
  ```ruby
33
41
  class AddUniqueTokenToUser < ActiveRecord::Migration
@@ -1,11 +1,11 @@
1
1
  module DeviseIosRails
2
- class OauthController < ApplicationController
2
+ class OauthController < DeviseController
3
3
  skip_before_action :verify_authenticity_token
4
4
 
5
5
  respond_to :json
6
6
 
7
7
  def all
8
- respond_with User.from_oauth(user_params)
8
+ respond_with resource_class.from_oauth(resource_params)
9
9
  end
10
10
 
11
11
  alias_method :facebook, :all
@@ -13,8 +13,8 @@ module DeviseIosRails
13
13
 
14
14
  private
15
15
 
16
- def user_params
17
- params.require(:user).permit(:email, :provider, :uid, :oauth_token)
16
+ def resource_params
17
+ params.require(resource_name).permit(:email, :provider, :uid, :oauth_token)
18
18
  end
19
19
  end
20
20
  end
@@ -9,10 +9,9 @@ module DeviseIosRails
9
9
  format.html { super }
10
10
  format.json do
11
11
  super and return if authenticate_entity_from_token!(entity).nil?
12
-
13
12
  user = DeviseIosRails::ChangePasswordService.new(
14
13
  send("current_#{resource_name}"),
15
- params[:user]
14
+ params[resource_name]
16
15
  ).call!
17
16
 
18
17
  respond_with user
@@ -1,14 +1,17 @@
1
1
  module DeviseIosRails
2
2
  class RegistrationsController < Devise::RegistrationsController
3
- acts_as_token_authentication_handler_for User
4
- skip_before_filter :authenticate_user_from_token!, only: %i(new create cancel)
3
+ Devise.mappings.keys.each do |key|
4
+ acts_as_token_authentication_handler_for Object.const_get(key.to_s.classify)
5
+ skip_before_filter :"authenticate_#{key.to_s}_from_token!", only: %i(new create cancel)
6
+ end
7
+
5
8
  def authenticate_scope!
6
9
  send(:"authenticate_#{resource_name}_from_token!")
7
10
  self.resource = send(:"current_#{resource_name}")
8
11
  end
9
12
 
10
13
  def after_update_path_for(resource)
11
- edit_user_registration_url
14
+ send :"edit_#{resource_name}_registration_url"
12
15
  end
13
16
 
14
17
  def update_resource(resource, params)
@@ -43,7 +43,9 @@ module DeviseIosRails
43
43
  end
44
44
  end
45
45
 
46
- SimpleTokenAuthentication::FallbackAuthenticationHandler.class_eval do
46
+ annotate_class = (SimpleTokenAuthentication.const_defined? 'FallbackAuthenticationHandler') ? 'FallbackAuthenticationHandler' : 'DeviseFallbackHandler'
47
+ annotate_class = 'SimpleTokenAuthentication::' + annotate_class
48
+ annotate_class.constantize.class_eval do
47
49
  def authenticate_entity!(controller, entity)
48
50
  controller.send("authenticate_#{entity.name_underscore}!".to_sym, force: true)
49
51
  end
@@ -1,3 +1,3 @@
1
1
  module DeviseIosRails
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -52,6 +52,7 @@ group :development, :test do
52
52
  gem 'factory_girl_rails'
53
53
  gem 'rspec-rails'
54
54
  gem 'spring-commands-rspec'
55
+ gem 'thin'
55
56
  end
56
57
 
57
58
  group :heroku do
@@ -154,6 +154,7 @@ GEM
154
154
  execjs
155
155
  coffee-script-source (1.8.0)
156
156
  colorize (0.7.4)
157
+ daemons (1.1.9)
157
158
  database_cleaner (1.3.0)
158
159
  debug_inspector (0.0.2)
159
160
  descendants_tracker (0.0.4)
@@ -167,6 +168,7 @@ GEM
167
168
  dotenv (= 1.0.2)
168
169
  equalizer (0.0.9)
169
170
  erubis (2.7.0)
171
+ eventmachine (1.0.3)
170
172
  execjs (2.2.2)
171
173
  factory_girl (4.5.0)
172
174
  activesupport (>= 3.0.0)
@@ -444,6 +446,10 @@ GEM
444
446
  swagger-docs (0.1.9)
445
447
  activesupport (>= 3, < 5)
446
448
  rails (>= 3, < 5)
449
+ thin (1.6.3)
450
+ daemons (~> 1.0, >= 1.0.9)
451
+ eventmachine (~> 1.0)
452
+ rack (~> 1.0)
447
453
  thor (0.19.1)
448
454
  thread_safe (0.3.4)
449
455
  tilt (1.4.1)
@@ -527,4 +533,5 @@ DEPENDENCIES
527
533
  spring-commands-rspec
528
534
  sqlite3
529
535
  swagger-docs
536
+ thin
530
537
  uglifier
@@ -31,7 +31,6 @@ Devise.setup do |config|
31
31
  # ==> Configuration for :validatable
32
32
  config.password_length = 4..128
33
33
  config.timeout_in = 30.minutes
34
- config.expire_auth_token_on_timeout = false
35
34
 
36
35
  # ==> Configuration for :recoverable
37
36
  config.reset_password_keys = [ :email ]
@@ -1,1292 +0,0 @@
1
-  (0.3ms) begin transaction
2
-  (0.1ms) SAVEPOINT active_record_1
3
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-1@example.com' LIMIT 1
4
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '5E9tPX7Auv3UvjVkX6By'
5
- Binary data inserted for `string` type on column `encrypted_password`
6
- SQL (0.4ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "5E9tPX7Auv3UvjVkX6By"], ["created_at", "2015-03-31 20:39:23.480119"], ["email", "ios_user-1@example.com"], ["encrypted_password", "$2a$04$a2uQZ4tin0L.M.1N62wrEeUpqs3qUh6l6HnOS9nRMVdHvHZiY2njS"], ["updated_at", "2015-03-31 20:39:23.480119"]]
7
-  (0.0ms) RELEASE SAVEPOINT active_record_1
8
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
9
- Processing by DeviseIosRails::RegistrationsController#update as JSON
10
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
11
- Completed 401 Unauthorized in 15ms
12
-  (0.3ms) rollback transaction
13
-  (0.1ms) begin transaction
14
-  (0.1ms) SAVEPOINT active_record_1
15
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-2@example.com' LIMIT 1
16
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'z3Q1UvK8Fcqi8uMwiYgS'
17
- Binary data inserted for `string` type on column `encrypted_password`
18
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "z3Q1UvK8Fcqi8uMwiYgS"], ["created_at", "2015-03-31 20:39:23.560927"], ["email", "ios_user-2@example.com"], ["encrypted_password", "$2a$04$kDrbhd58p9fvlxrLmJ1sCe8ZDmALQojlMXabLUnEdIWBfqfUTmRCC"], ["updated_at", "2015-03-31 20:39:23.560927"]]
19
-  (0.0ms) RELEASE SAVEPOINT active_record_1
20
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
21
- Processing by DeviseIosRails::RegistrationsController#update as JSON
22
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
23
- Completed 401 Unauthorized in 1ms
24
-  (0.5ms) rollback transaction
25
-  (0.1ms) begin transaction
26
-  (0.1ms) SAVEPOINT active_record_1
27
- User Exists (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-3@example.com' LIMIT 1
28
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'xmZWsj6rQYoMHcsiWxxV'
29
- Binary data inserted for `string` type on column `encrypted_password`
30
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "xmZWsj6rQYoMHcsiWxxV"], ["created_at", "2015-03-31 20:39:23.577063"], ["email", "ios_user-3@example.com"], ["encrypted_password", "$2a$04$R65fhXUbSZHC5Y3omBDLK.1hCoBvUbo8NDsttgeN7ZelckQq8UGti"], ["updated_at", "2015-03-31 20:39:23.577063"]]
31
-  (0.0ms) RELEASE SAVEPOINT active_record_1
32
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
33
- Processing by DeviseIosRails::RegistrationsController#update as JSON
34
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
35
- Completed 401 Unauthorized in 2ms
36
-  (0.4ms) rollback transaction
37
-  (0.1ms) begin transaction
38
-  (0.1ms) SAVEPOINT active_record_1
39
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-4@example.com' LIMIT 1
40
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'S4Sx3TLCvNrxzisJn8Fp'
41
- Binary data inserted for `string` type on column `encrypted_password`
42
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "S4Sx3TLCvNrxzisJn8Fp"], ["created_at", "2015-03-31 20:39:23.589852"], ["email", "ios_user-4@example.com"], ["encrypted_password", "$2a$04$nKEegXQimx5LFTNKVUkOROup4/VGEajTEE.niPrfBoUP2V43kIeui"], ["updated_at", "2015-03-31 20:39:23.589852"]]
43
-  (0.0ms) RELEASE SAVEPOINT active_record_1
44
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
45
- Processing by DeviseIosRails::RegistrationsController#update as JSON
46
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
47
- Completed 401 Unauthorized in 0ms
48
-  (0.5ms) rollback transaction
49
-  (0.1ms) begin transaction
50
-  (0.3ms) SAVEPOINT active_record_1
51
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-5@example.com' LIMIT 1
52
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '61sGJUzZzqDr_GtsqeXD'
53
- Binary data inserted for `string` type on column `encrypted_password`
54
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "61sGJUzZzqDr_GtsqeXD"], ["created_at", "2015-03-31 20:39:23.602733"], ["email", "ios_user-5@example.com"], ["encrypted_password", "$2a$04$7f7A1MOGxX4eJ.pKEidziOM0LViEZ3v4GBRy4PWnCb2ld2PLDAYmK"], ["updated_at", "2015-03-31 20:39:23.602733"]]
55
-  (0.1ms) RELEASE SAVEPOINT active_record_1
56
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
57
- Processing by DeviseIosRails::RegistrationsController#update as JSON
58
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
59
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-6@example.com' ORDER BY "users"."id" ASC LIMIT 1
60
- Completed 401 Unauthorized in 3ms
61
-  (0.4ms) rollback transaction
62
-  (0.1ms) begin transaction
63
-  (0.1ms) SAVEPOINT active_record_1
64
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-7@example.com' LIMIT 1
65
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'sk3MKm776Zz3D-XPyn2s'
66
- Binary data inserted for `string` type on column `encrypted_password`
67
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "sk3MKm776Zz3D-XPyn2s"], ["created_at", "2015-03-31 20:39:23.620158"], ["email", "ios_user-7@example.com"], ["encrypted_password", "$2a$04$GKJOI9yRUb4OKQ66MAG6suKkquh.LjsQY3tKKIb3ocUYVX4z1aPM2"], ["updated_at", "2015-03-31 20:39:23.620158"]]
68
-  (0.1ms) RELEASE SAVEPOINT active_record_1
69
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
70
- Processing by DeviseIosRails::RegistrationsController#update as JSON
71
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
72
- User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-8@example.com' ORDER BY "users"."id" ASC LIMIT 1
73
- Completed 401 Unauthorized in 3ms
74
-  (1.5ms) rollback transaction
75
-  (0.1ms) begin transaction
76
-  (0.1ms) SAVEPOINT active_record_1
77
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-9@example.com' LIMIT 1
78
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'z1yjVpAA_GaTHmKAFtKd'
79
- Binary data inserted for `string` type on column `encrypted_password`
80
- SQL (0.5ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "z1yjVpAA_GaTHmKAFtKd"], ["created_at", "2015-03-31 20:39:23.639943"], ["email", "ios_user-9@example.com"], ["encrypted_password", "$2a$04$Roq8kQtfknnjpgRFZSUzeuwgjh2Ew4lRIKKDouwNE408LCZTi6DhG"], ["updated_at", "2015-03-31 20:39:23.639943"]]
81
-  (0.0ms) RELEASE SAVEPOINT active_record_1
82
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
83
- Processing by DeviseIosRails::RegistrationsController#update as JSON
84
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
85
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-10@example.com' ORDER BY "users"."id" ASC LIMIT 1
86
- Completed 401 Unauthorized in 1ms
87
-  (1.7ms) rollback transaction
88
-  (0.1ms) begin transaction
89
-  (0.1ms) SAVEPOINT active_record_1
90
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-11@example.com' LIMIT 1
91
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'sCSVJbaRJUedyt4bCrwa'
92
- Binary data inserted for `string` type on column `encrypted_password`
93
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "sCSVJbaRJUedyt4bCrwa"], ["created_at", "2015-03-31 20:39:23.654031"], ["email", "ios_user-11@example.com"], ["encrypted_password", "$2a$04$FubF0nI6Ltps.olEVfPqxuIx9iNBIsr8d4w8ur.qgzi7sQ5i6IrJ2"], ["updated_at", "2015-03-31 20:39:23.654031"]]
94
-  (0.0ms) RELEASE SAVEPOINT active_record_1
95
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
96
- Processing by DeviseIosRails::RegistrationsController#update as JSON
97
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
98
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-12@example.com' ORDER BY "users"."id" ASC LIMIT 1
99
- Completed 401 Unauthorized in 1ms
100
-  (0.4ms) rollback transaction
101
-  (0.0ms) begin transaction
102
-  (0.1ms) SAVEPOINT active_record_1
103
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-13@example.com' LIMIT 1
104
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'vVwQmD5pEr5QVSboSn1J'
105
- Binary data inserted for `string` type on column `encrypted_password`
106
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "vVwQmD5pEr5QVSboSn1J"], ["created_at", "2015-03-31 20:39:23.665092"], ["email", "ios_user-13@example.com"], ["encrypted_password", "$2a$04$vlHwLHznEOl411WqDzia0OieDKvqcfnyuaM7BFUEpoNrkSiXJYPaq"], ["updated_at", "2015-03-31 20:39:23.665092"]]
107
-  (0.0ms) RELEASE SAVEPOINT active_record_1
108
-  (0.1ms) SELECT COUNT(*) FROM "users"
109
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
110
- Processing by DeviseIosRails::RegistrationsController#update as JSON
111
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
112
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-13@example.com' ORDER BY "users"."id" ASC LIMIT 1
113
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-13@example.com' ORDER BY "users"."id" ASC LIMIT 1
114
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
115
-  (0.1ms) SAVEPOINT active_record_1
116
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'changed@example.com' AND "users"."id" != 1) LIMIT 1
117
- Binary data inserted for `string` type on column `encrypted_password`
118
- SQL (0.9ms) UPDATE "users" SET "email" = ?, "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["email", "changed@example.com"], ["encrypted_password", "$2a$04$MObNrJOduOS.0K998g/60uG5klHKr8J4Cn222r6fQ6Amb0SCQKuOm"], ["updated_at", "2015-03-31 20:39:23.681628"]]
119
-  (0.1ms) RELEASE SAVEPOINT active_record_1
120
- Completed 200 OK in 24ms (Views: 0.8ms | ActiveRecord: 1.5ms)
121
-  (0.1ms) SELECT COUNT(*) FROM "users"
122
-  (0.6ms) rollback transaction
123
-  (0.1ms) begin transaction
124
-  (0.1ms) SAVEPOINT active_record_1
125
- User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-14@example.com' LIMIT 1
126
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'HG3hCWHfBk5CRioxfeTs'
127
- Binary data inserted for `string` type on column `encrypted_password`
128
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "HG3hCWHfBk5CRioxfeTs"], ["created_at", "2015-03-31 20:39:23.704253"], ["email", "ios_user-14@example.com"], ["encrypted_password", "$2a$04$LfjDH8MhpuNJBQq/8NeEjOOQy4HCdSsiQqWjMYI8ZUBTeSb24BkPC"], ["updated_at", "2015-03-31 20:39:23.704253"]]
129
-  (0.0ms) RELEASE SAVEPOINT active_record_1
130
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
131
- Processing by DeviseIosRails::RegistrationsController#update as JSON
132
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
133
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-14@example.com' ORDER BY "users"."id" ASC LIMIT 1
134
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-14@example.com' ORDER BY "users"."id" ASC LIMIT 1
135
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
136
-  (0.1ms) SAVEPOINT active_record_1
137
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'changed@example.com' AND "users"."id" != 1) LIMIT 1
138
- Binary data inserted for `string` type on column `encrypted_password`
139
- SQL (0.7ms) UPDATE "users" SET "email" = ?, "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["email", "changed@example.com"], ["encrypted_password", "$2a$04$KERCOrZ.nKcmQTB.8WHHcOn3O88li/qv5WR6m8jEG5t9tuKIoZuEy"], ["updated_at", "2015-03-31 20:39:23.714042"]]
140
-  (0.1ms) RELEASE SAVEPOINT active_record_1
141
- Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.2ms)
142
-  (0.6ms) rollback transaction
143
-  (0.1ms) begin transaction
144
-  (0.0ms) SAVEPOINT active_record_1
145
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-15@example.com' LIMIT 1
146
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'rWKwDyc3-5QYrAjQeeSD'
147
- Binary data inserted for `string` type on column `encrypted_password`
148
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "rWKwDyc3-5QYrAjQeeSD"], ["created_at", "2015-03-31 20:39:23.723461"], ["email", "ios_user-15@example.com"], ["encrypted_password", "$2a$04$kBGdDqwUF2MR2cOYC41/qur8t5unjNvjrplXYVmzKHcXGID6aC.da"], ["updated_at", "2015-03-31 20:39:23.723461"]]
149
-  (0.0ms) RELEASE SAVEPOINT active_record_1
150
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
151
- Processing by DeviseIosRails::RegistrationsController#update as JSON
152
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
153
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-15@example.com' ORDER BY "users"."id" ASC LIMIT 1
154
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-15@example.com' ORDER BY "users"."id" ASC LIMIT 1
155
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
156
-  (0.1ms) SAVEPOINT active_record_1
157
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'changed@example.com' AND "users"."id" != 1) LIMIT 1
158
- Binary data inserted for `string` type on column `encrypted_password`
159
- SQL (0.3ms) UPDATE "users" SET "email" = ?, "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["email", "changed@example.com"], ["encrypted_password", "$2a$04$yG5kj6QP.KY3.fVN5lekseP5YfflzOfaQCXgdCVvvCkByykXAuFCq"], ["updated_at", "2015-03-31 20:39:23.731858"]]
160
-  (0.0ms) RELEASE SAVEPOINT active_record_1
161
- Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.6ms)
162
-  (0.6ms) rollback transaction
163
-  (0.1ms) begin transaction
164
-  (0.1ms) SAVEPOINT active_record_1
165
- User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-16@example.com' LIMIT 1
166
-  (0.3ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'tJoXeSJzQLkznfQx8x2U'
167
- Binary data inserted for `string` type on column `encrypted_password`
168
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "tJoXeSJzQLkznfQx8x2U"], ["created_at", "2015-03-31 20:39:23.745310"], ["email", "ios_user-16@example.com"], ["encrypted_password", "$2a$04$VLgRkMF1A02Has7AZK3YpO9VupZtam4cTx6qPJUUk.y8SYz8CeO9a"], ["updated_at", "2015-03-31 20:39:23.745310"]]
169
-  (0.1ms) RELEASE SAVEPOINT active_record_1
170
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
171
- Processing by DeviseIosRails::RegistrationsController#update as JSON
172
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
173
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-16@example.com' ORDER BY "users"."id" ASC LIMIT 1
174
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-16@example.com' ORDER BY "users"."id" ASC LIMIT 1
175
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
176
-  (0.0ms) SAVEPOINT active_record_1
177
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'changed@example.com' AND "users"."id" != 1) LIMIT 1
178
- Binary data inserted for `string` type on column `encrypted_password`
179
- SQL (0.4ms) UPDATE "users" SET "email" = ?, "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["email", "changed@example.com"], ["encrypted_password", "$2a$04$iUudw471ZUW6TtHUBIo9GuEMREw1cxZqOUVQSsa8wto8H/IbUiy0."], ["updated_at", "2015-03-31 20:39:23.754538"]]
180
-  (0.1ms) RELEASE SAVEPOINT active_record_1
181
- Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.7ms)
182
-  (0.6ms) rollback transaction
183
-  (0.0ms) begin transaction
184
-  (0.0ms) SAVEPOINT active_record_1
185
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-17@example.com' LIMIT 1
186
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'UDzxzG_5xxf2gtyirAxd'
187
- Binary data inserted for `string` type on column `encrypted_password`
188
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "UDzxzG_5xxf2gtyirAxd"], ["created_at", "2015-03-31 20:39:23.763130"], ["email", "ios_user-17@example.com"], ["encrypted_password", "$2a$04$9Iua56NTX13Hxc6kCycsHe5D64LAaM3/GZqEAf6YxUV20R2P2mxdK"], ["updated_at", "2015-03-31 20:39:23.763130"]]
189
-  (0.0ms) RELEASE SAVEPOINT active_record_1
190
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
191
- Processing by DeviseIosRails::RegistrationsController#update as JSON
192
- Parameters: {"user"=>{"email"=>"changed@example.com", "password"=>"[FILTERED]"}}
193
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-17@example.com' ORDER BY "users"."id" ASC LIMIT 1
194
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-17@example.com' ORDER BY "users"."id" ASC LIMIT 1
195
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
196
-  (0.0ms) SAVEPOINT active_record_1
197
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'changed@example.com' AND "users"."id" != 1) LIMIT 1
198
- Binary data inserted for `string` type on column `encrypted_password`
199
- SQL (0.3ms) UPDATE "users" SET "email" = ?, "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["email", "changed@example.com"], ["encrypted_password", "$2a$04$dFO9HETsdbx7RbbHGDx00eWVery3NHXoh7ZejGJiES41rKZqCQMLi"], ["updated_at", "2015-03-31 20:39:23.770614"]]
200
-  (0.0ms) RELEASE SAVEPOINT active_record_1
201
- Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.6ms)
202
-  (0.6ms) rollback transaction
203
-  (0.0ms) begin transaction
204
-  (0.0ms) SAVEPOINT active_record_1
205
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-18@example.com' LIMIT 1
206
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '4h7mNUGm3hzGMkN729zq'
207
- Binary data inserted for `string` type on column `encrypted_password`
208
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "4h7mNUGm3hzGMkN729zq"], ["created_at", "2015-03-31 20:39:23.777764"], ["email", "ios_user-18@example.com"], ["encrypted_password", "$2a$04$yJhUmj2UQunkSRtr38BituKXnLNmFGDIIGAHJ7NHi1W6caWzMKvW6"], ["updated_at", "2015-03-31 20:39:23.777764"]]
209
-  (0.0ms) RELEASE SAVEPOINT active_record_1
210
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
211
- Processing by DeviseIosRails::RegistrationsController#update as JSON
212
- Parameters: {"user"=>{"email"=>"not_valid_email", "password"=>"[FILTERED]"}}
213
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-18@example.com' ORDER BY "users"."id" ASC LIMIT 1
214
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-18@example.com' ORDER BY "users"."id" ASC LIMIT 1
215
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
216
-  (0.1ms) SAVEPOINT active_record_1
217
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'not_valid_email' AND "users"."id" != 1) LIMIT 1
218
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
219
- Completed 422 Unprocessable Entity in 7ms (Views: 0.6ms | ActiveRecord: 0.3ms)
220
-  (0.4ms) rollback transaction
221
-  (0.0ms) begin transaction
222
-  (0.0ms) SAVEPOINT active_record_1
223
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-19@example.com' LIMIT 1
224
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '71pUkaFMKYz3SJebAF4s'
225
- Binary data inserted for `string` type on column `encrypted_password`
226
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "71pUkaFMKYz3SJebAF4s"], ["created_at", "2015-03-31 20:39:23.791691"], ["email", "ios_user-19@example.com"], ["encrypted_password", "$2a$04$FdBXKRQNw2Z0LJ3q2.LLA.RsLfRYNoBX.Lag.g3P19/lHDW2hWGlS"], ["updated_at", "2015-03-31 20:39:23.791691"]]
227
-  (0.0ms) RELEASE SAVEPOINT active_record_1
228
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
229
- Processing by DeviseIosRails::RegistrationsController#update as JSON
230
- Parameters: {"user"=>{"email"=>"not_valid_email", "password"=>"[FILTERED]"}}
231
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-19@example.com' ORDER BY "users"."id" ASC LIMIT 1
232
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-19@example.com' ORDER BY "users"."id" ASC LIMIT 1
233
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
234
-  (0.1ms) SAVEPOINT active_record_1
235
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'not_valid_email' AND "users"."id" != 1) LIMIT 1
236
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
237
- Completed 422 Unprocessable Entity in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms)
238
-  (0.4ms) rollback transaction
239
-  (0.0ms) begin transaction
240
-  (0.0ms) SAVEPOINT active_record_1
241
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-20@example.com' LIMIT 1
242
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '9M_sAih8siWfDtgSfrEc'
243
- Binary data inserted for `string` type on column `encrypted_password`
244
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "9M_sAih8siWfDtgSfrEc"], ["created_at", "2015-03-31 20:39:23.806011"], ["email", "ios_user-20@example.com"], ["encrypted_password", "$2a$04$Ewu6T9fluvV/OLZwLDcgT.1hj.7RLw2w7x5m2sRFKvriAZfWVhPa2"], ["updated_at", "2015-03-31 20:39:23.806011"]]
245
-  (0.0ms) RELEASE SAVEPOINT active_record_1
246
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
247
- Processing by DeviseIosRails::RegistrationsController#update as JSON
248
- Parameters: {"user"=>{"email"=>"not_valid_email", "password"=>"[FILTERED]"}}
249
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-20@example.com' ORDER BY "users"."id" ASC LIMIT 1
250
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-20@example.com' ORDER BY "users"."id" ASC LIMIT 1
251
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
252
-  (0.0ms) SAVEPOINT active_record_1
253
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'not_valid_email' AND "users"."id" != 1) LIMIT 1
254
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
255
- Completed 422 Unprocessable Entity in 7ms (Views: 0.7ms | ActiveRecord: 0.4ms)
256
-  (0.4ms) rollback transaction
257
-  (0.1ms) begin transaction
258
-  (0.1ms) SAVEPOINT active_record_1
259
- User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-21@example.com' LIMIT 1
260
-  (0.3ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'GXadRynKJg1ypVakHY5v'
261
- Binary data inserted for `string` type on column `encrypted_password`
262
- SQL (1.5ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "GXadRynKJg1ypVakHY5v"], ["created_at", "2015-03-31 20:39:23.821421"], ["email", "ios_user-21@example.com"], ["encrypted_password", "$2a$04$a0xB8mLjhU10V67tfzP5M.HuLsktH5kJ.Uxtu26JKCgqJhOoWw4dS"], ["updated_at", "2015-03-31 20:39:23.821421"]]
263
-  (0.1ms) RELEASE SAVEPOINT active_record_1
264
- Started PUT "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
265
- Processing by DeviseIosRails::RegistrationsController#update as JSON
266
- Parameters: {"user"=>{"email"=>"not_valid_email", "password"=>"[FILTERED]"}}
267
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-21@example.com' ORDER BY "users"."id" ASC LIMIT 1
268
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-21@example.com' ORDER BY "users"."id" ASC LIMIT 1
269
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
270
-  (0.1ms) SAVEPOINT active_record_1
271
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'not_valid_email' AND "users"."id" != 1) LIMIT 1
272
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
273
- Completed 422 Unprocessable Entity in 8ms (Views: 0.6ms | ActiveRecord: 0.4ms)
274
-  (0.4ms) rollback transaction
275
-  (0.0ms) begin transaction
276
-  (0.0ms) SAVEPOINT active_record_1
277
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-22@example.com' LIMIT 1
278
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'f9cTPSUs4fVCg13HE9xT'
279
- Binary data inserted for `string` type on column `encrypted_password`
280
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "f9cTPSUs4fVCg13HE9xT"], ["created_at", "2015-03-31 20:39:23.839209"], ["email", "ios_user-22@example.com"], ["encrypted_password", "$2a$04$xAweQvimxMiWq8uPkR.BbOOSvITfpDZR1GxjoJeBI9qxv7K6irnpi"], ["updated_at", "2015-03-31 20:39:23.839209"]]
281
-  (0.0ms) RELEASE SAVEPOINT active_record_1
282
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
283
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
284
- Completed 401 Unauthorized in 0ms
285
-  (0.5ms) rollback transaction
286
-  (0.0ms) begin transaction
287
-  (0.0ms) SAVEPOINT active_record_1
288
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-23@example.com' LIMIT 1
289
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'qz2qwRqJrDyxmqBiufVh'
290
- Binary data inserted for `string` type on column `encrypted_password`
291
- SQL (0.5ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "qz2qwRqJrDyxmqBiufVh"], ["created_at", "2015-03-31 20:39:23.846544"], ["email", "ios_user-23@example.com"], ["encrypted_password", "$2a$04$S0Luksvq7rpEooNHGZB7HOHaVYBTWLQb/kLoryKRkBc3Hcz5Hhxru"], ["updated_at", "2015-03-31 20:39:23.846544"]]
292
-  (0.1ms) RELEASE SAVEPOINT active_record_1
293
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
294
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
295
- Completed 401 Unauthorized in 1ms
296
-  (0.4ms) rollback transaction
297
-  (0.0ms) begin transaction
298
-  (0.0ms) SAVEPOINT active_record_1
299
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-24@example.com' LIMIT 1
300
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'zHyMm3WV-ctVJ-ExaJfK'
301
- Binary data inserted for `string` type on column `encrypted_password`
302
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "zHyMm3WV-ctVJ-ExaJfK"], ["created_at", "2015-03-31 20:39:23.855717"], ["email", "ios_user-24@example.com"], ["encrypted_password", "$2a$04$evuP5MII7oE1eIBVo0wNu.VIxmZp.xbDh00BAWQDfuWNM8nLGKWLe"], ["updated_at", "2015-03-31 20:39:23.855717"]]
303
-  (0.0ms) RELEASE SAVEPOINT active_record_1
304
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
305
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
306
- Completed 401 Unauthorized in 0ms
307
-  (0.4ms) rollback transaction
308
-  (0.0ms) begin transaction
309
-  (0.0ms) SAVEPOINT active_record_1
310
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-25@example.com' LIMIT 1
311
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'uSyMhD94XSAe3s6kgcHC'
312
- Binary data inserted for `string` type on column `encrypted_password`
313
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "uSyMhD94XSAe3s6kgcHC"], ["created_at", "2015-03-31 20:39:23.862976"], ["email", "ios_user-25@example.com"], ["encrypted_password", "$2a$04$ifg2OKf45QWa3sDwon/U/u2XM17swCSeA0yBqHPdOBMol.zL9TUMq"], ["updated_at", "2015-03-31 20:39:23.862976"]]
314
-  (0.0ms) RELEASE SAVEPOINT active_record_1
315
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
316
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
317
- Completed 401 Unauthorized in 0ms
318
-  (0.5ms) rollback transaction
319
-  (0.0ms) begin transaction
320
-  (0.0ms) SAVEPOINT active_record_1
321
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-26@example.com' LIMIT 1
322
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '36dM6x7LRoXTS4JWAp1U'
323
- Binary data inserted for `string` type on column `encrypted_password`
324
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "36dM6x7LRoXTS4JWAp1U"], ["created_at", "2015-03-31 20:39:23.871243"], ["email", "ios_user-26@example.com"], ["encrypted_password", "$2a$04$r2KP0qSkiizX56G8bv4/rOODLT/4UCdIDSNv04iPrj4vB9jfaMUXe"], ["updated_at", "2015-03-31 20:39:23.871243"]]
325
-  (0.0ms) RELEASE SAVEPOINT active_record_1
326
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
327
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
328
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-27@example.com' ORDER BY "users"."id" ASC LIMIT 1
329
- Completed 401 Unauthorized in 1ms
330
-  (0.4ms) rollback transaction
331
-  (0.0ms) begin transaction
332
-  (0.0ms) SAVEPOINT active_record_1
333
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-28@example.com' LIMIT 1
334
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'PuDtFPM2Kynyi8K7uw4L'
335
- Binary data inserted for `string` type on column `encrypted_password`
336
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "PuDtFPM2Kynyi8K7uw4L"], ["created_at", "2015-03-31 20:39:23.881464"], ["email", "ios_user-28@example.com"], ["encrypted_password", "$2a$04$NFEj9HhEzEEoePy1LNZ8EO9tHoVOyvI4iqhSMchDAQwvzRXQAyjhu"], ["updated_at", "2015-03-31 20:39:23.881464"]]
337
-  (0.0ms) RELEASE SAVEPOINT active_record_1
338
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
339
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
340
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-29@example.com' ORDER BY "users"."id" ASC LIMIT 1
341
- Completed 401 Unauthorized in 1ms
342
-  (1.7ms) rollback transaction
343
-  (0.2ms) begin transaction
344
-  (0.1ms) SAVEPOINT active_record_1
345
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-30@example.com' LIMIT 1
346
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'xBX7JvYBYJZa41_PRrxy'
347
- Binary data inserted for `string` type on column `encrypted_password`
348
- SQL (0.4ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "xBX7JvYBYJZa41_PRrxy"], ["created_at", "2015-03-31 20:39:23.896684"], ["email", "ios_user-30@example.com"], ["encrypted_password", "$2a$04$JoHdYo.fJkDkyF9cm1IjPuez.UXkV2/jddHvTYx1tYOxiL0pkNAcS"], ["updated_at", "2015-03-31 20:39:23.896684"]]
349
-  (0.1ms) RELEASE SAVEPOINT active_record_1
350
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
351
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
352
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-31@example.com' ORDER BY "users"."id" ASC LIMIT 1
353
- Completed 401 Unauthorized in 1ms
354
-  (0.5ms) rollback transaction
355
-  (0.0ms) begin transaction
356
-  (0.0ms) SAVEPOINT active_record_1
357
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-32@example.com' LIMIT 1
358
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'j-FFKUkqMZ7GWDt_Jsnt'
359
- Binary data inserted for `string` type on column `encrypted_password`
360
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "j-FFKUkqMZ7GWDt_Jsnt"], ["created_at", "2015-03-31 20:39:23.907760"], ["email", "ios_user-32@example.com"], ["encrypted_password", "$2a$04$0k3F5we8lqDDQZMwTAt4.OKJphp.yJjvEaY0CmXe8h41uncPBML1K"], ["updated_at", "2015-03-31 20:39:23.907760"]]
361
-  (0.0ms) RELEASE SAVEPOINT active_record_1
362
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
363
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
364
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-33@example.com' ORDER BY "users"."id" ASC LIMIT 1
365
- Completed 401 Unauthorized in 1ms
366
-  (0.5ms) rollback transaction
367
-  (0.1ms) begin transaction
368
-  (0.1ms) SAVEPOINT active_record_1
369
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-34@example.com' LIMIT 1
370
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'yyCnKyKdUzexd4dPvxfg'
371
- Binary data inserted for `string` type on column `encrypted_password`
372
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "yyCnKyKdUzexd4dPvxfg"], ["created_at", "2015-03-31 20:39:23.917942"], ["email", "ios_user-34@example.com"], ["encrypted_password", "$2a$04$l75wgVR1JkZon8kdI7I8nuLt025HxnmSIe2LfiDJGbdftjx9m1gIa"], ["updated_at", "2015-03-31 20:39:23.917942"]]
373
-  (0.0ms) RELEASE SAVEPOINT active_record_1
374
-  (0.0ms) SELECT COUNT(*) FROM "users"
375
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
376
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
377
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-34@example.com' ORDER BY "users"."id" ASC LIMIT 1
378
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-34@example.com' ORDER BY "users"."id" ASC LIMIT 1
379
-  (0.0ms) SAVEPOINT active_record_1
380
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
381
-  (0.0ms) RELEASE SAVEPOINT active_record_1
382
- Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.5ms)
383
-  (0.1ms) SELECT COUNT(*) FROM "users"
384
-  (0.7ms) rollback transaction
385
-  (0.1ms) begin transaction
386
-  (0.1ms) SAVEPOINT active_record_1
387
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-35@example.com' LIMIT 1
388
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'csXhSA1LpinPm-esTwWt'
389
- Binary data inserted for `string` type on column `encrypted_password`
390
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "csXhSA1LpinPm-esTwWt"], ["created_at", "2015-03-31 20:39:23.933578"], ["email", "ios_user-35@example.com"], ["encrypted_password", "$2a$04$1FAsrrHKQCXasOgsRpT6QO2rU8X1ffDORc3zXY1L2r4IpRB.quXAO"], ["updated_at", "2015-03-31 20:39:23.933578"]]
391
-  (0.0ms) RELEASE SAVEPOINT active_record_1
392
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
393
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
394
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-35@example.com' ORDER BY "users"."id" ASC LIMIT 1
395
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-35@example.com' ORDER BY "users"."id" ASC LIMIT 1
396
-  (0.0ms) SAVEPOINT active_record_1
397
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
398
-  (0.0ms) RELEASE SAVEPOINT active_record_1
399
- Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.5ms)
400
-  (0.6ms) rollback transaction
401
-  (0.0ms) begin transaction
402
-  (0.0ms) SAVEPOINT active_record_1
403
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-36@example.com' LIMIT 1
404
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'QQx-nSNy4fS_Aj-faUpf'
405
- Binary data inserted for `string` type on column `encrypted_password`
406
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "QQx-nSNy4fS_Aj-faUpf"], ["created_at", "2015-03-31 20:39:23.944380"], ["email", "ios_user-36@example.com"], ["encrypted_password", "$2a$04$M8BliNUWERReKnTlAM/1ROkNPuI3ag1mr8AZ4K1WPmt4BdF/gQkPi"], ["updated_at", "2015-03-31 20:39:23.944380"]]
407
-  (0.0ms) RELEASE SAVEPOINT active_record_1
408
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
409
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
410
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-36@example.com' ORDER BY "users"."id" ASC LIMIT 1
411
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-36@example.com' ORDER BY "users"."id" ASC LIMIT 1
412
-  (0.0ms) SAVEPOINT active_record_1
413
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
414
-  (0.0ms) RELEASE SAVEPOINT active_record_1
415
- Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.6ms)
416
-  (0.6ms) rollback transaction
417
-  (0.0ms) begin transaction
418
-  (0.0ms) SAVEPOINT active_record_1
419
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-37@example.com' LIMIT 1
420
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '4hd1w-C87ENftBZzrxxk'
421
- Binary data inserted for `string` type on column `encrypted_password`
422
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "4hd1w-C87ENftBZzrxxk"], ["created_at", "2015-03-31 20:39:23.957950"], ["email", "ios_user-37@example.com"], ["encrypted_password", "$2a$04$c9sHTB0fk/t7plmI1l99kOBzVykLTCve7b2LjDpWRl2hpVMsQm1B."], ["updated_at", "2015-03-31 20:39:23.957950"]]
423
-  (0.0ms) RELEASE SAVEPOINT active_record_1
424
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
425
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
426
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-37@example.com' ORDER BY "users"."id" ASC LIMIT 1
427
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-37@example.com' ORDER BY "users"."id" ASC LIMIT 1
428
-  (0.1ms) SAVEPOINT active_record_1
429
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
430
-  (0.0ms) RELEASE SAVEPOINT active_record_1
431
- Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.5ms)
432
-  (0.5ms) rollback transaction
433
-  (0.1ms) begin transaction
434
-  (0.1ms) SAVEPOINT active_record_1
435
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-38@example.com' LIMIT 1
436
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'E3pRSErqoyQ8TyHz8Vb9'
437
- Binary data inserted for `string` type on column `encrypted_password`
438
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "E3pRSErqoyQ8TyHz8Vb9"], ["created_at", "2015-03-31 20:39:23.968800"], ["email", "ios_user-38@example.com"], ["encrypted_password", "$2a$04$6ZSLzKuOmJ56NNq7.syiCOUCiScoXOaZ.C5khCXDYfCtQRrUqg7aS"], ["updated_at", "2015-03-31 20:39:23.968800"]]
439
-  (0.0ms) RELEASE SAVEPOINT active_record_1
440
- Started DELETE "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
441
- Processing by DeviseIosRails::RegistrationsController#destroy as JSON
442
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-38@example.com' ORDER BY "users"."id" ASC LIMIT 1
443
- CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-38@example.com' ORDER BY "users"."id" ASC LIMIT 1
444
-  (0.0ms) SAVEPOINT active_record_1
445
- SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
446
-  (0.0ms) RELEASE SAVEPOINT active_record_1
447
- Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.5ms)
448
-  (0.6ms) rollback transaction
449
-  (0.1ms) begin transaction
450
-  (0.0ms) SAVEPOINT active_record_1
451
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-39@example.com' LIMIT 1
452
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'PB15dLHc9engwhi3F18D'
453
- Binary data inserted for `string` type on column `encrypted_password`
454
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "PB15dLHc9engwhi3F18D"], ["created_at", "2015-03-31 20:39:23.979248"], ["email", "ios_user-39@example.com"], ["encrypted_password", "$2a$04$fQQieks8KaEOL.YCIKxsXuugVmXkYaTawJFQk6cpuAvuV.T04cdI6"], ["updated_at", "2015-03-31 20:39:23.979248"]]
455
-  (0.0ms) RELEASE SAVEPOINT active_record_1
456
-  (0.1ms) SELECT COUNT(*) FROM "users"
457
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:23 +0200
458
- Processing by DeviseIosRails::PasswordsController#update as JSON
459
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
460
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-39@example.com' ORDER BY "users"."id" ASC LIMIT 1
461
-  (0.0ms) SAVEPOINT active_record_1
462
- Binary data inserted for `string` type on column `encrypted_password`
463
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$zHZh.8X4foDtFEXYAA4nr.BzIOuZFe7knYPtoyutqycYrdbPOkm7e"], ["updated_at", "2015-03-31 20:39:23.990053"]]
464
-  (0.0ms) RELEASE SAVEPOINT active_record_1
465
- Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.6ms)
466
-  (0.1ms) SELECT COUNT(*) FROM "users"
467
-  (0.6ms) rollback transaction
468
-  (0.0ms) begin transaction
469
-  (0.1ms) SAVEPOINT active_record_1
470
- User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-40@example.com' LIMIT 1
471
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'XRH43iapYY8PjhbFB-VN'
472
- Binary data inserted for `string` type on column `encrypted_password`
473
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "XRH43iapYY8PjhbFB-VN"], ["created_at", "2015-03-31 20:39:24.000348"], ["email", "ios_user-40@example.com"], ["encrypted_password", "$2a$04$zBIxDbj3b5GIuIwG5K8L3O3rz.oBxKr9ybt7OMivy/pBXbgilfbJS"], ["updated_at", "2015-03-31 20:39:24.000348"]]
474
-  (0.0ms) RELEASE SAVEPOINT active_record_1
475
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
476
- Processing by DeviseIosRails::PasswordsController#update as JSON
477
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
478
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-40@example.com' ORDER BY "users"."id" ASC LIMIT 1
479
-  (0.0ms) SAVEPOINT active_record_1
480
- Binary data inserted for `string` type on column `encrypted_password`
481
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$EfUKXVUFexdHC1bvokXDjOhZjNismcjiHE.yf46xEQqIGvWWS6t0e"], ["updated_at", "2015-03-31 20:39:24.006189"]]
482
-  (0.1ms) RELEASE SAVEPOINT active_record_1
483
- Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.6ms)
484
-  (0.6ms) rollback transaction
485
-  (0.0ms) begin transaction
486
-  (0.0ms) SAVEPOINT active_record_1
487
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-41@example.com' LIMIT 1
488
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'yyUB9shFf2J7jJ84RyK-'
489
- Binary data inserted for `string` type on column `encrypted_password`
490
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "yyUB9shFf2J7jJ84RyK-"], ["created_at", "2015-03-31 20:39:24.012857"], ["email", "ios_user-41@example.com"], ["encrypted_password", "$2a$04$CCDA5z1yXXyx0Z5XX8EKsOMElDea4fN9XYrvodi7MN85ir7pi5Bs2"], ["updated_at", "2015-03-31 20:39:24.012857"]]
491
-  (0.0ms) RELEASE SAVEPOINT active_record_1
492
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
493
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
494
- Processing by DeviseIosRails::PasswordsController#update as JSON
495
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
496
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-41@example.com' ORDER BY "users"."id" ASC LIMIT 1
497
-  (0.1ms) SAVEPOINT active_record_1
498
- Binary data inserted for `string` type on column `encrypted_password`
499
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$4.od3nhi33PskTVozhFMnOnh/ZbwITigstHgSrRdOGq2TA/l6wv2K"], ["updated_at", "2015-03-31 20:39:24.018982"]]
500
-  (0.0ms) RELEASE SAVEPOINT active_record_1
501
- Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms)
502
- User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
503
-  (0.5ms) rollback transaction
504
-  (0.0ms) begin transaction
505
-  (0.0ms) SAVEPOINT active_record_1
506
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-42@example.com' LIMIT 1
507
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'siokPmbV1xEhtKuhRzPs'
508
- Binary data inserted for `string` type on column `encrypted_password`
509
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "siokPmbV1xEhtKuhRzPs"], ["created_at", "2015-03-31 20:39:24.025702"], ["email", "ios_user-42@example.com"], ["encrypted_password", "$2a$04$4dvrm8xDjc.0ppx5yGGIUuzYLTUCcgbm3EjA3dNI8E3PBtyiyb5tm"], ["updated_at", "2015-03-31 20:39:24.025702"]]
510
-  (0.0ms) RELEASE SAVEPOINT active_record_1
511
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
512
- Processing by DeviseIosRails::PasswordsController#update as JSON
513
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
514
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-42@example.com' ORDER BY "users"."id" ASC LIMIT 1
515
-  (0.1ms) SAVEPOINT active_record_1
516
- Binary data inserted for `string` type on column `encrypted_password`
517
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$vKz4HP/EGPFTUZBs6xyuoeSjuZAtDBJfPiNCieGzvYwWKQOBc9WbC"], ["updated_at", "2015-03-31 20:39:24.031019"]]
518
-  (0.0ms) RELEASE SAVEPOINT active_record_1
519
- Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms)
520
-  (0.6ms) rollback transaction
521
-  (0.0ms) begin transaction
522
-  (0.0ms) SAVEPOINT active_record_1
523
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-43@example.com' LIMIT 1
524
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'YnuizyNvEJg_5kEp-_7H'
525
- Binary data inserted for `string` type on column `encrypted_password`
526
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "YnuizyNvEJg_5kEp-_7H"], ["created_at", "2015-03-31 20:39:24.037625"], ["email", "ios_user-43@example.com"], ["encrypted_password", "$2a$04$JOEwu6i9Oh5tr1l8BKYP2.aHtghF6p9HqyAOn0N8T8TEAj7lljXLG"], ["updated_at", "2015-03-31 20:39:24.037625"]]
527
-  (0.0ms) RELEASE SAVEPOINT active_record_1
528
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
529
- Processing by DeviseIosRails::PasswordsController#update as JSON
530
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
531
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-43@example.com' ORDER BY "users"."id" ASC LIMIT 1
532
-  (0.0ms) SAVEPOINT active_record_1
533
- Binary data inserted for `string` type on column `encrypted_password`
534
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$iEYL5LMsMsvEjc.xL8Fnh.IhI9cGBguwT1WLFnOx0jsk2TZbZ0LqC"], ["updated_at", "2015-03-31 20:39:24.042615"]]
535
-  (0.0ms) RELEASE SAVEPOINT active_record_1
536
- Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.5ms)
537
-  (0.6ms) rollback transaction
538
-  (0.1ms) begin transaction
539
-  (0.2ms) SAVEPOINT active_record_1
540
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-44@example.com' LIMIT 1
541
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'hqHv1tajfWbJx3XyHBBE'
542
- Binary data inserted for `string` type on column `encrypted_password`
543
- SQL (0.4ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "hqHv1tajfWbJx3XyHBBE"], ["created_at", "2015-03-31 20:39:24.051607"], ["email", "ios_user-44@example.com"], ["encrypted_password", "$2a$04$oFbKAjKxbN.VWBYMPDAABeSLp7p.FD9Pl6UudjYhIVX8xojP4Xd9C"], ["updated_at", "2015-03-31 20:39:24.051607"]]
544
-  (0.1ms) RELEASE SAVEPOINT active_record_1
545
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
546
- Processing by DeviseIosRails::PasswordsController#update as JSON
547
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
548
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-44@example.com' ORDER BY "users"."id" ASC LIMIT 1
549
-  (0.3ms) SAVEPOINT active_record_1
550
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
551
- Completed 422 Unprocessable Entity in 11ms (Views: 0.7ms | ActiveRecord: 0.6ms)
552
-  (0.4ms) rollback transaction
553
-  (0.0ms) begin transaction
554
-  (0.0ms) SAVEPOINT active_record_1
555
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-45@example.com' LIMIT 1
556
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'pCgxviSutqjTUAP7CytJ'
557
- Binary data inserted for `string` type on column `encrypted_password`
558
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "pCgxviSutqjTUAP7CytJ"], ["created_at", "2015-03-31 20:39:24.071479"], ["email", "ios_user-45@example.com"], ["encrypted_password", "$2a$04$OlxWQmsPkKfSgmW0tGU3DOymPja7QS0Dm/1HfANgZCjasx5zFz/dS"], ["updated_at", "2015-03-31 20:39:24.071479"]]
559
-  (0.2ms) RELEASE SAVEPOINT active_record_1
560
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
561
- Processing by DeviseIosRails::PasswordsController#update as JSON
562
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
563
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-45@example.com' ORDER BY "users"."id" ASC LIMIT 1
564
-  (0.0ms) SAVEPOINT active_record_1
565
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
566
- Completed 422 Unprocessable Entity in 4ms (Views: 0.7ms | ActiveRecord: 0.2ms)
567
-  (0.5ms) rollback transaction
568
-  (0.1ms) begin transaction
569
-  (0.1ms) SAVEPOINT active_record_1
570
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-46@example.com' LIMIT 1
571
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'u7dUeyTX8djHJFssohUN'
572
- Binary data inserted for `string` type on column `encrypted_password`
573
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "u7dUeyTX8djHJFssohUN"], ["created_at", "2015-03-31 20:39:24.084263"], ["email", "ios_user-46@example.com"], ["encrypted_password", "$2a$04$dIF0l2rngrmVCgJGLD.XC.Em50prw8rlBIyydflHKbq0/GfF9eK1S"], ["updated_at", "2015-03-31 20:39:24.084263"]]
574
-  (0.0ms) RELEASE SAVEPOINT active_record_1
575
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
576
- Processing by DeviseIosRails::PasswordsController#update as JSON
577
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
578
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-46@example.com' ORDER BY "users"."id" ASC LIMIT 1
579
-  (0.0ms) SAVEPOINT active_record_1
580
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
581
- Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.2ms)
582
-  (0.4ms) rollback transaction
583
-  (0.0ms) begin transaction
584
-  (0.0ms) SAVEPOINT active_record_1
585
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-47@example.com' LIMIT 1
586
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'BNNs4v_QoRRyXG4_RyoJ'
587
- Binary data inserted for `string` type on column `encrypted_password`
588
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "BNNs4v_QoRRyXG4_RyoJ"], ["created_at", "2015-03-31 20:39:24.095014"], ["email", "ios_user-47@example.com"], ["encrypted_password", "$2a$04$m34kCV7CwkbqDQ/Md974U.CiisrcUTPRqidkMGOuc8rjHxYKgZlF6"], ["updated_at", "2015-03-31 20:39:24.095014"]]
589
-  (0.1ms) RELEASE SAVEPOINT active_record_1
590
- Started PUT "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
591
- Processing by DeviseIosRails::PasswordsController#update as JSON
592
- Parameters: {"user"=>{"password"=>"[FILTERED]", "passwordConfirmation"=>"[FILTERED]"}}
593
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-47@example.com' ORDER BY "users"."id" ASC LIMIT 1
594
-  (0.0ms) SAVEPOINT active_record_1
595
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
596
- Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.2ms)
597
-  (0.4ms) rollback transaction
598
-  (0.0ms) begin transaction
599
-  (0.0ms) SAVEPOINT active_record_1
600
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-48@example.com' LIMIT 1
601
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'xQHQ9vZW23aRMHosrFYx'
602
- Binary data inserted for `string` type on column `encrypted_password`
603
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "xQHQ9vZW23aRMHosrFYx"], ["created_at", "2015-03-31 20:39:24.109581"], ["email", "ios_user-48@example.com"], ["encrypted_password", "$2a$04$oJghg9SF3wFfmM.RUowjsOLDE9bCSOBKtqTAhWs41PmJA7h4G60VG"], ["updated_at", "2015-03-31 20:39:24.109581"]]
604
-  (0.1ms) RELEASE SAVEPOINT active_record_1
605
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
606
- Processing by Devise::SessionsController#create as JSON
607
- Parameters: {"user"=>{"email"=>"ios_user-48@example.com", "password"=>"[FILTERED]"}}
608
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-48@example.com' ORDER BY "users"."id" ASC LIMIT 1
609
- Completed 201 Created in 7ms (Views: 0.7ms | ActiveRecord: 0.1ms)
610
-  (0.5ms) rollback transaction
611
-  (0.0ms) begin transaction
612
-  (0.0ms) SAVEPOINT active_record_1
613
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-49@example.com' LIMIT 1
614
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '3JByMB2FvyYzyUqCKfyg'
615
- Binary data inserted for `string` type on column `encrypted_password`
616
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "3JByMB2FvyYzyUqCKfyg"], ["created_at", "2015-03-31 20:39:24.127817"], ["email", "ios_user-49@example.com"], ["encrypted_password", "$2a$04$bIQTAU0WlLcJ8Qe0tQWNbep4plUQt8qC2hgigk5/JDsTLbh4YMrrO"], ["updated_at", "2015-03-31 20:39:24.127817"]]
617
-  (0.1ms) RELEASE SAVEPOINT active_record_1
618
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
619
- Processing by Devise::SessionsController#create as JSON
620
- Parameters: {"user"=>{"email"=>"ios_user-49@example.com", "password"=>"[FILTERED]"}}
621
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-49@example.com' ORDER BY "users"."id" ASC LIMIT 1
622
- Completed 201 Created in 4ms (Views: 0.7ms | ActiveRecord: 0.1ms)
623
-  (0.4ms) rollback transaction
624
-  (0.1ms) begin transaction
625
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
626
- Processing by Devise::SessionsController#create as JSON
627
- Completed 401 Unauthorized in 1ms
628
-  (0.5ms) rollback transaction
629
-  (0.2ms) begin transaction
630
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
631
- Processing by Devise::SessionsController#create as JSON
632
- Completed 401 Unauthorized in 0ms
633
-  (0.1ms) rollback transaction
634
-  (0.1ms) begin transaction
635
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
636
- Processing by Devise::SessionsController#create as JSON
637
- Completed 401 Unauthorized in 1ms
638
-  (0.1ms) rollback transaction
639
-  (0.0ms) begin transaction
640
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
641
- Processing by Devise::SessionsController#create as JSON
642
- Completed 401 Unauthorized in 0ms
643
-  (0.0ms) rollback transaction
644
-  (0.0ms) begin transaction
645
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
646
- Processing by Devise::SessionsController#create as JSON
647
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
648
- Completed 401 Unauthorized in 0ms
649
-  (0.1ms) rollback transaction
650
-  (0.0ms) begin transaction
651
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
652
- Processing by Devise::SessionsController#create as JSON
653
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
654
- Completed 401 Unauthorized in 0ms
655
-  (0.1ms) rollback transaction
656
-  (0.0ms) begin transaction
657
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
658
- Processing by Devise::SessionsController#create as JSON
659
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
660
- Completed 401 Unauthorized in 1ms
661
-  (0.1ms) rollback transaction
662
-  (0.1ms) begin transaction
663
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
664
- Processing by Devise::SessionsController#create as JSON
665
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
666
- Completed 401 Unauthorized in 1ms
667
-  (0.1ms) rollback transaction
668
-  (0.1ms) begin transaction
669
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
670
- Processing by Devise::SessionsController#create as JSON
671
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
672
- Completed 401 Unauthorized in 0ms
673
-  (0.0ms) rollback transaction
674
-  (0.0ms) begin transaction
675
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
676
- Processing by Devise::SessionsController#create as JSON
677
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
678
- Completed 401 Unauthorized in 0ms
679
-  (0.0ms) rollback transaction
680
-  (0.0ms) begin transaction
681
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
682
- Processing by Devise::SessionsController#create as JSON
683
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
684
- Completed 401 Unauthorized in 0ms
685
-  (0.0ms) rollback transaction
686
-  (0.0ms) begin transaction
687
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
688
- Processing by Devise::SessionsController#create as JSON
689
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
690
- Completed 401 Unauthorized in 0ms
691
-  (0.0ms) rollback transaction
692
-  (0.0ms) begin transaction
693
-  (0.0ms) SAVEPOINT active_record_1
694
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-50@example.com' LIMIT 1
695
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'SuXsTYbDu_1zuP4918_C'
696
- Binary data inserted for `string` type on column `encrypted_password`
697
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "SuXsTYbDu_1zuP4918_C"], ["created_at", "2015-03-31 20:39:24.180956"], ["email", "ios_user-50@example.com"], ["encrypted_password", "$2a$04$xnk5aHjYl0fo3lvfKRSjHuzXz/5yKYrBWjrSr2P1R/xBS7Zrw16AC"], ["updated_at", "2015-03-31 20:39:24.180956"]]
698
-  (0.0ms) RELEASE SAVEPOINT active_record_1
699
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
700
- Processing by Devise::SessionsController#create as JSON
701
- Parameters: {"user"=>{"email"=>"ios_user-50@example.com", "password"=>"[FILTERED]"}}
702
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-50@example.com' ORDER BY "users"."id" ASC LIMIT 1
703
- Completed 201 Created in 4ms (Views: 0.6ms | ActiveRecord: 0.1ms)
704
-  (1.8ms) rollback transaction
705
-  (0.1ms) begin transaction
706
-  (0.0ms) SAVEPOINT active_record_1
707
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-51@example.com' LIMIT 1
708
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'BXoVy7yZ-xXh6WND7tHg'
709
- Binary data inserted for `string` type on column `encrypted_password`
710
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "BXoVy7yZ-xXh6WND7tHg"], ["created_at", "2015-03-31 20:39:24.194162"], ["email", "ios_user-51@example.com"], ["encrypted_password", "$2a$04$WNa74t60wCXuEvO3GR0j/.i5BMLVty2c5mUlLTgpJLE2IGVTtZfF."], ["updated_at", "2015-03-31 20:39:24.194162"]]
711
-  (0.0ms) RELEASE SAVEPOINT active_record_1
712
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
713
- Processing by Devise::SessionsController#create as JSON
714
- Parameters: {"user"=>{"email"=>"ios_user-51@example.com", "password"=>"[FILTERED]"}}
715
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-51@example.com' ORDER BY "users"."id" ASC LIMIT 1
716
- Completed 201 Created in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)
717
-  (0.6ms) rollback transaction
718
-  (0.2ms) begin transaction
719
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
720
- Processing by Devise::SessionsController#create as JSON
721
- Parameters: {"user"=>{"email"=>"non_existent", "password"=>"[FILTERED]"}}
722
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
723
- Completed 401 Unauthorized in 3ms
724
-  (0.1ms) rollback transaction
725
-  (0.1ms) begin transaction
726
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
727
- Processing by Devise::SessionsController#create as JSON
728
- Parameters: {"user"=>{"email"=>"non_existent", "password"=>"[FILTERED]"}}
729
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
730
- Completed 401 Unauthorized in 2ms
731
-  (0.1ms) rollback transaction
732
-  (0.0ms) begin transaction
733
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
734
- Processing by Devise::SessionsController#create as JSON
735
- Parameters: {"user"=>{"email"=>"non_existent", "password"=>"[FILTERED]"}}
736
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
737
- Completed 401 Unauthorized in 2ms
738
-  (0.1ms) rollback transaction
739
-  (0.0ms) begin transaction
740
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
741
- Processing by Devise::SessionsController#create as JSON
742
- Parameters: {"user"=>{"email"=>"non_existent", "password"=>"[FILTERED]"}}
743
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
744
- Completed 401 Unauthorized in 2ms
745
-  (0.1ms) rollback transaction
746
-  (0.1ms) begin transaction
747
-  (0.1ms) SAVEPOINT active_record_1
748
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-52@example.com' LIMIT 1
749
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '9sQ_ZxJzxSbVP6aSYNx9'
750
- Binary data inserted for `string` type on column `encrypted_password`
751
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "9sQ_ZxJzxSbVP6aSYNx9"], ["created_at", "2015-03-31 20:39:24.232872"], ["email", "ios_user-52@example.com"], ["encrypted_password", "$2a$04$.JV.t9VGpcaCrSBL2Tn8ketEUNx9qljnj.DfMKGQjwx8SjMpqVmIa"], ["updated_at", "2015-03-31 20:39:24.232872"]]
752
-  (0.0ms) RELEASE SAVEPOINT active_record_1
753
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
754
- Processing by Devise::SessionsController#create as JSON
755
- Parameters: {"user"=>{"email"=>"ios_user-52@example.com", "password"=>"[FILTERED]"}}
756
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-52@example.com' ORDER BY "users"."id" ASC LIMIT 1
757
- Completed 401 Unauthorized in 2ms
758
-  (0.4ms) rollback transaction
759
-  (0.0ms) begin transaction
760
-  (0.0ms) SAVEPOINT active_record_1
761
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-53@example.com' LIMIT 1
762
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'd7ajgwEcoSsMW8vQ2oN3'
763
- Binary data inserted for `string` type on column `encrypted_password`
764
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "d7ajgwEcoSsMW8vQ2oN3"], ["created_at", "2015-03-31 20:39:24.241764"], ["email", "ios_user-53@example.com"], ["encrypted_password", "$2a$04$7CAcq9IDVOcPgmerVgElce07VZFsr0SVQnktE3rVeRLQsog.KzC.y"], ["updated_at", "2015-03-31 20:39:24.241764"]]
765
-  (0.1ms) RELEASE SAVEPOINT active_record_1
766
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
767
- Processing by Devise::SessionsController#create as JSON
768
- Parameters: {"user"=>{"email"=>"ios_user-53@example.com", "password"=>"[FILTERED]"}}
769
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-53@example.com' ORDER BY "users"."id" ASC LIMIT 1
770
- Completed 401 Unauthorized in 2ms
771
-  (0.5ms) rollback transaction
772
-  (0.1ms) begin transaction
773
-  (0.1ms) SAVEPOINT active_record_1
774
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-54@example.com' LIMIT 1
775
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'gszwznZ-BaZrncjhK6zG'
776
- Binary data inserted for `string` type on column `encrypted_password`
777
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "gszwznZ-BaZrncjhK6zG"], ["created_at", "2015-03-31 20:39:24.252402"], ["email", "ios_user-54@example.com"], ["encrypted_password", "$2a$04$RFc2GKdlR01VYAy.Zw1IuOUy.yom9anVCJYfX7qupmm.1d8EbpoCO"], ["updated_at", "2015-03-31 20:39:24.252402"]]
778
-  (0.0ms) RELEASE SAVEPOINT active_record_1
779
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
780
- Processing by Devise::SessionsController#create as JSON
781
- Parameters: {"user"=>{"email"=>"ios_user-54@example.com", "password"=>"[FILTERED]"}}
782
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-54@example.com' ORDER BY "users"."id" ASC LIMIT 1
783
- Completed 401 Unauthorized in 2ms
784
-  (0.4ms) rollback transaction
785
-  (0.0ms) begin transaction
786
-  (0.0ms) SAVEPOINT active_record_1
787
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-55@example.com' LIMIT 1
788
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'xy-GUW6x4dgMK5is_Usg'
789
- Binary data inserted for `string` type on column `encrypted_password`
790
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "xy-GUW6x4dgMK5is_Usg"], ["created_at", "2015-03-31 20:39:24.261170"], ["email", "ios_user-55@example.com"], ["encrypted_password", "$2a$04$WNzYr6q661rwsESm7VA.aefULhnPdYfvA8IKM/kn7CVL0jKqnPftm"], ["updated_at", "2015-03-31 20:39:24.261170"]]
791
-  (0.1ms) RELEASE SAVEPOINT active_record_1
792
- Started POST "/v1/users/sign_in" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
793
- Processing by Devise::SessionsController#create as JSON
794
- Parameters: {"user"=>{"email"=>"ios_user-55@example.com", "password"=>"[FILTERED]"}}
795
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-55@example.com' ORDER BY "users"."id" ASC LIMIT 1
796
- Completed 401 Unauthorized in 3ms
797
-  (0.5ms) rollback transaction
798
-  (0.0ms) begin transaction
799
-  (0.1ms) SELECT COUNT(*) FROM "users"
800
- Started POST "/v1/auth/facebook" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
801
- Processing by DeviseIosRails::OauthController#facebook as JSON
802
- Parameters: {"user"=>{"provider"=>"facebook", "oauth_token"=>"valid_token", "uid"=>"1234"}}
803
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '1234' AND "users"."provider" = 'facebook' ORDER BY "users"."id" ASC LIMIT 1
804
-  (0.0ms) SAVEPOINT active_record_1
805
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '1234' AND "users"."provider" = 'facebook') LIMIT 1
806
-  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."uid" = '1234' AND "users"."provider" = 'facebook' AND "users"."authentication_token" = 'sE58QEsi__MqqkskY9UD'
807
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "oauth_token", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["authentication_token", "sE58QEsi__MqqkskY9UD"], ["created_at", "2015-03-31 20:39:24.300545"], ["oauth_token", "valid_token"], ["provider", "facebook"], ["uid", "1234"], ["updated_at", "2015-03-31 20:39:24.300545"]]
808
-  (0.0ms) RELEASE SAVEPOINT active_record_1
809
- Completed 201 Created in 29ms (Views: 0.7ms | ActiveRecord: 1.0ms)
810
-  (0.1ms) SELECT COUNT(*) FROM "users"
811
-  (0.4ms) rollback transaction
812
-  (0.1ms) begin transaction
813
-  (0.0ms) SAVEPOINT active_record_1
814
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '9854' AND "users"."provider" = 'facebook') LIMIT 1
815
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'jDy2UnDi46wFynv6CMfp'
816
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "oauth_token", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["authentication_token", "jDy2UnDi46wFynv6CMfp"], ["created_at", "2015-03-31 20:39:24.323329"], ["oauth_token", "valid_token"], ["provider", "facebook"], ["uid", 9854], ["updated_at", "2015-03-31 20:39:24.323329"]]
817
-  (0.0ms) RELEASE SAVEPOINT active_record_1
818
-  (0.1ms) SELECT COUNT(*) FROM "users"
819
- Started POST "/v1/auth/facebook" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
820
- Processing by DeviseIosRails::OauthController#facebook as JSON
821
- Parameters: {"user"=>{"id"=>"1", "email"=>"", "encrypted_password"=>"[FILTERED]", "reset_password_token"=>"[FILTERED]", "reset_password_sent_at"=>"[FILTERED]", "remember_created_at"=>nil, "created_at"=>"2015-03-31 20:39:24 UTC", "updated_at"=>"2015-03-31 20:39:24 UTC", "authentication_token"=>"jDy2UnDi46wFynv6CMfp", "uid"=>"9854", "provider"=>"facebook", "oauth_token"=>"valid_token", "oauth_email"=>nil}}
822
- Unpermitted parameters: id, encrypted_password, reset_password_token, reset_password_sent_at, remember_created_at, created_at, updated_at, authentication_token, oauth_email
823
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '9854' AND "users"."provider" = 'facebook' ORDER BY "users"."id" ASC LIMIT 1
824
- Completed 201 Created in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
825
-  (0.1ms) SELECT COUNT(*) FROM "users"
826
-  (0.4ms) rollback transaction
827
-  (0.0ms) begin transaction
828
- Started POST "/v1/auth/facebook" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
829
- Processing by DeviseIosRails::OauthController#facebook as JSON
830
- Parameters: {"user"=>{"id"=>nil, "email"=>"", "encrypted_password"=>"[FILTERED]", "reset_password_token"=>"[FILTERED]", "reset_password_sent_at"=>"[FILTERED]", "remember_created_at"=>nil, "created_at"=>nil, "updated_at"=>nil, "authentication_token"=>nil, "uid"=>"7298", "provider"=>"facebook", "oauth_token"=>"invalid_token", "oauth_email"=>nil}}
831
- Unpermitted parameters: id, encrypted_password, reset_password_token, reset_password_sent_at, remember_created_at, created_at, updated_at, authentication_token, oauth_email
832
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '7298' AND "users"."provider" = 'facebook' ORDER BY "users"."id" ASC LIMIT 1
833
-  (0.0ms) SAVEPOINT active_record_1
834
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '7298' AND "users"."provider" = 'facebook') LIMIT 1
835
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
836
- Completed 422 Unprocessable Entity in 28ms (Views: 1.0ms | ActiveRecord: 0.3ms)
837
-  (0.1ms) rollback transaction
838
-  (0.0ms) begin transaction
839
-  (0.0ms) SAVEPOINT active_record_1
840
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-56@example.com' LIMIT 1
841
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'nuQzyh2SsR3ztkx9VFJx'
842
- Binary data inserted for `string` type on column `encrypted_password`
843
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "nuQzyh2SsR3ztkx9VFJx"], ["created_at", "2015-03-31 20:39:24.368270"], ["email", "ios_user-56@example.com"], ["encrypted_password", "$2a$04$DCo/ho70NA.ZGbCjHmUZp.ZcYhPogJV3qoAORIMRjZlf20oCTv/ai"], ["updated_at", "2015-03-31 20:39:24.368270"]]
844
-  (0.0ms) RELEASE SAVEPOINT active_record_1
845
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
846
- Processing by DeviseIosRails::PasswordsController#create as JSON
847
- Parameters: {"user"=>{"email"=>"ios_user-56@example.com"}}
848
- User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-56@example.com' ORDER BY "users"."id" ASC LIMIT 1
849
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = '1c7c6d7b3680d9d27c1c599dcb525500ce30330567c48072f7795535ffe173e9' ORDER BY "users"."id" ASC LIMIT 1
850
-  (0.0ms) SAVEPOINT active_record_1
851
- Binary data inserted for `string` type on column `reset_password_token`
852
- SQL (0.4ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["reset_password_sent_at", "2015-03-31 20:39:24.571539"], ["reset_password_token", "1c7c6d7b3680d9d27c1c599dcb525500ce30330567c48072f7795535ffe173e9"], ["updated_at", "2015-03-31 20:39:24.571840"]]
853
-  (0.0ms) RELEASE SAVEPOINT active_record_1
854
-
855
- Devise::Mailer#reset_password_instructions: processed outbound mail in 150.1ms
856
-
857
- Sent mail to ios_user-56@example.com (8.6ms)
858
- Date: Tue, 31 Mar 2015 22:39:24 +0200
859
- From: no-reply@no-reply.com
860
- Reply-To: no-reply@no-reply.com
861
- To: ios_user-56@example.com
862
- Message-ID: <551b05fcb4107_20dc3fd7a0465bec927c0@Retina.local.mail>
863
- Subject: Reset password instructions
864
- Mime-Version: 1.0
865
- Content-Type: text/html;
866
- charset=UTF-8
867
- Content-Transfer-Encoding: 7bit
868
-
869
- <p>Hello ios_user-56@example.com!</p>
870
-
871
- <p>Someone has requested a link to change your password. You can do this through the link below.</p>
872
-
873
- <p><a href="http://localhost:3000/v1/users/password/edit?reset_password_token=1pDnsorcYK7RZRFoSE_w">Change my password</a></p>
874
-
875
- <p>If you didn't request this, please ignore this email.</p>
876
- <p>Your password won't change until you access the link above and create a new one.</p>
877
-
878
- Completed 201 Created in 373ms (Views: 1.7ms | ActiveRecord: 1.0ms)
879
-  (0.7ms) rollback transaction
880
-  (0.1ms) begin transaction
881
-  (0.1ms) SAVEPOINT active_record_1
882
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-57@example.com' LIMIT 1
883
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'nY2BzYSR9rbZ5vcU7VED'
884
- Binary data inserted for `string` type on column `encrypted_password`
885
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "nY2BzYSR9rbZ5vcU7VED"], ["created_at", "2015-03-31 20:39:24.749963"], ["email", "ios_user-57@example.com"], ["encrypted_password", "$2a$04$DwGLkvb1v39RrIqshsWdKOZmjEbWZD119jnfsP7Pxkv2kI9thE9G."], ["updated_at", "2015-03-31 20:39:24.749963"]]
886
-  (0.1ms) RELEASE SAVEPOINT active_record_1
887
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
888
- Processing by DeviseIosRails::PasswordsController#create as JSON
889
- Parameters: {"user"=>{"email"=>"ios_user-57@example.com"}}
890
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-57@example.com' ORDER BY "users"."id" ASC LIMIT 1
891
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = '443183bde1c8fe86b73da74432fcf04b1961e0073b44d7b21e18c50dfac6ab8a' ORDER BY "users"."id" ASC LIMIT 1
892
-  (0.1ms) SAVEPOINT active_record_1
893
- Binary data inserted for `string` type on column `reset_password_token`
894
- SQL (1.7ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["reset_password_sent_at", "2015-03-31 20:39:24.754297"], ["reset_password_token", "443183bde1c8fe86b73da74432fcf04b1961e0073b44d7b21e18c50dfac6ab8a"], ["updated_at", "2015-03-31 20:39:24.754714"]]
895
-  (0.2ms) RELEASE SAVEPOINT active_record_1
896
-
897
- Devise::Mailer#reset_password_instructions: processed outbound mail in 2.5ms
898
-
899
- Sent mail to ios_user-57@example.com (1.6ms)
900
- Date: Tue, 31 Mar 2015 22:39:24 +0200
901
- From: no-reply@no-reply.com
902
- Reply-To: no-reply@no-reply.com
903
- To: ios_user-57@example.com
904
- Message-ID: <551b05fcba6d8_20dc3fd7a0465bec92817@Retina.local.mail>
905
- Subject: Reset password instructions
906
- Mime-Version: 1.0
907
- Content-Type: text/html;
908
- charset=UTF-8
909
- Content-Transfer-Encoding: 7bit
910
-
911
- <p>Hello ios_user-57@example.com!</p>
912
-
913
- <p>Someone has requested a link to change your password. You can do this through the link below.</p>
914
-
915
- <p><a href="http://localhost:3000/v1/users/password/edit?reset_password_token=fvgZgxz2F3F6ZtaRNcYf">Change my password</a></p>
916
-
917
- <p>If you didn't request this, please ignore this email.</p>
918
- <p>Your password won't change until you access the link above and create a new one.</p>
919
-
920
- Completed 201 Created in 14ms (Views: 1.3ms | ActiveRecord: 2.3ms)
921
-  (0.6ms) rollback transaction
922
-  (0.1ms) begin transaction
923
-  (0.1ms) SAVEPOINT active_record_1
924
- User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-58@example.com' LIMIT 1
925
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'z5nSuMv3hMGSDHsJKjzz'
926
- Binary data inserted for `string` type on column `encrypted_password`
927
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "z5nSuMv3hMGSDHsJKjzz"], ["created_at", "2015-03-31 20:39:24.772368"], ["email", "ios_user-58@example.com"], ["encrypted_password", "$2a$04$gSOrF2eWsV7uD8NFDJ4OgOcWcRhs2G9qGqZusSDCHiGYnN.2p6o/C"], ["updated_at", "2015-03-31 20:39:24.772368"]]
928
-  (0.0ms) RELEASE SAVEPOINT active_record_1
929
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
930
- Processing by DeviseIosRails::PasswordsController#create as JSON
931
- Parameters: {"user"=>{"email"=>"ios_user-58@example.com"}}
932
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-58@example.com' ORDER BY "users"."id" ASC LIMIT 1
933
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'b3f86b77a74ff1893465b197863859022addd4ff4a903ce93b52bc5aceed0920' ORDER BY "users"."id" ASC LIMIT 1
934
-  (0.1ms) SAVEPOINT active_record_1
935
- Binary data inserted for `string` type on column `reset_password_token`
936
- SQL (0.3ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["reset_password_sent_at", "2015-03-31 20:39:24.775870"], ["reset_password_token", "b3f86b77a74ff1893465b197863859022addd4ff4a903ce93b52bc5aceed0920"], ["updated_at", "2015-03-31 20:39:24.776168"]]
937
-  (0.0ms) RELEASE SAVEPOINT active_record_1
938
-
939
- Devise::Mailer#reset_password_instructions: processed outbound mail in 1.2ms
940
-
941
- Sent mail to ios_user-58@example.com (1.5ms)
942
- Date: Tue, 31 Mar 2015 22:39:24 +0200
943
- From: no-reply@no-reply.com
944
- Reply-To: no-reply@no-reply.com
945
- To: ios_user-58@example.com
946
- Message-ID: <551b05fcbe3cd_20dc3fd7a0465bec929d1@Retina.local.mail>
947
- Subject: Reset password instructions
948
- Mime-Version: 1.0
949
- Content-Type: text/html;
950
- charset=UTF-8
951
- Content-Transfer-Encoding: 7bit
952
-
953
- <p>Hello ios_user-58@example.com!</p>
954
-
955
- <p>Someone has requested a link to change your password. You can do this through the link below.</p>
956
-
957
- <p><a href="http://localhost:3000/v1/users/password/edit?reset_password_token=6DhYFj-qvnxrpcDd8J3-">Change my password</a></p>
958
-
959
- <p>If you didn't request this, please ignore this email.</p>
960
- <p>Your password won't change until you access the link above and create a new one.</p>
961
-
962
- Completed 201 Created in 8ms (Views: 1.7ms | ActiveRecord: 0.6ms)
963
-  (0.6ms) rollback transaction
964
-  (0.1ms) begin transaction
965
-  (0.1ms) SAVEPOINT active_record_1
966
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-59@example.com' LIMIT 1
967
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'pACQxxdKvDwmwbgXUoN7'
968
- Binary data inserted for `string` type on column `encrypted_password`
969
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "pACQxxdKvDwmwbgXUoN7"], ["created_at", "2015-03-31 20:39:24.788947"], ["email", "ios_user-59@example.com"], ["encrypted_password", "$2a$04$DEpQhPB.X1CtmZgTU5wwIempF0iBBIzTIZQk/dud5feG8qtkWnMu."], ["updated_at", "2015-03-31 20:39:24.788947"]]
970
-  (0.1ms) RELEASE SAVEPOINT active_record_1
971
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
972
- Processing by DeviseIosRails::PasswordsController#create as JSON
973
- Parameters: {"user"=>{"email"=>"ios_user-59@example.com"}}
974
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-59@example.com' ORDER BY "users"."id" ASC LIMIT 1
975
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = '220f18fdfceed45445b8bc301265dd81a5e4f76bc2e20127812691f47883c465' ORDER BY "users"."id" ASC LIMIT 1
976
-  (0.0ms) SAVEPOINT active_record_1
977
- Binary data inserted for `string` type on column `reset_password_token`
978
- SQL (0.3ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["reset_password_sent_at", "2015-03-31 20:39:24.794095"], ["reset_password_token", "220f18fdfceed45445b8bc301265dd81a5e4f76bc2e20127812691f47883c465"], ["updated_at", "2015-03-31 20:39:24.794454"]]
979
-  (0.0ms) RELEASE SAVEPOINT active_record_1
980
-
981
- Devise::Mailer#reset_password_instructions: processed outbound mail in 1.8ms
982
-
983
- Sent mail to ios_user-59@example.com (2.2ms)
984
- Date: Tue, 31 Mar 2015 22:39:24 +0200
985
- From: no-reply@no-reply.com
986
- Reply-To: no-reply@no-reply.com
987
- To: ios_user-59@example.com
988
- Message-ID: <551b05fcc3137_20dc3fd7a0465bec9304d@Retina.local.mail>
989
- Subject: Reset password instructions
990
- Mime-Version: 1.0
991
- Content-Type: text/html;
992
- charset=UTF-8
993
- Content-Transfer-Encoding: 7bit
994
-
995
- <p>Hello ios_user-59@example.com!</p>
996
-
997
- <p>Someone has requested a link to change your password. You can do this through the link below.</p>
998
-
999
- <p><a href="http://localhost:3000/v1/users/password/edit?reset_password_token=FxxTqVoi4D5pJxtLNb4W">Change my password</a></p>
1000
-
1001
- <p>If you didn't request this, please ignore this email.</p>
1002
- <p>Your password won't change until you access the link above and create a new one.</p>
1003
-
1004
- Completed 201 Created in 10ms (Views: 1.8ms | ActiveRecord: 0.6ms)
1005
-  (0.8ms) rollback transaction
1006
-  (0.1ms) begin transaction
1007
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1008
- Processing by DeviseIosRails::PasswordsController#create as JSON
1009
- Parameters: {"user"=>{"email"=>"non_existent"}}
1010
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
1011
- Completed 201 Created in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms)
1012
-  (0.1ms) rollback transaction
1013
-  (0.0ms) begin transaction
1014
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1015
- Processing by DeviseIosRails::PasswordsController#create as JSON
1016
- Parameters: {"user"=>{"email"=>"non_existent"}}
1017
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
1018
- Completed 201 Created in 3ms (Views: 1.5ms | ActiveRecord: 0.1ms)
1019
-  (0.1ms) rollback transaction
1020
-  (0.0ms) begin transaction
1021
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1022
- Processing by DeviseIosRails::PasswordsController#create as JSON
1023
- Parameters: {"user"=>{"email"=>"non_existent"}}
1024
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
1025
- Completed 201 Created in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms)
1026
-  (0.1ms) rollback transaction
1027
-  (0.0ms) begin transaction
1028
- Started POST "/v1/users/password" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1029
- Processing by DeviseIosRails::PasswordsController#create as JSON
1030
- Parameters: {"user"=>{"email"=>"non_existent"}}
1031
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'non_existent' ORDER BY "users"."id" ASC LIMIT 1
1032
- Completed 201 Created in 3ms (Views: 1.3ms | ActiveRecord: 0.1ms)
1033
-  (0.0ms) rollback transaction
1034
-  (0.0ms) begin transaction
1035
-  (0.1ms) SELECT COUNT(*) FROM "users"
1036
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1037
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1038
- Parameters: {"user"=>{"email"=>"ios_user-60@example.com", "password"=>"[FILTERED]"}}
1039
-  (0.1ms) SAVEPOINT active_record_1
1040
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-60@example.com' LIMIT 1
1041
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '9EBZr-i9RQiJheziyqJ-'
1042
- Binary data inserted for `string` type on column `encrypted_password`
1043
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "9EBZr-i9RQiJheziyqJ-"], ["created_at", "2015-03-31 20:39:24.833842"], ["email", "ios_user-60@example.com"], ["encrypted_password", "$2a$04$MXw74TPBlzJPMGLRzu.Evu6sUEcxcCekLxoIJY9wWmz7gKzGhrwt6"], ["updated_at", "2015-03-31 20:39:24.833842"]]
1044
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1045
- Completed 201 Created in 6ms (Views: 0.5ms | ActiveRecord: 0.5ms)
1046
-  (0.1ms) SELECT COUNT(*) FROM "users"
1047
-  (0.4ms) rollback transaction
1048
-  (0.0ms) begin transaction
1049
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1050
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1051
- Parameters: {"user"=>{"email"=>"ios_user-61@example.com", "password"=>"[FILTERED]"}}
1052
-  (0.0ms) SAVEPOINT active_record_1
1053
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-61@example.com' LIMIT 1
1054
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'vKSB_x28THZRvUwzuiF9'
1055
- Binary data inserted for `string` type on column `encrypted_password`
1056
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "vKSB_x28THZRvUwzuiF9"], ["created_at", "2015-03-31 20:39:24.844947"], ["email", "ios_user-61@example.com"], ["encrypted_password", "$2a$04$mzuBvnfZS4qnGiZgyAGxWehrb5aqh.goS2xc25xZuiIh2pc49LwIa"], ["updated_at", "2015-03-31 20:39:24.844947"]]
1057
-  (0.1ms) RELEASE SAVEPOINT active_record_1
1058
- Completed 201 Created in 6ms (Views: 0.7ms | ActiveRecord: 0.6ms)
1059
-  (0.6ms) rollback transaction
1060
-  (0.1ms) begin transaction
1061
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1062
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1063
- Parameters: {"user"=>{"email"=>"ios_user-62@example.com", "password"=>"[FILTERED]"}}
1064
-  (0.4ms) SAVEPOINT active_record_1
1065
- User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-62@example.com' LIMIT 1
1066
-  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = '-s4YGc8iJ6eixn-KyDTN'
1067
- Binary data inserted for `string` type on column `encrypted_password`
1068
- SQL (0.3ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "-s4YGc8iJ6eixn-KyDTN"], ["created_at", "2015-03-31 20:39:24.862788"], ["email", "ios_user-62@example.com"], ["encrypted_password", "$2a$04$2vJiL3djqHJ/mFEjVaNFJexffc.3BTlH1e5JIou7ZQ/BmTqDSt93y"], ["updated_at", "2015-03-31 20:39:24.862788"]]
1069
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1070
- Completed 201 Created in 11ms (Views: 0.5ms | ActiveRecord: 1.4ms)
1071
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'ios_user-62@example.com' LIMIT 1
1072
-  (0.4ms) rollback transaction
1073
-  (0.0ms) begin transaction
1074
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1075
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1076
- Parameters: {"user"=>{"email"=>"ios_user-63@example.com", "password"=>"[FILTERED]"}}
1077
-  (0.0ms) SAVEPOINT active_record_1
1078
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-63@example.com' LIMIT 1
1079
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'bFq-S3SsYEAoMyosWvDm'
1080
- Binary data inserted for `string` type on column `encrypted_password`
1081
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "bFq-S3SsYEAoMyosWvDm"], ["created_at", "2015-03-31 20:39:24.874490"], ["email", "ios_user-63@example.com"], ["encrypted_password", "$2a$04$W/5cdVp9qQff04PwOv6uTeAo4om3D2jXr0j387pYZhaChGD0cMGvO"], ["updated_at", "2015-03-31 20:39:24.874490"]]
1082
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1083
- Completed 201 Created in 6ms (Views: 0.6ms | ActiveRecord: 0.5ms)
1084
-  (0.4ms) rollback transaction
1085
-  (0.0ms) begin transaction
1086
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1087
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1088
- Parameters: {"user"=>{"email"=>"ios_user-64@example.com", "password"=>"[FILTERED]"}}
1089
-  (0.1ms) SAVEPOINT active_record_1
1090
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-64@example.com' LIMIT 1
1091
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'PAgmHgdMEGTXNYzoKCH5'
1092
- Binary data inserted for `string` type on column `encrypted_password`
1093
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "PAgmHgdMEGTXNYzoKCH5"], ["created_at", "2015-03-31 20:39:24.885054"], ["email", "ios_user-64@example.com"], ["encrypted_password", "$2a$04$9xgGzFqEUetZgrC1bMWgd.DbNfD3j0bUG9Pyabisf3/IO8X3AU1m."], ["updated_at", "2015-03-31 20:39:24.885054"]]
1094
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1095
- Completed 201 Created in 6ms (Views: 0.5ms | ActiveRecord: 0.6ms)
1096
-  (0.4ms) rollback transaction
1097
-  (0.0ms) begin transaction
1098
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1099
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1100
-  (0.0ms) SAVEPOINT active_record_1
1101
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1102
- Completed 422 Unprocessable Entity in 3ms (Views: 0.9ms | ActiveRecord: 0.1ms)
1103
-  (0.0ms) rollback transaction
1104
-  (0.0ms) begin transaction
1105
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1106
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1107
-  (0.0ms) SAVEPOINT active_record_1
1108
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1109
- Completed 422 Unprocessable Entity in 3ms (Views: 1.1ms | ActiveRecord: 0.1ms)
1110
-  (0.1ms) rollback transaction
1111
-  (0.2ms) begin transaction
1112
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1113
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1114
-  (0.1ms) SAVEPOINT active_record_1
1115
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1116
- Completed 422 Unprocessable Entity in 3ms (Views: 0.9ms | ActiveRecord: 0.1ms)
1117
-  (0.0ms) rollback transaction
1118
-  (0.0ms) begin transaction
1119
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1120
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1121
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
1122
-  (0.1ms) SAVEPOINT active_record_1
1123
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_man@example.com' LIMIT 1
1124
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1125
- Completed 422 Unprocessable Entity in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
1126
-  (0.0ms) rollback transaction
1127
-  (0.0ms) begin transaction
1128
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1129
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1130
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
1131
-  (0.0ms) SAVEPOINT active_record_1
1132
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_man@example.com' LIMIT 1
1133
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1134
- Completed 422 Unprocessable Entity in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
1135
-  (0.1ms) rollback transaction
1136
-  (0.0ms) begin transaction
1137
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1138
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1139
- Parameters: {"user"=>{"email"=>"ios_man@example.com"}}
1140
-  (0.1ms) SAVEPOINT active_record_1
1141
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_man@example.com' LIMIT 1
1142
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1143
- Completed 422 Unprocessable Entity in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
1144
-  (0.0ms) rollback transaction
1145
-  (0.0ms) begin transaction
1146
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1147
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1148
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
1149
-  (0.1ms) SAVEPOINT active_record_1
1150
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1151
- Completed 422 Unprocessable Entity in 4ms (Views: 0.8ms | ActiveRecord: 0.1ms)
1152
-  (0.0ms) rollback transaction
1153
-  (0.0ms) begin transaction
1154
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1155
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1156
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
1157
-  (0.0ms) SAVEPOINT active_record_1
1158
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1159
- Completed 422 Unprocessable Entity in 4ms (Views: 1.2ms | ActiveRecord: 0.1ms)
1160
-  (0.1ms) rollback transaction
1161
-  (0.0ms) begin transaction
1162
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1163
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1164
- Parameters: {"user"=>{"password"=>"[FILTERED]"}}
1165
-  (0.1ms) SAVEPOINT active_record_1
1166
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1167
- Completed 422 Unprocessable Entity in 4ms (Views: 0.8ms | ActiveRecord: 0.1ms)
1168
-  (0.0ms) rollback transaction
1169
-  (0.0ms) begin transaction
1170
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1171
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1172
- Parameters: {"user"=>{"email"=>"invalid_email", "password"=>"[FILTERED]"}}
1173
-  (0.0ms) SAVEPOINT active_record_1
1174
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid_email' LIMIT 1
1175
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1176
- Completed 422 Unprocessable Entity in 4ms (Views: 0.7ms | ActiveRecord: 0.2ms)
1177
-  (0.0ms) rollback transaction
1178
-  (0.0ms) begin transaction
1179
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1180
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1181
- Parameters: {"user"=>{"email"=>"invalid_email", "password"=>"[FILTERED]"}}
1182
-  (0.0ms) SAVEPOINT active_record_1
1183
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid_email' LIMIT 1
1184
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1185
- Completed 422 Unprocessable Entity in 6ms (Views: 1.8ms | ActiveRecord: 0.2ms)
1186
-  (0.1ms) rollback transaction
1187
-  (0.0ms) begin transaction
1188
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1189
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1190
- Parameters: {"user"=>{"email"=>"invalid_email", "password"=>"[FILTERED]"}}
1191
-  (0.0ms) SAVEPOINT active_record_1
1192
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid_email' LIMIT 1
1193
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1194
- Completed 422 Unprocessable Entity in 4ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1195
-  (0.1ms) rollback transaction
1196
-  (0.0ms) begin transaction
1197
- Started POST "/v1/users" for 127.0.0.1 at 2015-03-31 22:39:24 +0200
1198
- Processing by DeviseIosRails::RegistrationsController#create as JSON
1199
- Parameters: {"user"=>{"email"=>"invalid_email", "password"=>"[FILTERED]"}}
1200
-  (0.0ms) SAVEPOINT active_record_1
1201
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid_email' LIMIT 1
1202
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1203
- Completed 422 Unprocessable Entity in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1204
-  (0.1ms) rollback transaction
1205
-  (0.0ms) begin transaction
1206
-  (0.0ms) SAVEPOINT active_record_1
1207
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-65@example.com' LIMIT 1
1208
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'RUiKiirp4YbtqMZETtpS'
1209
- Binary data inserted for `string` type on column `encrypted_password`
1210
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "RUiKiirp4YbtqMZETtpS"], ["created_at", "2015-03-31 20:39:24.967609"], ["email", "ios_user-65@example.com"], ["encrypted_password", "$2a$04$pPpj8LyK/sJnK/FiWaWdzeDK/GzRHCthdn.XrtzbWMs9Ge5pyP9MC"], ["updated_at", "2015-03-31 20:39:24.967609"]]
1211
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1212
-  (0.4ms) rollback transaction
1213
-  (0.0ms) begin transaction
1214
-  (0.0ms) rollback transaction
1215
-  (0.0ms) begin transaction
1216
-  (0.1ms) rollback transaction
1217
-  (0.0ms) begin transaction
1218
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-66@example.com' LIMIT 1
1219
-  (0.1ms) rollback transaction
1220
-  (0.0ms) begin transaction
1221
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'db690284120c02505318186a744f9195d12175995aa051ce758215a6b6bff4c2' ORDER BY "users"."id" ASC LIMIT 1
1222
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-67@example.com' LIMIT 1
1223
-  (0.0ms) rollback transaction
1224
-  (0.0ms) begin transaction
1225
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '5130' AND "users"."provider" = 'facebook') LIMIT 1
1226
-  (0.1ms) rollback transaction
1227
-  (0.1ms) begin transaction
1228
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'c1cf3ac2a44e33c93695f118a254612360e884e20a9e57fa7f0492e47b3427b4' ORDER BY "users"."id" ASC LIMIT 1
1229
-  (0.0ms) rollback transaction
1230
-  (0.1ms) begin transaction
1231
- User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = '25b942c8c1898a022bb51ac77f72ecb95ad1b5bb66cc32f376460b8174e10886' ORDER BY "users"."id" ASC LIMIT 1
1232
-  (0.2ms) rollback transaction
1233
-  (0.1ms) begin transaction
1234
- User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'bec3aecf10655ffae1b8a1ae748c219aa82022d7a8b7c5855b509bcd97ada566' ORDER BY "users"."id" ASC LIMIT 1
1235
-  (0.0ms) rollback transaction
1236
-  (0.0ms) begin transaction
1237
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = '26e60a30f54ab1f055bd4af5fe29a1f41715d125525ade9d00e61e2a78024b5d' ORDER BY "users"."id" ASC LIMIT 1
1238
-  (0.0ms) rollback transaction
1239
-  (0.0ms) begin transaction
1240
- User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'e3782de0dc7be2d52318b307106a3613d2d8a4312c58a3ffb27c4bd1333a4cb4' ORDER BY "users"."id" ASC LIMIT 1
1241
-  (0.0ms) rollback transaction
1242
-  (0.0ms) begin transaction
1243
-  (0.0ms) SAVEPOINT active_record_1
1244
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-73@example.com' LIMIT 1
1245
-  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'wrQPjR6zCvXXossaWwov'
1246
- Binary data inserted for `string` type on column `encrypted_password`
1247
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "wrQPjR6zCvXXossaWwov"], ["created_at", "2015-03-31 20:39:25.025291"], ["email", "ios_user-73@example.com"], ["encrypted_password", "$2a$04$0xsZdGs3Q5B47/KH4lwW1e4pyIK2PKJvxGiXnLAmtEma6VI5s9uce"], ["updated_at", "2015-03-31 20:39:25.025291"]]
1248
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1249
-  (0.0ms) SAVEPOINT active_record_1
1250
- Binary data inserted for `string` type on column `encrypted_password`
1251
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$bsZGJVPjC/AQoPIuC.xrKuTUCQ.skvUyNd7pf2mNixErX/A5h4YfC"], ["updated_at", "2015-03-31 20:39:25.027977"]]
1252
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1253
-  (0.5ms) rollback transaction
1254
-  (0.0ms) begin transaction
1255
-  (0.1ms) SAVEPOINT active_record_1
1256
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-74@example.com' LIMIT 1
1257
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'fY7B7BUswwDyzyfQwgLr'
1258
- Binary data inserted for `string` type on column `encrypted_password`
1259
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "fY7B7BUswwDyzyfQwgLr"], ["created_at", "2015-03-31 20:39:25.034342"], ["email", "ios_user-74@example.com"], ["encrypted_password", "$2a$04$4FZl27HLhxp4280HZHLO..E/lxQsPMXtGdWSPUJ8PjrGmTmQ6w1wC"], ["updated_at", "2015-03-31 20:39:25.034342"]]
1260
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1261
-  (0.1ms) SAVEPOINT active_record_1
1262
- Binary data inserted for `string` type on column `encrypted_password`
1263
- SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$04$UHcMfbC9uHiw9JmhMQDc/Oa.RSEfuAsZaK0rU4Pq86hfIGs5C/mMW"], ["updated_at", "2015-03-31 20:39:25.037493"]]
1264
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1265
-  (0.6ms) rollback transaction
1266
-  (0.0ms) begin transaction
1267
-  (0.0ms) SAVEPOINT active_record_1
1268
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'ios_user-75@example.com' LIMIT 1
1269
-  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."authentication_token" = 'bjszvzY-KW49WGTvkas3'
1270
- Binary data inserted for `string` type on column `encrypted_password`
1271
- SQL (0.2ms) INSERT INTO "users" ("authentication_token", "created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_token", "bjszvzY-KW49WGTvkas3"], ["created_at", "2015-03-31 20:39:25.042859"], ["email", "ios_user-75@example.com"], ["encrypted_password", "$2a$04$uSSoObsudn9naTgp/XnnHeAHGOoF2RwjvWCo3VGtxb3qekIm/dqaa"], ["updated_at", "2015-03-31 20:39:25.042859"]]
1272
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1273
-  (0.0ms) SAVEPOINT active_record_1
1274
-  (0.0ms) RELEASE SAVEPOINT active_record_1
1275
-  (0.4ms) rollback transaction
1276
-  (0.1ms) begin transaction
1277
-  (0.0ms) rollback transaction
1278
-  (0.0ms) begin transaction
1279
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid' LIMIT 1
1280
-  (0.1ms) rollback transaction
1281
-  (0.1ms) begin transaction
1282
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid' LIMIT 1
1283
-  (0.1ms) rollback transaction
1284
-  (0.0ms) begin transaction
1285
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'invalid' LIMIT 1
1286
-  (0.0ms) rollback transaction
1287
-  (0.0ms) begin transaction
1288
- User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '4610' AND "users"."provider" = 'facebook') LIMIT 1
1289
-  (0.0ms) rollback transaction
1290
-  (0.0ms) begin transaction
1291
- User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."uid" = '9671' AND "users"."provider" = 'facebook') LIMIT 1
1292
-  (0.0ms) rollback transaction