arcadex 1.2.3 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/arcadex/token.rb +3 -0
- data/lib/arcadex/destroy.rb +1 -1
- data/lib/arcadex/find.rb +4 -2
- data/lib/arcadex/header.rb +6 -3
- data/lib/arcadex/version.rb +1 -1
- data/test/test_app/Gemfile.lock +1 -1
- data/test/test_app/log/test.log +686 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91b34092131407b709a1d3178a770e0f69557174
|
4
|
+
data.tar.gz: cb113375a85ce9ce83541ee4bbfaf063b11d73d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa4d4fcb161c27384972e46438ba5667e54afdbf1b3b411993e46780640a7f4c76047e38a91a52df01bf980a5a2e8eee1005797546617dc4039a977f33eeb618
|
7
|
+
data.tar.gz: 3e6eb947b32ba1b1d32232c693ea0adc6d1e28dae29ce3b9aed88d30afad77f79462ccb5effbf15cd4d61461e676247aa7b41daf85dacdfffb1be4eda76a5845
|
data/app/models/arcadex/token.rb
CHANGED
data/lib/arcadex/destroy.rb
CHANGED
data/lib/arcadex/find.rb
CHANGED
@@ -16,14 +16,16 @@ module Arcadex
|
|
16
16
|
::Arcadex::Destroy.destroy_token(token)
|
17
17
|
return nil
|
18
18
|
else
|
19
|
-
instance = ::Object.const_get(token.imageable_type).find(token.imageable_id)
|
19
|
+
#instance = ::Object.const_get(token.imageable_type).find(token.imageable_id)
|
20
|
+
instance = ::Object.const_get(token.imageable_type).fetch(token.imageable_id)
|
20
21
|
return instance
|
21
22
|
end
|
22
23
|
end
|
23
24
|
|
24
25
|
#Arcadex.find_token_by_auth_token(token.auth_token)
|
25
26
|
def self.find_token_by_auth_token(auth_token_string)
|
26
|
-
token = ::Arcadex::Token.find_by(auth_token: auth_token_string)
|
27
|
+
#token = ::Arcadex::Token.find_by(auth_token: auth_token_string)
|
28
|
+
token = ::Arcadex::Token.fetch_by_auth_token(auth_token_string)
|
27
29
|
if token.nil?
|
28
30
|
return nil
|
29
31
|
end
|
data/lib/arcadex/header.rb
CHANGED
@@ -5,12 +5,15 @@ module Arcadex
|
|
5
5
|
#Values in the headers have preference
|
6
6
|
if !params[key].blank?
|
7
7
|
value = params[key]
|
8
|
+
if downcase
|
9
|
+
value = value.downcase
|
10
|
+
end
|
8
11
|
end
|
9
12
|
if !request.headers[key].blank?
|
10
13
|
value = request.headers[key]
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
+
if downcase
|
15
|
+
value = value.downcase
|
16
|
+
end
|
14
17
|
end
|
15
18
|
return value
|
16
19
|
end
|
data/lib/arcadex/version.rb
CHANGED
data/test/test_app/Gemfile.lock
CHANGED
data/test/test_app/log/test.log
CHANGED
@@ -21909,3 +21909,689 @@ Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 1.0ms)
|
|
21909
21909
|
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21910
21910
|
[1m[35m (0.0ms)[0m begin transaction
|
21911
21911
|
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21912
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
21913
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21914
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
21915
|
+
[1m[35m (0.0ms)[0m begin transaction
|
21916
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username1') LIMIT 1[0m
|
21917
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username1@LaunchU.com') LIMIT 1
|
21918
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21919
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21920
|
+
Processing by AppIndexController#app as HTML
|
21921
|
+
Rendered app_index/app.html.erb within layouts/app_index (0.3ms)
|
21922
|
+
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
21923
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21924
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21925
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21926
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE "people_users"."username" IS NULL LIMIT 1
|
21927
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username2@LaunchU.com') LIMIT 1[0m
|
21928
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
21929
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21930
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21931
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21932
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21933
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21934
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username2') LIMIT 1
|
21935
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE "people_users"."email" IS NULL LIMIT 1[0m
|
21936
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
21937
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21938
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21939
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
21940
|
+
[1m[35m (0.0ms)[0m begin transaction
|
21941
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21942
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username3') LIMIT 1
|
21943
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username3@LaunchU.com') LIMIT 1[0m
|
21944
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
21945
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21946
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21947
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21948
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username4') LIMIT 1
|
21949
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username4@LaunchU.com') LIMIT 1[0m
|
21950
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
21951
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
21952
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21953
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21954
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username5') LIMIT 1
|
21955
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username5@LaunchU.com') LIMIT 1[0m
|
21956
|
+
Binary data inserted for `string` type on column `password_digest`
|
21957
|
+
[1m[35mSQL (2.6ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username5@launchu.com"], ["password_digest", "$2a$04$iYG8q2JyeLLVBrXlytzIu.PVHdj6G/FaUR4L6Ssx0aYeJupgMCf22"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username5"]]
|
21958
|
+
[1m[36mArcadex::Token Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'zxpLpWG3DdYnct-8sgck' LIMIT 1[0m
|
21959
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'zxpLpWG3DdYnct-8sgck' LIMIT 1
|
21960
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "zxpLpWG3DdYnct-8sgck"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
21961
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
21962
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
21963
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21964
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21965
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username6') LIMIT 1
|
21966
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username6@LaunchU.com') LIMIT 1[0m
|
21967
|
+
Binary data inserted for `string` type on column `password_digest`
|
21968
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username6@launchu.com"], ["password_digest", "$2a$04$wTE3J11uMV.OmyUovXUbi.8.gARjAcJwGR0s1Uks2lLq8SuyyBOUK"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username6"]]
|
21969
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ApXPnL_s18BoNim_CeT-' LIMIT 1[0m
|
21970
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ApXPnL_s18BoNim_CeT-' LIMIT 1
|
21971
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "ApXPnL_s18BoNim_CeT-"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
21972
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
21973
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
21974
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21975
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21976
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username7') LIMIT 1
|
21977
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username7@LaunchU.com') LIMIT 1[0m
|
21978
|
+
Binary data inserted for `string` type on column `password_digest`
|
21979
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username7@launchu.com"], ["password_digest", "$2a$04$Crqfn0Aj3JPkhOlbz92OK.qmy51GxJD8G9vT4sQ9immevjuCkSjoC"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username7"]]
|
21980
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '8PAp2PAMN6Yabxs132XM' LIMIT 1[0m
|
21981
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '8PAp2PAMN6Yabxs132XM' LIMIT 1
|
21982
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "8PAp2PAMN6Yabxs132XM"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
21983
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
21984
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
21985
|
+
[1m[35m (0.1ms)[0m begin transaction
|
21986
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
21987
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username8') LIMIT 1
|
21988
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username8@LaunchU.com') LIMIT 1[0m
|
21989
|
+
Binary data inserted for `string` type on column `password_digest`
|
21990
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username8@launchu.com"], ["password_digest", "$2a$04$BO8rzdzyIl5pCWy8lbYJYu.ThvDfGgoXou.BORyGJseAI4B9TCyIu"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username8"]]
|
21991
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'gpfoL826g137xjHFPm28' LIMIT 1[0m
|
21992
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'gpfoL826g137xjHFPm28' LIMIT 1
|
21993
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "gpfoL826g137xjHFPm28"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
21994
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
21995
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
21996
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
21997
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
21998
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
21999
|
+
[1m[36mPeople::V1::User Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username9') LIMIT 1[0m
|
22000
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username9@LaunchU.com') LIMIT 1
|
22001
|
+
Binary data inserted for `string` type on column `password_digest`
|
22002
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username9@launchu.com"], ["password_digest", "$2a$04$lj3qcg15gH1nyAGDKp00rOIbR6VEUrcfYN2vfPMJMbgmztnqaWrrm"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username9"]]
|
22003
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' LIMIT 1
|
22004
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' LIMIT 1[0m
|
22005
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "YmJ6h3h9iWMxss6AxdyF"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22007
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22008
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22009
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username10') LIMIT 1
|
22010
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username10@LaunchU.com') LIMIT 1[0m
|
22011
|
+
Binary data inserted for `string` type on column `password_digest`
|
22012
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username10@launchu.com"], ["password_digest", "$2a$04$PqndHDxiQxsF56AOnwwRouHAwc17Alztvh2bube2Z4TV.VZEEVGai"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username10"]]
|
22013
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'HT4JWyG-2wEgrKYxzRDL' LIMIT 1[0m
|
22014
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'HT4JWyG-2wEgrKYxzRDL' LIMIT 1
|
22015
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "HT4JWyG-2wEgrKYxzRDL"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 2], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22016
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22017
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22018
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username11') LIMIT 1
|
22019
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username11@LaunchU.com') LIMIT 1[0m
|
22020
|
+
Binary data inserted for `string` type on column `password_digest`
|
22021
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username11@launchu.com"], ["password_digest", "$2a$04$k8odtzjVhgNdowHLt69bj.yMMQami1Bjd/1/biZ2hPyBs3cf6dN2K"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username11"]]
|
22022
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '2sPyY_dcZjJCxwBTAHim' LIMIT 1[0m
|
22023
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '2sPyY_dcZjJCxwBTAHim' LIMIT 1
|
22024
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "2sPyY_dcZjJCxwBTAHim"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 3], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22025
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22026
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22027
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username12') LIMIT 1
|
22028
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username12@LaunchU.com') LIMIT 1[0m
|
22029
|
+
Binary data inserted for `string` type on column `password_digest`
|
22030
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username12@launchu.com"], ["password_digest", "$2a$04$jpEC0V8USEgqnxVMVQ5rxue.efu9tgVnQMO2xPwPO885HYpM/qyGe"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username12"]]
|
22031
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'C1sncemrsyJ-vK95fAuB' LIMIT 1[0m
|
22032
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'C1sncemrsyJ-vK95fAuB' LIMIT 1
|
22033
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "C1sncemrsyJ-vK95fAuB"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 4], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22034
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22035
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22036
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username13') LIMIT 1
|
22037
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username13@LaunchU.com') LIMIT 1[0m
|
22038
|
+
Binary data inserted for `string` type on column `password_digest`
|
22039
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username13@launchu.com"], ["password_digest", "$2a$04$IFXox209JnEyg8zarLMFzekKO0zdoYcmZUsyoaJW0Ue57LmOdn8Be"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username13"]]
|
22040
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '6xHjMbmt4uQgz1xjfbwM' LIMIT 1[0m
|
22041
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '6xHjMbmt4uQgz1xjfbwM' LIMIT 1
|
22042
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "6xHjMbmt4uQgz1xjfbwM"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 5], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22043
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22045
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username14') LIMIT 1
|
22046
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username14@LaunchU.com') LIMIT 1[0m
|
22047
|
+
Binary data inserted for `string` type on column `password_digest`
|
22048
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username14@launchu.com"], ["password_digest", "$2a$04$RG0E0EgfrH1b3Msr6ZEECOKD0d4yWiHNaTI59F1djy0ym1/ZsQZ/O"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username14"]]
|
22049
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ux2P8Pd56AzMj3h-a_1h' LIMIT 1[0m
|
22050
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ux2P8Pd56AzMj3h-a_1h' LIMIT 1
|
22051
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "Ux2P8Pd56AzMj3h-a_1h"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 6], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22052
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22053
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22054
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username15') LIMIT 1
|
22055
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username15@LaunchU.com') LIMIT 1[0m
|
22056
|
+
Binary data inserted for `string` type on column `password_digest`
|
22057
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username15@launchu.com"], ["password_digest", "$2a$04$oI1tF8wsonIeWRLOdaciT.GDNujuwIJIghUjsaIBBddRUMRMc/CdS"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username15"]]
|
22058
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '5Rq3mxyo9PYd59h562hq' LIMIT 1[0m
|
22059
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '5Rq3mxyo9PYd59h562hq' LIMIT 1
|
22060
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "5Rq3mxyo9PYd59h562hq"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 7], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22061
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22062
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22063
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username16') LIMIT 1
|
22064
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username16@LaunchU.com') LIMIT 1[0m
|
22065
|
+
Binary data inserted for `string` type on column `password_digest`
|
22066
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username16@launchu.com"], ["password_digest", "$2a$04$r/SXhXUXDZaAKunfESnswu97DzBfhiucfmsK.S9hgNtGMrB/DPn2q"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username16"]]
|
22067
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Dzv5dtLaVhzn4r5qf4DX' LIMIT 1[0m
|
22068
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Dzv5dtLaVhzn4r5qf4DX' LIMIT 1
|
22069
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "Dzv5dtLaVhzn4r5qf4DX"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 8], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22070
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22071
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22072
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username17') LIMIT 1
|
22073
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username17@LaunchU.com') LIMIT 1[0m
|
22074
|
+
Binary data inserted for `string` type on column `password_digest`
|
22075
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username17@launchu.com"], ["password_digest", "$2a$04$SfyunT77H157oImJUIT/w.vdlqwOZr8FwCcMiL9Ke.JJcnlcUEnVG"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username17"]]
|
22076
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '1xjgov5e5jgVdHRB3yiq' LIMIT 1[0m
|
22077
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '1xjgov5e5jgVdHRB3yiq' LIMIT 1
|
22078
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "1xjgov5e5jgVdHRB3yiq"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 9], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22079
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22080
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22081
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username18') LIMIT 1
|
22082
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username18@LaunchU.com') LIMIT 1[0m
|
22083
|
+
Binary data inserted for `string` type on column `password_digest`
|
22084
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username18@launchu.com"], ["password_digest", "$2a$04$oj0OdqKLyPVMEP6sWvZfGOiG5ZxaMJIguSwDLpRIfJ/BdBdEzU2uC"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username18"]]
|
22085
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YcsS6nKbaNKbkBSB8NmH' LIMIT 1[0m
|
22086
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YcsS6nKbaNKbkBSB8NmH' LIMIT 1
|
22087
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "YcsS6nKbaNKbkBSB8NmH"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 10], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22088
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22089
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22090
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username19') LIMIT 1
|
22091
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username19@LaunchU.com') LIMIT 1[0m
|
22092
|
+
Binary data inserted for `string` type on column `password_digest`
|
22093
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username19@launchu.com"], ["password_digest", "$2a$04$aZ3KvTDhw6QDizPyJmVxN.nLja8/wAyE4.l6hF1YxhrkdaIqUGeZG"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username19"]]
|
22094
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'FToLCxs7woxe_yqEQsJ-' LIMIT 1[0m
|
22095
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'FToLCxs7woxe_yqEQsJ-' LIMIT 1
|
22096
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "FToLCxs7woxe_yqEQsJ-"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 11], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22097
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22098
|
+
Started GET "/api/1/users" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22099
|
+
Processing by People::Api::V1::UsersController#index as HTML
|
22100
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' LIMIT 1[0m
|
22101
|
+
[1m[35mPeople::V1::User Load (0.2ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22102
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22103
|
+
[1m[35mArcadex::Token Exists (0.2ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22104
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1[0m [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22105
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22106
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username9@launchu.com' LIMIT 1[0m
|
22107
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users"
|
22108
|
+
Completed 200 OK in 17ms (Views: 5.1ms | ActiveRecord: 1.3ms)
|
22109
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
22110
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22111
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22112
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username20') LIMIT 1
|
22113
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username20@LaunchU.com') LIMIT 1[0m
|
22114
|
+
Binary data inserted for `string` type on column `password_digest`
|
22115
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username20@launchu.com"], ["password_digest", "$2a$04$jglyT8wChn30hL/COnIidOmVWQLiUNgt.RSUFk.SRVrNHFrjPFCfu"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username20"]]
|
22116
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' LIMIT 1[0m
|
22117
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' LIMIT 1
|
22118
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "uEeeCc1eEEtyunQS_naR"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22119
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22120
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22121
|
+
Started GET "/api/1/users/1" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22122
|
+
Processing by People::Api::V1::UsersController#show as HTML
|
22123
|
+
Parameters: {"id"=>"1"}
|
22124
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' LIMIT 1
|
22125
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
22126
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22127
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' AND "arcadex_tokens"."id" != 1) LIMIT 1[0m
|
22128
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1 [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22129
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22130
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username20@launchu.com' LIMIT 1
|
22131
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1[0m
|
22132
|
+
Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.9ms)
|
22133
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
22134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22135
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22136
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username21') LIMIT 1[0m
|
22137
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username21@LaunchU.com') LIMIT 1
|
22138
|
+
Binary data inserted for `string` type on column `password_digest`
|
22139
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username21@launchu.com"], ["password_digest", "$2a$04$KlNAGXKrDOiDxFoxRuFSo.8icFsIzVOkQh8SpszHWcUv7hQi4kil6"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username21"]]
|
22140
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' LIMIT 1
|
22141
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' LIMIT 1[0m
|
22142
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "GaVtC6jsJstWkWdsLxFx"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22143
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22144
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22145
|
+
Started PUT "/api/1/users/1" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22146
|
+
Processing by People::Api::V1::UsersController#update as HTML
|
22147
|
+
Parameters: {"user"=>{"username"=>"username22", "email"=>"Cole@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"1"}
|
22148
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' LIMIT 1[0m
|
22149
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22150
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22151
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22152
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1[0m [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22153
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22154
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username21@launchu.com' LIMIT 1[0m
|
22155
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1
|
22156
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22157
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."username") = LOWER('username22') AND "people_users"."id" != 1) LIMIT 1
|
22158
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."email") = LOWER('Cole@LaunchU.com') AND "people_users"."id" != 1) LIMIT 1[0m
|
22159
|
+
Binary data inserted for `string` type on column `password_digest`
|
22160
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "people_users" SET "username" = ?, "email" = ?, "password_digest" = ?, "updated_at" = ? WHERE "people_users"."id" = 1 [["username", "username22"], ["email", "cole@launchu.com"], ["password_digest", "$2a$04$4UtNAPtvJXjfpJfVs2FLA.0yTmK1Cbvdlka9YuoxSKCZo6YGfqNZi"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22161
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22162
|
+
Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 1.9ms)
|
22163
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
22164
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22165
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22166
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username23') LIMIT 1[0m
|
22167
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username23@LaunchU.com') LIMIT 1
|
22168
|
+
Binary data inserted for `string` type on column `password_digest`
|
22169
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username23@launchu.com"], ["password_digest", "$2a$04$kgs2uYqT/4lBv9rqpNAFFuSRbFNJDID5R9XrZ7oRhkgxxRr2.0IIO"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username23"]]
|
22170
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' LIMIT 1
|
22171
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' LIMIT 1[0m
|
22172
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "yxYpS3m8QqbbFbfT4D-N"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22173
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22174
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22175
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22176
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username24') LIMIT 1
|
22177
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username24@LaunchU.com') LIMIT 1[0m
|
22178
|
+
Binary data inserted for `string` type on column `password_digest`
|
22179
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username24@launchu.com"], ["password_digest", "$2a$04$GxgTzV/lAiGge48k3ArZZ.KFNjVTBfbQwVQlBSH98POxcpycncNDK"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username24"]]
|
22180
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'XF-_QBnKzRV7ffx1DLYj' LIMIT 1[0m
|
22181
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'XF-_QBnKzRV7ffx1DLYj' LIMIT 1
|
22182
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "XF-_QBnKzRV7ffx1DLYj"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 2], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22183
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22184
|
+
Started PUT "/api/1/users/2" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22185
|
+
Processing by People::Api::V1::UsersController#update as HTML
|
22186
|
+
Parameters: {"user"=>{"username"=>"username25", "email"=>"Cole@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"2"}
|
22187
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' LIMIT 1[0m
|
22188
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22189
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22190
|
+
[1m[35mArcadex::Token Exists (0.2ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22191
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1[0m [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22192
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22193
|
+
[1m[36mPeople::V1::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username23@launchu.com' LIMIT 1[0m
|
22194
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 2 LIMIT 1
|
22195
|
+
Filter chain halted as :update_authorize rendered or redirected
|
22196
|
+
Completed 403 Forbidden in 8ms (Views: 0.2ms | ActiveRecord: 1.1ms)
|
22197
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
22198
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22199
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22200
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username26') LIMIT 1
|
22201
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username26@LaunchU.com') LIMIT 1[0m
|
22202
|
+
Binary data inserted for `string` type on column `password_digest`
|
22203
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username26@launchu.com"], ["password_digest", "$2a$04$kf0ytDBKEhddVM65q2rUB.oEuokh9y1tE.snu39w1BlRlEKdqb/we"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username26"]]
|
22204
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' LIMIT 1[0m
|
22205
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' LIMIT 1
|
22206
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "cyfMF1qa6QHqc9W22LNZ"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22207
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22208
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22209
|
+
Started PUT "/api/1/users/1" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22210
|
+
Processing by People::Api::V1::UsersController#update as HTML
|
22211
|
+
Parameters: {"user"=>{"username"=>"username27", "email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"1"}
|
22212
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' LIMIT 1
|
22213
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
22214
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22215
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' AND "arcadex_tokens"."id" != 1) LIMIT 1[0m
|
22216
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1 [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22217
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22218
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username26@launchu.com' LIMIT 1
|
22219
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1[0m
|
22220
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22221
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."username") = LOWER('username27') AND "people_users"."id" != 1) LIMIT 1[0m
|
22222
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."email") = LOWER('') AND "people_users"."id" != 1) LIMIT 1
|
22223
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
22224
|
+
Completed 422 Unprocessable Entity in 14ms (Views: 0.2ms | ActiveRecord: 1.4ms)
|
22225
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
22226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22227
|
+
Started POST "/api/1/users/register" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22228
|
+
Processing by People::Api::V1::UsersController#register as HTML
|
22229
|
+
Parameters: {"user"=>{"username"=>"username28", "email"=>"username28@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
|
22230
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22231
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username28') LIMIT 1[0m
|
22232
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username28@LaunchU.com') LIMIT 1
|
22233
|
+
Binary data inserted for `string` type on column `password_digest`
|
22234
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username28@launchu.com"], ["password_digest", "$2a$04$4Hky4MalwxM6XhLyVkuB2.zFKuvpO/9/AMyzE03q9MfROtTPVKCvG"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username28"]]
|
22235
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fnp2WqfsL58jNzjpjkwz' LIMIT 1
|
22236
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fnp2WqfsL58jNzjpjkwz' LIMIT 1[0m
|
22237
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "Fnp2WqfsL58jNzjpjkwz"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22238
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22239
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22240
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22241
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'Fnp2WqfsL58jNzjpjkwz' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22242
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "arcadex_tokens" SET "created_at" = ?, "updated_at" = ?, "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "expiration_minutes" = ? WHERE "arcadex_tokens"."id" = 1[0m [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 0], ["expiration_minutes", 360]]
|
22243
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22244
|
+
Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 2.8ms)
|
22245
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "people_users"[0m
|
22246
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22247
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22248
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
22249
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22250
|
+
Started POST "/api/1/users/register" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22251
|
+
Processing by People::Api::V1::UsersController#register as HTML
|
22252
|
+
Parameters: {"user"=>{"username"=>"username29", "email"=>"username29@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
|
22253
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22254
|
+
[1m[36mPeople::V1::User Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username29') LIMIT 1[0m
|
22255
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username29@LaunchU.com') LIMIT 1
|
22256
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
22257
|
+
Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.6ms)
|
22258
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people_users"
|
22259
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22260
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22261
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22262
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username30') LIMIT 1
|
22263
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username30@LaunchU.com') LIMIT 1[0m
|
22264
|
+
Binary data inserted for `string` type on column `password_digest`
|
22265
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username30@launchu.com"], ["password_digest", "$2a$04$72ho7Em6c1G39M9F9XRW9uOSreem.5EydFbDT7qNBYJV9dlxS9mTW"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username30"]]
|
22266
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yjYFLREQx25KsHjSubd2' LIMIT 1[0m
|
22267
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yjYFLREQx25KsHjSubd2' LIMIT 1
|
22268
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "yjYFLREQx25KsHjSubd2"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22269
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22270
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22271
|
+
Started POST "/api/1/users/login" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22272
|
+
Processing by People::Api::V1::UsersController#login as HTML
|
22273
|
+
Parameters: {"user"=>{"username"=>"username30", "email"=>"username30@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
|
22274
|
+
[1m[35mPeople::V1::User Load (0.2ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username30@launchu.com' LIMIT 1
|
22275
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22276
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '99zmcbzdMhBNnESo2ru2' LIMIT 1
|
22277
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '99zmcbzdMhBNnESo2ru2' LIMIT 1[0m
|
22278
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "99zmcbzdMhBNnESo2ru2"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22279
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
22281
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = '99zmcbzdMhBNnESo2ru2' AND "arcadex_tokens"."id" != 2) LIMIT 1[0m
|
22282
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "expiration_minutes" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 2 [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 0], ["expiration_minutes", 360], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22283
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22284
|
+
Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 1.2ms)
|
22285
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22286
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? ORDER BY created_at DESC LIMIT 1[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22287
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
22288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22290
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username31') LIMIT 1[0m
|
22291
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username31@LaunchU.com') LIMIT 1
|
22292
|
+
Binary data inserted for `string` type on column `password_digest`
|
22293
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username31@launchu.com"], ["password_digest", "$2a$04$PEpCKUzqzo17p89j1zY67uVf/3UwIZkvyxz16uuz91S.6nMqelFNa"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username31"]]
|
22294
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'nrUwaS22M8c514P4hs1J' LIMIT 1
|
22295
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'nrUwaS22M8c514P4hs1J' LIMIT 1[0m
|
22296
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "nrUwaS22M8c514P4hs1J"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22297
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22298
|
+
Started POST "/api/1/users/login" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22299
|
+
Processing by People::Api::V1::UsersController#login as HTML
|
22300
|
+
Parameters: {"user"=>{"username"=>"username31", "email"=>"username31@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
|
22301
|
+
[1m[35mPeople::V1::User Load (0.2ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username31@launchu.com' LIMIT 1
|
22302
|
+
Completed 401 Unauthorized in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
22303
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
22304
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22305
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22306
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username32') LIMIT 1
|
22307
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username32@LaunchU.com') LIMIT 1[0m
|
22308
|
+
Binary data inserted for `string` type on column `password_digest`
|
22309
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["email", "username32@launchu.com"], ["password_digest", "$2a$04$gZhuof75MqltDwTvkh.lXOgd0CZRTBOl/MMKI1.nJlsUWwxa66TXu"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username32"]]
|
22310
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' LIMIT 1[0m
|
22311
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' LIMIT 1
|
22312
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "y8ryzxidxoC6TZfUbCsr"], ["created_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00]]
|
22313
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22314
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22315
|
+
Started POST "/api/1/users/logout" for 127.0.0.1 at 2014-10-24 10:40:50 -0400
|
22316
|
+
Processing by People::Api::V1::UsersController#logout as HTML
|
22317
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' LIMIT 1
|
22318
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
22319
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22320
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' AND "arcadex_tokens"."id" != 1) LIMIT 1[0m
|
22321
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1 [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22322
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22323
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username32@launchu.com' LIMIT 1
|
22324
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22325
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "arcadex_tokens" WHERE "arcadex_tokens"."id" = ? [["id", 1]]
|
22326
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22327
|
+
Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 1.1ms)
|
22328
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people_users"
|
22329
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "arcadex_tokens"[0m
|
22330
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
22331
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22332
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22333
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username33') LIMIT 1[0m
|
22334
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username33@LaunchU.com') LIMIT 1
|
22335
|
+
Binary data inserted for `string` type on column `password_digest`
|
22336
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username33@launchu.com"], ["password_digest", "$2a$04$z26WR6MtwlKQXJUJDa0t3u6oLrysEeiwE6QYa8cOvWtPnETSAy.Oi"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username33"]]
|
22337
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' LIMIT 1
|
22338
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' LIMIT 1[0m
|
22339
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "J8zdxeDjLbBrs5hvJCeJ"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22340
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22341
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22342
|
+
Started POST "/api/1/users/authenticate/1" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22343
|
+
Processing by People::Api::V1::UsersController#authenticate as HTML
|
22344
|
+
Parameters: {"user"=>{"username"=>"username33", "email"=>"username33@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"1"}
|
22345
|
+
[1m[36mArcadex::Token Load (1.7ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' LIMIT 1[0m
|
22346
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22347
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22348
|
+
[1m[35mArcadex::Token Exists (0.3ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22349
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1[0m [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22350
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
22351
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username33@launchu.com' LIMIT 1[0m
|
22352
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1
|
22353
|
+
Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 2.9ms)
|
22354
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
22355
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22357
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username34') LIMIT 1
|
22358
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username34@LaunchU.com') LIMIT 1[0m
|
22359
|
+
Binary data inserted for `string` type on column `password_digest`
|
22360
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username34@launchu.com"], ["password_digest", "$2a$04$iiZYlhkV6FiLoHB1iB0VruwKRgyfNnhvNFuneada3n54M1nJ09wje"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username34"]]
|
22361
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' LIMIT 1[0m
|
22362
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' LIMIT 1
|
22363
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "DGC964EDwydEPuSbmT9z"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22364
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22365
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22366
|
+
Started POST "/api/1/users/authenticate/1" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22367
|
+
Processing by People::Api::V1::UsersController#authenticate as HTML
|
22368
|
+
Parameters: {"user"=>{"username"=>"username34", "email"=>"username34@LaunchU.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"1"}
|
22369
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' LIMIT 1
|
22370
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
22371
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22372
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' AND "arcadex_tokens"."id" != 1) LIMIT 1[0m
|
22373
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1 [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22374
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22375
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username34@launchu.com' LIMIT 1
|
22376
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1[0m
|
22377
|
+
Completed 401 Unauthorized in 8ms (Views: 0.2ms | ActiveRecord: 1.0ms)
|
22378
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
22379
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22380
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22381
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username35') LIMIT 1[0m
|
22382
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username35@LaunchU.com') LIMIT 1
|
22383
|
+
Binary data inserted for `string` type on column `password_digest`
|
22384
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username35@launchu.com"], ["password_digest", "$2a$04$Wx2V1fGKHCWs5ER1H65jIOy1hJhrvdoiihm/JJ7HnGZAp6nprEJwG"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username35"]]
|
22385
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' LIMIT 1
|
22386
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' LIMIT 1[0m
|
22387
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "Sq1wgbjgqvowzRpTJCCE"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22388
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22389
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22390
|
+
Started GET "/api/1/users/login_status" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22391
|
+
Processing by People::Api::V1::UsersController#login_status as HTML
|
22392
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' LIMIT 1[0m
|
22393
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22394
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22395
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22396
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1[0m [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22397
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22398
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username35@launchu.com' LIMIT 1[0m
|
22399
|
+
Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.8ms)
|
22400
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
22401
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22402
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22403
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username36') LIMIT 1[0m
|
22404
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username36@LaunchU.com') LIMIT 1
|
22405
|
+
Binary data inserted for `string` type on column `password_digest`
|
22406
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username36@launchu.com"], ["password_digest", "$2a$04$p1yRuj4ovO6E2Y1y1K5Ni.0ACtgXgUr8OUnaA8FW8fuA.5mMh6f2C"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username36"]]
|
22407
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'R5MiWe7__CzdJijzHxMG' LIMIT 1
|
22408
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'R5MiWe7__CzdJijzHxMG' LIMIT 1[0m
|
22409
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "R5MiWe7__CzdJijzHxMG"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22410
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22411
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22412
|
+
Started GET "/api/1/users/login_status" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22413
|
+
Processing by People::Api::V1::UsersController#login_status as HTML
|
22414
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'R5MiWe7__CzdJijzHxMGnot_valid' LIMIT 1[0m
|
22415
|
+
Filter chain halted as :authenticate_user rendered or redirected
|
22416
|
+
Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
|
22417
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
22418
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22419
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22420
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username37') LIMIT 1[0m
|
22421
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username37@LaunchU.com') LIMIT 1
|
22422
|
+
Binary data inserted for `string` type on column `password_digest`
|
22423
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username37@launchu.com"], ["password_digest", "$2a$04$7vGvvDMWcJpmrWh464tu0eXXRApvTUaQNAGzuEVAVTr4WPGUBIREO"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username37"]]
|
22424
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fz5XhR9_A1xz1b_VKv2i' LIMIT 1
|
22425
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fz5XhR9_A1xz1b_VKv2i' LIMIT 1[0m
|
22426
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "Fz5XhR9_A1xz1b_VKv2i"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22427
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22428
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22429
|
+
Started GET "/api/1/users/login_status" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22430
|
+
Processing by People::Api::V1::UsersController#login_status as HTML
|
22431
|
+
Filter chain halted as :authenticate_user rendered or redirected
|
22432
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
22433
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
22434
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22435
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22436
|
+
[1m[35mPeople::V1::User Exists (0.2ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username38') LIMIT 1
|
22437
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username38@LaunchU.com') LIMIT 1[0m
|
22438
|
+
Binary data inserted for `string` type on column `password_digest`
|
22439
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username38@launchu.com"], ["password_digest", "$2a$04$kkxEVT4XdWcEW6iHxs2Cf.ORqB9UAc5358vpgBqu9jlRDm/WCsxN2"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username38"]]
|
22440
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' LIMIT 1[0m
|
22441
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' LIMIT 1
|
22442
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["auth_token", "fAmjtWDgFDP-1Jm1xyb7"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22443
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22444
|
+
[1m[36mArcadex::Token Load (0.1ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ?[0m [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22445
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22446
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username39') LIMIT 1[0m
|
22447
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username39@LaunchU.com') LIMIT 1
|
22448
|
+
Binary data inserted for `string` type on column `password_digest`
|
22449
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username39@launchu.com"], ["password_digest", "$2a$04$RydxhfWl2WdvBVnXc.tN2ukQjySU3/PVjRoJ6q9YmWUtNe0s8ajYy"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username39"]]
|
22450
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'sc4yUq84fvkYY2SsEHGm' LIMIT 1
|
22451
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'sc4yUq84fvkYY2SsEHGm' LIMIT 1[0m
|
22452
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "sc4yUq84fvkYY2SsEHGm"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 2], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22453
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22454
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22455
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username40') LIMIT 1[0m
|
22456
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username40@LaunchU.com') LIMIT 1
|
22457
|
+
Binary data inserted for `string` type on column `password_digest`
|
22458
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username40@launchu.com"], ["password_digest", "$2a$04$WAkk7fXU3CD9vjSxPdPXC.IB3eFEbAaK3qsj3.k16CddJB5PCAaA6"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username40"]]
|
22459
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'NU3BVXDB2yQFxNFQKu2q' LIMIT 1
|
22460
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'NU3BVXDB2yQFxNFQKu2q' LIMIT 1[0m
|
22461
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "NU3BVXDB2yQFxNFQKu2q"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 3], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22462
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22463
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22464
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username41') LIMIT 1[0m
|
22465
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username41@LaunchU.com') LIMIT 1
|
22466
|
+
Binary data inserted for `string` type on column `password_digest`
|
22467
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username41@launchu.com"], ["password_digest", "$2a$04$yT0l7ocxJG/eR6oP3Xc3O.Ui7jcvjPS6zm3EWb3NEdq9RR8.xEAra"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username41"]]
|
22468
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'furu9zTUksAaVkxYqb_x' LIMIT 1
|
22469
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'furu9zTUksAaVkxYqb_x' LIMIT 1[0m
|
22470
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "furu9zTUksAaVkxYqb_x"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 4], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22471
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22472
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22473
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username42') LIMIT 1[0m
|
22474
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username42@LaunchU.com') LIMIT 1
|
22475
|
+
Binary data inserted for `string` type on column `password_digest`
|
22476
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username42@launchu.com"], ["password_digest", "$2a$04$Suq4VmwL0y96UOVk1OHcpeBsOxYs877h.pRf6ELYUunqS9FrCWTZa"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username42"]]
|
22477
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'LGiXhb2YjJ8YakzvbaHv' LIMIT 1
|
22478
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'LGiXhb2YjJ8YakzvbaHv' LIMIT 1[0m
|
22479
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "LGiXhb2YjJ8YakzvbaHv"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 5], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22480
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22481
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22482
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username43') LIMIT 1[0m
|
22483
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username43@LaunchU.com') LIMIT 1
|
22484
|
+
Binary data inserted for `string` type on column `password_digest`
|
22485
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username43@launchu.com"], ["password_digest", "$2a$04$JO85c/JWE210MlyhU9CX4.ySTi1iDYrS89.597egIn1hchDTsBPmi"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username43"]]
|
22486
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'f-6wDypB9zTsw3dzg4P7' LIMIT 1
|
22487
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'f-6wDypB9zTsw3dzg4P7' LIMIT 1[0m
|
22488
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "f-6wDypB9zTsw3dzg4P7"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 6], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22489
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22490
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22491
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username44') LIMIT 1[0m
|
22492
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username44@LaunchU.com') LIMIT 1
|
22493
|
+
Binary data inserted for `string` type on column `password_digest`
|
22494
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username44@launchu.com"], ["password_digest", "$2a$04$sbuzzk8qS5dQOK4IzMxJjOcw/2MEOA4q3iS0HYULbrIxWZv0Dvkhy"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username44"]]
|
22495
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ctv5VWaNvWyrjXGV1yeB' LIMIT 1
|
22496
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ctv5VWaNvWyrjXGV1yeB' LIMIT 1[0m
|
22497
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "Ctv5VWaNvWyrjXGV1yeB"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 7], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22498
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22499
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22500
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username45') LIMIT 1[0m
|
22501
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username45@LaunchU.com') LIMIT 1
|
22502
|
+
Binary data inserted for `string` type on column `password_digest`
|
22503
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username45@launchu.com"], ["password_digest", "$2a$04$KNRDCGwdI2Xrw8rCkAX68.DmvWI5eZaliyic.C1YARQ0UtWesHIKm"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username45"]]
|
22504
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '7zxut_9m-tjUUWyqM1gp' LIMIT 1
|
22505
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '7zxut_9m-tjUUWyqM1gp' LIMIT 1[0m
|
22506
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "7zxut_9m-tjUUWyqM1gp"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 8], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22507
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22508
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22509
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username46') LIMIT 1[0m
|
22510
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username46@LaunchU.com') LIMIT 1
|
22511
|
+
Binary data inserted for `string` type on column `password_digest`
|
22512
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username46@launchu.com"], ["password_digest", "$2a$04$3Df1c1tzbELtE2RR1rEiqeL0h3Fuq1s7jr1./YorFIGt4hxz5t0tW"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username46"]]
|
22513
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ET1kyfszyyiEHJ7yeDWu' LIMIT 1
|
22514
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ET1kyfszyyiEHJ7yeDWu' LIMIT 1[0m
|
22515
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "ET1kyfszyyiEHJ7yeDWu"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 9], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22516
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22517
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22518
|
+
[1m[36mPeople::V1::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username47') LIMIT 1[0m
|
22519
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username47@LaunchU.com') LIMIT 1
|
22520
|
+
Binary data inserted for `string` type on column `password_digest`
|
22521
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username47@launchu.com"], ["password_digest", "$2a$04$.KX9OJ0A9ldZmISP1Z6nOOB.G1EUwmffLb3.6sVPyy/NS7piPA9t2"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username47"]]
|
22522
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'u8JASRdeYaATrtW6AEKj' LIMIT 1
|
22523
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'u8JASRdeYaATrtW6AEKj' LIMIT 1[0m
|
22524
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "u8JASRdeYaATrtW6AEKj"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 10], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22525
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22526
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22527
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username48') LIMIT 1[0m
|
22528
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username48@LaunchU.com') LIMIT 1
|
22529
|
+
Binary data inserted for `string` type on column `password_digest`
|
22530
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username48@launchu.com"], ["password_digest", "$2a$04$S2P9/Z6mbCI9//veUUJitOQEhPpfADUAZBm1MJxPv.vyPaiTwWKsO"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username48"]]
|
22531
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'syDiBnE9595viyycQSAx' LIMIT 1
|
22532
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'syDiBnE9595viyycQSAx' LIMIT 1[0m
|
22533
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "syDiBnE9595viyycQSAx"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 11], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22534
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22535
|
+
Started GET "/api/1/users" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22536
|
+
Processing by People::Api::V1::UsersController#index as HTML
|
22537
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' LIMIT 1
|
22538
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
22539
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22540
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' AND "arcadex_tokens"."id" != 1) LIMIT 1[0m
|
22541
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1 [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22542
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22543
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username38@launchu.com' LIMIT 1
|
22544
|
+
[1m[36mPeople::V1::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users"[0m
|
22545
|
+
Completed 200 OK in 9ms (Views: 3.6ms | ActiveRecord: 0.9ms)
|
22546
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "people_users"
|
22547
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "arcadex_tokens"[0m
|
22548
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
22549
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22550
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22551
|
+
[1m[36mPeople::V1::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username49') LIMIT 1[0m
|
22552
|
+
[1m[35mPeople::V1::User Exists (0.1ms)[0m SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username49@LaunchU.com') LIMIT 1
|
22553
|
+
Binary data inserted for `string` type on column `password_digest`
|
22554
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "people_users" ("created_at", "email", "password_digest", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["email", "username49@launchu.com"], ["password_digest", "$2a$04$WWi7/.ko/cp9yQpu9ZmWuujPhYiK/0otKQOePY9en9sVPr8G/ID5u"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username49"]]
|
22555
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' LIMIT 1
|
22556
|
+
[1m[36mArcadex::Token Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' LIMIT 1[0m
|
22557
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["auth_token", "xw52xYqxKQTWspQZMFev"], ["created_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["imageable_id", 1], ["imageable_type", "People::V1::User"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22558
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
22559
|
+
[1m[35mArcadex::Token Load (0.1ms)[0m SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
|
22560
|
+
Started GET "/api/1/users/20" for 127.0.0.1 at 2014-10-24 10:40:51 -0400
|
22561
|
+
Processing by People::Api::V1::UsersController#show as HTML
|
22562
|
+
Parameters: {"id"=>"20"}
|
22563
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' LIMIT 1[0m
|
22564
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
|
22565
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
22566
|
+
[1m[35mArcadex::Token Exists (0.1ms)[0m SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' AND "arcadex_tokens"."id" != 1) LIMIT 1
|
22567
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "arcadex_tokens" SET "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "updated_at" = ? WHERE "arcadex_tokens"."id" = 1[0m [["first_ip_address", "127.0.0.1"], ["current_ip_address", "127.0.0.1"], ["times_used", 1], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00]]
|
22568
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
22569
|
+
[1m[36mPeople::V1::User Load (0.1ms)[0m [1mSELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username49@launchu.com' LIMIT 1[0m
|
22570
|
+
[1m[35mPeople::V1::User Load (0.1ms)[0m SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 20 LIMIT 1
|
22571
|
+
Filter chain halted as :set_user rendered or redirected
|
22572
|
+
Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 0.9ms)
|
22573
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
22574
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22575
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22576
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22577
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22578
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22579
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
22580
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22581
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22582
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22583
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22584
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22585
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22586
|
+
[1m[35m (0.1ms)[0m begin transaction
|
22587
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22588
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22589
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22590
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22591
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
22592
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22593
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
22594
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22595
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
22596
|
+
[1m[35m (0.0ms)[0m begin transaction
|
22597
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arcadex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cleophus Robinson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 3.2.4
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: identity_cache
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: sqlite3
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -348,7 +362,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
348
362
|
version: '0'
|
349
363
|
requirements: []
|
350
364
|
rubyforge_project:
|
351
|
-
rubygems_version: 2.
|
365
|
+
rubygems_version: 2.2.2
|
352
366
|
signing_key:
|
353
367
|
specification_version: 4
|
354
368
|
summary: Provides a token class and functions to use the token for an API
|