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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 131b7e365740221eec23b5de5f450fac54b4ffe9
4
- data.tar.gz: eb091d93fe323bdba94ba31768e9baad2558c0a9
3
+ metadata.gz: 91b34092131407b709a1d3178a770e0f69557174
4
+ data.tar.gz: cb113375a85ce9ce83541ee4bbfaf063b11d73d1
5
5
  SHA512:
6
- metadata.gz: 544f23519b59276329521da64283b4649f94dff195a778e1a5e8a01d4946bdf85b516c6ada6380b9f56918149f65c443b4a7536f47b0dac9a4dc84d409f5b239
7
- data.tar.gz: 9fa1f03f48764aceac6bd93e97a798cf95b09a91a53bccb3dd59145da8ad87fff5cae38c015acba893c7bc9423c88bf20550c0d273a3b14e8abfa629ff588b24
6
+ metadata.gz: aa4d4fcb161c27384972e46438ba5667e54afdbf1b3b411993e46780640a7f4c76047e38a91a52df01bf980a5a2e8eee1005797546617dc4039a977f33eeb618
7
+ data.tar.gz: 3e6eb947b32ba1b1d32232c693ea0adc6d1e28dae29ce3b9aed88d30afad77f79462ccb5effbf15cd4d61461e676247aa7b41daf85dacdfffb1be4eda76a5845
@@ -1,5 +1,8 @@
1
1
  module Arcadex
2
2
  class Token < ActiveRecord::Base
3
+ include IdentityCache
4
+ cache_index :auth_token, :unique => true
5
+
3
6
  before_validation :generate_hash, on: :create
4
7
 
5
8
  belongs_to :imageable, :polymorphic => true
@@ -25,7 +25,7 @@ module Arcadex
25
25
  def self.token_expired?(token)
26
26
  if !token.expiration_minutes.nil?
27
27
  date = token.created_at.utc + token.expiration_minutes.minutes
28
- if Time.now.utc > date
28
+ if ::Time.now.utc > date
29
29
  return true
30
30
  else
31
31
  return false
@@ -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
@@ -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
- end
12
- if downcase
13
- value = value.downcase
14
+ if downcase
15
+ value = value.downcase
16
+ end
14
17
  end
15
18
  return value
16
19
  end
@@ -1,3 +1,3 @@
1
1
  module Arcadex
2
- VERSION = "1.2.3"
2
+ VERSION = "1.3.0"
3
3
  end
@@ -19,7 +19,7 @@ GIT
19
19
  PATH
20
20
  remote: ../../../arcadex
21
21
  specs:
22
- arcadex (1.2.3)
22
+ arcadex (1.2.4)
23
23
  devise (>= 3.2.4)
24
24
  rails (>= 4.0.0)
25
25
 
@@ -21909,3 +21909,689 @@ Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 1.0ms)
21909
21909
   (0.1ms) rollback transaction
21910
21910
   (0.0ms) begin transaction
21911
21911
   (0.1ms) rollback transaction
21912
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
21913
+  (0.1ms) begin transaction
21914
+  (0.0ms) commit transaction
21915
+  (0.0ms) begin transaction
21916
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username1') LIMIT 1
21917
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username1@LaunchU.com') LIMIT 1
21918
+  (0.1ms) rollback transaction
21919
+  (0.1ms) 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
+  (0.1ms) rollback transaction
21924
+  (0.1ms) begin transaction
21925
+  (0.1ms) SAVEPOINT active_record_1
21926
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE "people_users"."username" IS NULL LIMIT 1
21927
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username2@LaunchU.com') LIMIT 1
21928
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
21929
+  (0.1ms) rollback transaction
21930
+  (0.1ms) begin transaction
21931
+  (0.1ms) rollback transaction
21932
+  (0.1ms) begin transaction
21933
+  (0.1ms) SAVEPOINT active_record_1
21934
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username2') LIMIT 1
21935
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE "people_users"."email" IS NULL LIMIT 1
21936
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
21937
+  (0.1ms) rollback transaction
21938
+  (0.1ms) begin transaction
21939
+  (0.0ms) rollback transaction
21940
+  (0.0ms) begin transaction
21941
+  (0.1ms) SAVEPOINT active_record_1
21942
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username3') LIMIT 1
21943
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username3@LaunchU.com') LIMIT 1
21944
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
21945
+  (0.1ms) rollback transaction
21946
+  (0.1ms) begin transaction
21947
+  (0.1ms) SAVEPOINT active_record_1
21948
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username4') LIMIT 1
21949
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username4@LaunchU.com') LIMIT 1
21950
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
21951
+  (0.1ms) rollback transaction
21952
+  (0.1ms) begin transaction
21953
+  (0.1ms) SAVEPOINT active_record_1
21954
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username5') LIMIT 1
21955
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username5@LaunchU.com') LIMIT 1
21956
+ Binary data inserted for `string` type on column `password_digest`
21957
+ SQL (2.6ms) 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
+ Arcadex::Token Exists (0.2ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'zxpLpWG3DdYnct-8sgck' LIMIT 1
21959
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'zxpLpWG3DdYnct-8sgck' LIMIT 1
21960
+ SQL (0.6ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21962
+  (0.2ms) rollback transaction
21963
+  (0.1ms) begin transaction
21964
+  (0.1ms) SAVEPOINT active_record_1
21965
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username6') LIMIT 1
21966
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username6@LaunchU.com') LIMIT 1
21967
+ Binary data inserted for `string` type on column `password_digest`
21968
+ SQL (1.0ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ApXPnL_s18BoNim_CeT-' LIMIT 1
21970
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ApXPnL_s18BoNim_CeT-' LIMIT 1
21971
+ SQL (0.5ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21973
+  (0.2ms) rollback transaction
21974
+  (0.1ms) begin transaction
21975
+  (0.1ms) SAVEPOINT active_record_1
21976
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username7') LIMIT 1
21977
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username7@LaunchU.com') LIMIT 1
21978
+ Binary data inserted for `string` type on column `password_digest`
21979
+ SQL (0.9ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '8PAp2PAMN6Yabxs132XM' LIMIT 1
21981
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '8PAp2PAMN6Yabxs132XM' LIMIT 1
21982
+ SQL (0.4ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21984
+  (0.2ms) rollback transaction
21985
+  (0.1ms) begin transaction
21986
+  (0.1ms) SAVEPOINT active_record_1
21987
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username8') LIMIT 1
21988
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username8@LaunchU.com') LIMIT 1
21989
+ Binary data inserted for `string` type on column `password_digest`
21990
+ SQL (1.0ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'gpfoL826g137xjHFPm28' LIMIT 1
21992
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'gpfoL826g137xjHFPm28' LIMIT 1
21993
+ SQL (0.4ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21995
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
21996
+  (0.2ms) rollback transaction
21997
+  (0.1ms) begin transaction
21998
+  (0.1ms) SAVEPOINT active_record_1
21999
+ People::V1::User Exists (0.3ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username9') LIMIT 1
22000
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.0ms) 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", "username9@launchu.com"], ["password_digest", "$2a$04$lj3qcg15gH1nyAGDKp00rOIbR6VEUrcfYN2vfPMJMbgmztnqaWrrm"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username9"]]
22003
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' LIMIT 1
22004
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' LIMIT 1
22005
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22007
+ Arcadex::Token Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
22009
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username10') LIMIT 1
22010
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username10@LaunchU.com') LIMIT 1
22011
+ Binary data inserted for `string` type on column `password_digest`
22012
+ SQL (0.4ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'HT4JWyG-2wEgrKYxzRDL' LIMIT 1
22014
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'HT4JWyG-2wEgrKYxzRDL' LIMIT 1
22015
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22017
+  (0.1ms) SAVEPOINT active_record_1
22018
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username11') LIMIT 1
22019
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username11@LaunchU.com') LIMIT 1
22020
+ Binary data inserted for `string` type on column `password_digest`
22021
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '2sPyY_dcZjJCxwBTAHim' LIMIT 1
22023
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '2sPyY_dcZjJCxwBTAHim' LIMIT 1
22024
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22026
+  (0.0ms) SAVEPOINT active_record_1
22027
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username12') LIMIT 1
22028
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username12@LaunchU.com') LIMIT 1
22029
+ Binary data inserted for `string` type on column `password_digest`
22030
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'C1sncemrsyJ-vK95fAuB' LIMIT 1
22032
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'C1sncemrsyJ-vK95fAuB' LIMIT 1
22033
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22035
+  (0.1ms) SAVEPOINT active_record_1
22036
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username13') LIMIT 1
22037
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username13@LaunchU.com') LIMIT 1
22038
+ Binary data inserted for `string` type on column `password_digest`
22039
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '6xHjMbmt4uQgz1xjfbwM' LIMIT 1
22041
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '6xHjMbmt4uQgz1xjfbwM' LIMIT 1
22042
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22044
+  (0.0ms) SAVEPOINT active_record_1
22045
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username14') LIMIT 1
22046
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username14@LaunchU.com') LIMIT 1
22047
+ Binary data inserted for `string` type on column `password_digest`
22048
+ SQL (0.4ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ux2P8Pd56AzMj3h-a_1h' LIMIT 1
22050
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ux2P8Pd56AzMj3h-a_1h' LIMIT 1
22051
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22053
+  (0.1ms) SAVEPOINT active_record_1
22054
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username15') LIMIT 1
22055
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username15@LaunchU.com') LIMIT 1
22056
+ Binary data inserted for `string` type on column `password_digest`
22057
+ SQL (0.4ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '5Rq3mxyo9PYd59h562hq' LIMIT 1
22059
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '5Rq3mxyo9PYd59h562hq' LIMIT 1
22060
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22062
+  (0.1ms) SAVEPOINT active_record_1
22063
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username16') LIMIT 1
22064
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username16@LaunchU.com') LIMIT 1
22065
+ Binary data inserted for `string` type on column `password_digest`
22066
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Dzv5dtLaVhzn4r5qf4DX' LIMIT 1
22068
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Dzv5dtLaVhzn4r5qf4DX' LIMIT 1
22069
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22071
+  (0.1ms) SAVEPOINT active_record_1
22072
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username17') LIMIT 1
22073
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username17@LaunchU.com') LIMIT 1
22074
+ Binary data inserted for `string` type on column `password_digest`
22075
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '1xjgov5e5jgVdHRB3yiq' LIMIT 1
22077
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '1xjgov5e5jgVdHRB3yiq' LIMIT 1
22078
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22080
+  (0.0ms) SAVEPOINT active_record_1
22081
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username18') LIMIT 1
22082
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username18@LaunchU.com') LIMIT 1
22083
+ Binary data inserted for `string` type on column `password_digest`
22084
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YcsS6nKbaNKbkBSB8NmH' LIMIT 1
22086
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YcsS6nKbaNKbkBSB8NmH' LIMIT 1
22087
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22089
+  (0.1ms) SAVEPOINT active_record_1
22090
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username19') LIMIT 1
22091
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username19@LaunchU.com') LIMIT 1
22092
+ Binary data inserted for `string` type on column `password_digest`
22093
+ SQL (0.3ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'FToLCxs7woxe_yqEQsJ-' LIMIT 1
22095
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'FToLCxs7woxe_yqEQsJ-' LIMIT 1
22096
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) 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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' LIMIT 1
22101
+ People::V1::User Load (0.2ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22102
+  (0.1ms) SAVEPOINT active_record_1
22103
+ Arcadex::Token Exists (0.2ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'YmJ6h3h9iWMxss6AxdyF' AND "arcadex_tokens"."id" != 1) LIMIT 1
22104
+ SQL (0.3ms) 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]]
22105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22106
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username9@launchu.com' LIMIT 1
22107
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users"
22108
+ Completed 200 OK in 17ms (Views: 5.1ms | ActiveRecord: 1.3ms)
22109
+  (0.3ms) rollback transaction
22110
+  (0.1ms) begin transaction
22111
+  (0.1ms) SAVEPOINT active_record_1
22112
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username20') LIMIT 1
22113
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username20@LaunchU.com') LIMIT 1
22114
+ Binary data inserted for `string` type on column `password_digest`
22115
+ SQL (1.0ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' LIMIT 1
22117
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' LIMIT 1
22118
+ SQL (0.6ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22120
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' LIMIT 1
22125
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22126
+  (0.1ms) SAVEPOINT active_record_1
22127
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'uEeeCc1eEEtyunQS_naR' AND "arcadex_tokens"."id" != 1) LIMIT 1
22128
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22130
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username20@launchu.com' LIMIT 1
22131
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1
22132
+ Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.9ms)
22133
+  (0.3ms) rollback transaction
22134
+  (0.1ms) begin transaction
22135
+  (0.1ms) SAVEPOINT active_record_1
22136
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username21') LIMIT 1
22137
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.0ms) 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", "username21@launchu.com"], ["password_digest", "$2a$04$KlNAGXKrDOiDxFoxRuFSo.8icFsIzVOkQh8SpszHWcUv7hQi4kil6"], ["updated_at", Fri, 24 Oct 2014 14:40:50 UTC +00:00], ["username", "username21"]]
22140
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' LIMIT 1
22141
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' LIMIT 1
22142
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22144
+ Arcadex::Token Load (0.1ms) 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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' LIMIT 1
22149
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22150
+  (0.1ms) SAVEPOINT active_record_1
22151
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'GaVtC6jsJstWkWdsLxFx' AND "arcadex_tokens"."id" != 1) LIMIT 1
22152
+ SQL (0.3ms) 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]]
22153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22154
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username21@launchu.com' LIMIT 1
22155
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1
22156
+  (0.1ms) SAVEPOINT active_record_1
22157
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."username") = LOWER('username22') AND "people_users"."id" != 1) LIMIT 1
22158
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."email") = LOWER('Cole@LaunchU.com') AND "people_users"."id" != 1) LIMIT 1
22159
+ Binary data inserted for `string` type on column `password_digest`
22160
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22162
+ Completed 200 OK in 18ms (Views: 0.9ms | ActiveRecord: 1.9ms)
22163
+  (0.4ms) rollback transaction
22164
+  (0.1ms) begin transaction
22165
+  (0.1ms) SAVEPOINT active_record_1
22166
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username23') LIMIT 1
22167
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.9ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' LIMIT 1
22171
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' LIMIT 1
22172
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22174
+ Arcadex::Token Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
22176
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username24') LIMIT 1
22177
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username24@LaunchU.com') LIMIT 1
22178
+ Binary data inserted for `string` type on column `password_digest`
22179
+ SQL (0.4ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'XF-_QBnKzRV7ffx1DLYj' LIMIT 1
22181
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'XF-_QBnKzRV7ffx1DLYj' LIMIT 1
22182
+ SQL (0.2ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) 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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' LIMIT 1
22188
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22189
+  (0.1ms) SAVEPOINT active_record_1
22190
+ Arcadex::Token Exists (0.2ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'yxYpS3m8QqbbFbfT4D-N' AND "arcadex_tokens"."id" != 1) LIMIT 1
22191
+ SQL (0.3ms) 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]]
22192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22193
+ People::V1::User Load (0.2ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username23@launchu.com' LIMIT 1
22194
+ People::V1::User Load (0.1ms) 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
+  (0.3ms) rollback transaction
22198
+  (0.1ms) begin transaction
22199
+  (0.1ms) SAVEPOINT active_record_1
22200
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username26') LIMIT 1
22201
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username26@LaunchU.com') LIMIT 1
22202
+ Binary data inserted for `string` type on column `password_digest`
22203
+ SQL (0.9ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' LIMIT 1
22205
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' LIMIT 1
22206
+ SQL (0.4ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22208
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' LIMIT 1
22213
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22214
+  (0.1ms) SAVEPOINT active_record_1
22215
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'cyfMF1qa6QHqc9W22LNZ' AND "arcadex_tokens"."id" != 1) LIMIT 1
22216
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22218
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username26@launchu.com' LIMIT 1
22219
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1
22220
+  (0.1ms) SAVEPOINT active_record_1
22221
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."username") = LOWER('username27') AND "people_users"."id" != 1) LIMIT 1
22222
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE (LOWER("people_users"."email") = LOWER('') AND "people_users"."id" != 1) LIMIT 1
22223
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
22224
+ Completed 422 Unprocessable Entity in 14ms (Views: 0.2ms | ActiveRecord: 1.4ms)
22225
+  (0.3ms) rollback transaction
22226
+  (0.1ms) begin transaction
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
+  (0.1ms) SAVEPOINT active_record_1
22231
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username28') LIMIT 1
22232
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.0ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fnp2WqfsL58jNzjpjkwz' LIMIT 1
22236
+ CACHE (0.0ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fnp2WqfsL58jNzjpjkwz' LIMIT 1
22237
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22239
+ Arcadex::Token Load (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
22241
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'Fnp2WqfsL58jNzjpjkwz' AND "arcadex_tokens"."id" != 1) LIMIT 1
22242
+ SQL (0.4ms) UPDATE "arcadex_tokens" SET "created_at" = ?, "updated_at" = ?, "first_ip_address" = ?, "current_ip_address" = ?, "times_used" = ?, "expiration_minutes" = ? WHERE "arcadex_tokens"."id" = 1 [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22244
+ Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 2.8ms)
22245
+  (0.1ms) SELECT COUNT(*) FROM "people_users"
22246
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22247
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
22248
+  (0.2ms) rollback transaction
22249
+  (0.1ms) begin transaction
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
+  (0.1ms) SAVEPOINT active_record_1
22254
+ People::V1::User Exists (0.3ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username29') LIMIT 1
22255
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username29@LaunchU.com') LIMIT 1
22256
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
22257
+ Completed 422 Unprocessable Entity in 7ms (Views: 0.2ms | ActiveRecord: 0.6ms)
22258
+  (0.1ms) SELECT COUNT(*) FROM "people_users"
22259
+  (0.1ms) rollback transaction
22260
+  (0.1ms) begin transaction
22261
+  (0.1ms) SAVEPOINT active_record_1
22262
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username30') LIMIT 1
22263
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username30@LaunchU.com') LIMIT 1
22264
+ Binary data inserted for `string` type on column `password_digest`
22265
+ SQL (1.1ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yjYFLREQx25KsHjSubd2' LIMIT 1
22267
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'yjYFLREQx25KsHjSubd2' LIMIT 1
22268
+ SQL (0.4ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22270
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["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
+ People::V1::User Load (0.2ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username30@launchu.com' LIMIT 1
22275
+  (0.1ms) SAVEPOINT active_record_1
22276
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '99zmcbzdMhBNnESo2ru2' LIMIT 1
22277
+ CACHE (0.0ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '99zmcbzdMhBNnESo2ru2' LIMIT 1
22278
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22280
+  (0.0ms) SAVEPOINT active_record_1
22281
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = '99zmcbzdMhBNnESo2ru2' AND "arcadex_tokens"."id" != 2) LIMIT 1
22282
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22284
+ Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 1.2ms)
22285
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22286
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? ORDER BY created_at DESC LIMIT 1 [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
22287
+  (0.4ms) rollback transaction
22288
+  (0.1ms) begin transaction
22289
+  (0.1ms) SAVEPOINT active_record_1
22290
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username31') LIMIT 1
22291
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.0ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'nrUwaS22M8c514P4hs1J' LIMIT 1
22295
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'nrUwaS22M8c514P4hs1J' LIMIT 1
22296
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ People::V1::User Load (0.2ms) 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
+  (0.3ms) rollback transaction
22304
+  (0.1ms) begin transaction
22305
+  (0.1ms) SAVEPOINT active_record_1
22306
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username32') LIMIT 1
22307
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username32@LaunchU.com') LIMIT 1
22308
+ Binary data inserted for `string` type on column `password_digest`
22309
+ SQL (1.0ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' LIMIT 1
22311
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' LIMIT 1
22312
+ SQL (0.5ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22314
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' LIMIT 1
22318
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22319
+  (0.1ms) SAVEPOINT active_record_1
22320
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'y8ryzxidxoC6TZfUbCsr' AND "arcadex_tokens"."id" != 1) LIMIT 1
22321
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22323
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username32@launchu.com' LIMIT 1
22324
+  (0.1ms) SAVEPOINT active_record_1
22325
+ SQL (0.2ms) DELETE FROM "arcadex_tokens" WHERE "arcadex_tokens"."id" = ? [["id", 1]]
22326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22327
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 1.1ms)
22328
+  (0.1ms) SELECT COUNT(*) FROM "people_users"
22329
+  (0.1ms) SELECT COUNT(*) FROM "arcadex_tokens"
22330
+  (0.2ms) rollback transaction
22331
+  (0.1ms) begin transaction
22332
+  (0.1ms) SAVEPOINT active_record_1
22333
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username33') LIMIT 1
22334
+ People::V1::User Exists (0.2ms) 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
+ SQL (1.0ms) 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", "username33@launchu.com"], ["password_digest", "$2a$04$z26WR6MtwlKQXJUJDa0t3u6oLrysEeiwE6QYa8cOvWtPnETSAy.Oi"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username33"]]
22337
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' LIMIT 1
22338
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' LIMIT 1
22339
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22341
+ Arcadex::Token Load (0.1ms) 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
+ Arcadex::Token Load (1.7ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' LIMIT 1
22346
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22347
+  (0.1ms) SAVEPOINT active_record_1
22348
+ Arcadex::Token Exists (0.3ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'J8zdxeDjLbBrs5hvJCeJ' AND "arcadex_tokens"."id" != 1) LIMIT 1
22349
+ SQL (0.3ms) 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]]
22350
+  (0.3ms) RELEASE SAVEPOINT active_record_1
22351
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username33@launchu.com' LIMIT 1
22352
+ People::V1::User Load (0.1ms) 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
+  (0.3ms) rollback transaction
22355
+  (0.1ms) begin transaction
22356
+  (0.1ms) SAVEPOINT active_record_1
22357
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username34') LIMIT 1
22358
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username34@LaunchU.com') LIMIT 1
22359
+ Binary data inserted for `string` type on column `password_digest`
22360
+ SQL (1.0ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' LIMIT 1
22362
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' LIMIT 1
22363
+ SQL (0.6ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22365
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' LIMIT 1
22370
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22371
+  (0.1ms) SAVEPOINT active_record_1
22372
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'DGC964EDwydEPuSbmT9z' AND "arcadex_tokens"."id" != 1) LIMIT 1
22373
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22375
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username34@launchu.com' LIMIT 1
22376
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = 1 LIMIT 1
22377
+ Completed 401 Unauthorized in 8ms (Views: 0.2ms | ActiveRecord: 1.0ms)
22378
+  (0.3ms) rollback transaction
22379
+  (0.1ms) begin transaction
22380
+  (0.1ms) SAVEPOINT active_record_1
22381
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username35') LIMIT 1
22382
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.1ms) 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", "username35@launchu.com"], ["password_digest", "$2a$04$Wx2V1fGKHCWs5ER1H65jIOy1hJhrvdoiihm/JJ7HnGZAp6nprEJwG"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username35"]]
22385
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' LIMIT 1
22386
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' LIMIT 1
22387
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22389
+ Arcadex::Token Load (0.1ms) 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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' LIMIT 1
22393
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22394
+  (0.1ms) SAVEPOINT active_record_1
22395
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'Sq1wgbjgqvowzRpTJCCE' AND "arcadex_tokens"."id" != 1) LIMIT 1
22396
+ SQL (0.2ms) 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]]
22397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22398
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username35@launchu.com' LIMIT 1
22399
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.8ms)
22400
+  (0.2ms) rollback transaction
22401
+  (0.1ms) begin transaction
22402
+  (0.1ms) SAVEPOINT active_record_1
22403
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username36') LIMIT 1
22404
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.0ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'R5MiWe7__CzdJijzHxMG' LIMIT 1
22408
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'R5MiWe7__CzdJijzHxMG' LIMIT 1
22409
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22411
+ Arcadex::Token Load (0.1ms) 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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'R5MiWe7__CzdJijzHxMGnot_valid' LIMIT 1
22415
+ Filter chain halted as :authenticate_user rendered or redirected
22416
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
22417
+  (0.3ms) rollback transaction
22418
+  (0.1ms) begin transaction
22419
+  (0.1ms) SAVEPOINT active_record_1
22420
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username37') LIMIT 1
22421
+ People::V1::User Exists (0.1ms) 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
+ SQL (1.0ms) 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", "username37@launchu.com"], ["password_digest", "$2a$04$7vGvvDMWcJpmrWh464tu0eXXRApvTUaQNAGzuEVAVTr4WPGUBIREO"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username37"]]
22424
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fz5XhR9_A1xz1b_VKv2i' LIMIT 1
22425
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Fz5XhR9_A1xz1b_VKv2i' LIMIT 1
22426
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22428
+ Arcadex::Token Load (0.1ms) 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
+  (0.2ms) rollback transaction
22434
+  (0.1ms) begin transaction
22435
+  (0.1ms) SAVEPOINT active_record_1
22436
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username38') LIMIT 1
22437
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."email") = LOWER('username38@LaunchU.com') LIMIT 1
22438
+ Binary data inserted for `string` type on column `password_digest`
22439
+ SQL (1.0ms) 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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' LIMIT 1
22441
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' LIMIT 1
22442
+ SQL (0.4ms) INSERT INTO "arcadex_tokens" ("auth_token", "created_at", "imageable_id", "imageable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22444
+ Arcadex::Token Load (0.1ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."imageable_id" = ? AND "arcadex_tokens"."imageable_type" = ? [["imageable_id", 1], ["imageable_type", "People::V1::User"]]
22445
+  (0.1ms) SAVEPOINT active_record_1
22446
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username39') LIMIT 1
22447
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.4ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'sc4yUq84fvkYY2SsEHGm' LIMIT 1
22451
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'sc4yUq84fvkYY2SsEHGm' LIMIT 1
22452
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22454
+  (0.1ms) SAVEPOINT active_record_1
22455
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username40') LIMIT 1
22456
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'NU3BVXDB2yQFxNFQKu2q' LIMIT 1
22460
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'NU3BVXDB2yQFxNFQKu2q' LIMIT 1
22461
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22463
+  (0.1ms) SAVEPOINT active_record_1
22464
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username41') LIMIT 1
22465
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'furu9zTUksAaVkxYqb_x' LIMIT 1
22469
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'furu9zTUksAaVkxYqb_x' LIMIT 1
22470
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22472
+  (0.1ms) SAVEPOINT active_record_1
22473
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username42') LIMIT 1
22474
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "username42@launchu.com"], ["password_digest", "$2a$04$Suq4VmwL0y96UOVk1OHcpeBsOxYs877h.pRf6ELYUunqS9FrCWTZa"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username42"]]
22477
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'LGiXhb2YjJ8YakzvbaHv' LIMIT 1
22478
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'LGiXhb2YjJ8YakzvbaHv' LIMIT 1
22479
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22481
+  (0.1ms) SAVEPOINT active_record_1
22482
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username43') LIMIT 1
22483
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'f-6wDypB9zTsw3dzg4P7' LIMIT 1
22487
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'f-6wDypB9zTsw3dzg4P7' LIMIT 1
22488
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22490
+  (0.1ms) SAVEPOINT active_record_1
22491
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username44') LIMIT 1
22492
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.4ms) 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", "username44@launchu.com"], ["password_digest", "$2a$04$sbuzzk8qS5dQOK4IzMxJjOcw/2MEOA4q3iS0HYULbrIxWZv0Dvkhy"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username44"]]
22495
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ctv5VWaNvWyrjXGV1yeB' LIMIT 1
22496
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'Ctv5VWaNvWyrjXGV1yeB' LIMIT 1
22497
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22499
+  (0.1ms) SAVEPOINT active_record_1
22500
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username45') LIMIT 1
22501
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '7zxut_9m-tjUUWyqM1gp' LIMIT 1
22505
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = '7zxut_9m-tjUUWyqM1gp' LIMIT 1
22506
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22508
+  (0.1ms) SAVEPOINT active_record_1
22509
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username46') LIMIT 1
22510
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "username46@launchu.com"], ["password_digest", "$2a$04$3Df1c1tzbELtE2RR1rEiqeL0h3Fuq1s7jr1./YorFIGt4hxz5t0tW"], ["updated_at", Fri, 24 Oct 2014 14:40:51 UTC +00:00], ["username", "username46"]]
22513
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ET1kyfszyyiEHJ7yeDWu' LIMIT 1
22514
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'ET1kyfszyyiEHJ7yeDWu' LIMIT 1
22515
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22517
+  (0.1ms) SAVEPOINT active_record_1
22518
+ People::V1::User Exists (0.1ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username47') LIMIT 1
22519
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'u8JASRdeYaATrtW6AEKj' LIMIT 1
22523
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'u8JASRdeYaATrtW6AEKj' LIMIT 1
22524
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22526
+  (0.1ms) SAVEPOINT active_record_1
22527
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username48') LIMIT 1
22528
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.3ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'syDiBnE9595viyycQSAx' LIMIT 1
22532
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'syDiBnE9595viyycQSAx' LIMIT 1
22533
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' LIMIT 1
22538
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22539
+  (0.1ms) SAVEPOINT active_record_1
22540
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'fAmjtWDgFDP-1Jm1xyb7' AND "arcadex_tokens"."id" != 1) LIMIT 1
22541
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22543
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username38@launchu.com' LIMIT 1
22544
+ People::V1::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
22545
+ Completed 200 OK in 9ms (Views: 3.6ms | ActiveRecord: 0.9ms)
22546
+  (0.1ms) SELECT COUNT(*) FROM "people_users"
22547
+  (0.1ms) SELECT COUNT(*) FROM "arcadex_tokens"
22548
+  (0.3ms) rollback transaction
22549
+  (0.1ms) begin transaction
22550
+  (0.1ms) SAVEPOINT active_record_1
22551
+ People::V1::User Exists (0.2ms) SELECT 1 AS one FROM "people_users" WHERE LOWER("people_users"."username") = LOWER('username49') LIMIT 1
22552
+ People::V1::User Exists (0.1ms) 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
+ SQL (0.9ms) 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", "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
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' LIMIT 1
22556
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' LIMIT 1
22557
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22559
+ Arcadex::Token Load (0.1ms) 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
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' LIMIT 1
22564
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."id" = ? LIMIT 1 [["id", 1]]
22565
+  (0.1ms) SAVEPOINT active_record_1
22566
+ Arcadex::Token Exists (0.1ms) SELECT 1 AS one FROM "arcadex_tokens" WHERE ("arcadex_tokens"."auth_token" = 'xw52xYqxKQTWspQZMFev' AND "arcadex_tokens"."id" != 1) LIMIT 1
22567
+ SQL (0.2ms) 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]]
22568
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22569
+ People::V1::User Load (0.1ms) SELECT "people_users".* FROM "people_users" WHERE "people_users"."email" = 'username49@launchu.com' LIMIT 1
22570
+ People::V1::User Load (0.1ms) 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
+  (0.2ms) rollback transaction
22574
+  (0.1ms) begin transaction
22575
+  (0.1ms) rollback transaction
22576
+  (0.0ms) begin transaction
22577
+  (0.1ms) rollback transaction
22578
+  (0.0ms) begin transaction
22579
+  (0.0ms) rollback transaction
22580
+  (0.0ms) begin transaction
22581
+  (0.1ms) rollback transaction
22582
+  (0.1ms) begin transaction
22583
+  (0.1ms) rollback transaction
22584
+  (0.1ms) begin transaction
22585
+  (0.1ms) rollback transaction
22586
+  (0.1ms) begin transaction
22587
+  (0.1ms) rollback transaction
22588
+  (0.0ms) begin transaction
22589
+  (0.1ms) rollback transaction
22590
+  (0.0ms) begin transaction
22591
+  (0.1ms) rollback transaction
22592
+  (0.0ms) begin transaction
22593
+  (0.0ms) rollback transaction
22594
+  (0.0ms) begin transaction
22595
+  (0.0ms) rollback transaction
22596
+  (0.0ms) begin transaction
22597
+  (0.0ms) rollback transaction
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.2.3
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: 2014-10-24 00:00:00.000000000 Z
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.4.1
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