openstax_api 3.1.1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2170e57ee5be268c96704233362710bc225456ca
4
- data.tar.gz: fccb6d3e5eac7ba92f0c7f6729a91225de42e1c7
3
+ metadata.gz: 14f9dbb44e4d349e640489246beffd88c6e4dd94
4
+ data.tar.gz: d3fa1af6900b346b41fb2e836f769a336cbfa6d0
5
5
  SHA512:
6
- metadata.gz: cfa57db8ad22a5a1b36bb60ce208e5123792f4061e9d643d8a22cc7dbd829d0eae7b23df28cb448f45ed7093151d6af605200e939594852f7c6b6ce2250c8856
7
- data.tar.gz: d45fd7edaccc0673392c0503786512bbdad5a1a792f6750e1d69c76e8d8aac3177651fdc75fce8e860c2db410e32338a58fa3b0e81088f8ee1dcf811a87d6879
6
+ metadata.gz: 4335ffcb2189022b1c7bfe75b58e794a002984c490023970c9d3e664b8d0097e21a0f6072ce4f9678ca131eb6dbb77d2b3f80dc12a376a760fd7e6c27eedb8a3
7
+ data.tar.gz: 88985fd1c2f4856d357af0bf73c43e16f7d1aaf90db4de9692421976a1f06b493b8d711a9460a863d09e6c0ee6b2f01db6397e4477b0228d8dd584676ad6f2e4
@@ -73,17 +73,24 @@ module OpenStax
73
73
  next
74
74
  when :type
75
75
  next if attr_info[:type].nil?
76
- value = value.to_s.downcase
77
76
  when :enum
78
77
  attr_info.delete(:type)
79
78
  end
80
79
 
80
+ # Handle Procs and Uber::Callables
81
+ case value
82
+ when Proc
83
+ value = representer.instance_exec &value
84
+ when Uber::Callable
85
+ value = value.call(representer)
86
+ end
87
+
81
88
  # Store the schema_info k-v pair in attr_info
82
89
  attr_info[key] = value
83
90
  end
84
91
 
85
92
  # Overwrite type for collections
86
- attr_info[:type] = 'array' if attr[:collection] &&
93
+ attr_info[:type] = 'array' if attr[:collection]
87
94
 
88
95
  # Handle nested representers
89
96
  if attr[:extend]
@@ -1,5 +1,5 @@
1
1
  module OpenStax
2
2
  module Api
3
- VERSION = "3.1.1"
3
+ VERSION = "3.1.2"
4
4
  end
5
5
  end
Binary file
@@ -24388,3 +24388,474 @@ SQLite3::ConstraintException: NOT NULL constraint failed: dummy_users.username:
24388
24388
   (0.0ms) commit transaction
24389
24389
   (0.1ms) SELECT COUNT(*) FROM "users"
24390
24390
  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 19980
24391
+  (0.9ms) CREATE TABLE "oauth_access_grants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer NOT NULL, "application_id" integer NOT NULL, "token" varchar(255) NOT NULL, "expires_in" integer NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime NOT NULL, "revoked_at" datetime, "scopes" varchar(255)) 
24392
+  (0.1ms) select sqlite_version(*)
24393
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_grants_on_token" ON "oauth_access_grants" ("token")
24394
+  (0.8ms) CREATE TABLE "oauth_access_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_owner_id" integer, "application_id" integer, "token" varchar(255) NOT NULL, "refresh_token" varchar(255), "expires_in" integer, "revoked_at" datetime, "created_at" datetime NOT NULL, "scopes" varchar(255))
24395
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_refresh_token" ON "oauth_access_tokens" ("refresh_token")
24396
+  (0.1ms) SELECT sql
24397
+ FROM sqlite_master
24398
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24399
+ UNION ALL
24400
+ SELECT sql
24401
+ FROM sqlite_temp_master
24402
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24403
+
24404
+  (0.9ms) CREATE INDEX "index_oauth_access_tokens_on_resource_owner_id" ON "oauth_access_tokens" ("resource_owner_id")
24405
+  (0.1ms) SELECT sql
24406
+ FROM sqlite_master
24407
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
24408
+ UNION ALL
24409
+ SELECT sql
24410
+ FROM sqlite_temp_master
24411
+ WHERE name='index_oauth_access_tokens_on_resource_owner_id' AND type='index'
24412
+
24413
+  (0.1ms)  SELECT sql
24414
+ FROM sqlite_master
24415
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24416
+ UNION ALL
24417
+ SELECT sql
24418
+ FROM sqlite_temp_master
24419
+ WHERE name='index_oauth_access_tokens_on_refresh_token' AND type='index'
24420
+ 
24421
+  (0.8ms) CREATE UNIQUE INDEX "index_oauth_access_tokens_on_token" ON "oauth_access_tokens" ("token")
24422
+  (0.8ms) CREATE TABLE "oauth_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "uid" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "redirect_uri" text NOT NULL, "created_at" datetime, "updated_at" datetime) 
24423
+  (0.7ms) CREATE UNIQUE INDEX "index_oauth_applications_on_uid" ON "oauth_applications" ("uid")
24424
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "password_hash" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
24425
+  (0.7ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
24426
+  (0.1ms)  SELECT sql
24427
+ FROM sqlite_master
24428
+ WHERE name='index_users_on_email' AND type='index'
24429
+ UNION ALL
24430
+ SELECT sql
24431
+ FROM sqlite_temp_master
24432
+ WHERE name='index_users_on_email' AND type='index'
24433
+ 
24434
+  (0.7ms) CREATE INDEX "index_users_on_name" ON "users" ("name")
24435
+  (0.1ms)  SELECT sql
24436
+ FROM sqlite_master
24437
+ WHERE name='index_users_on_name' AND type='index'
24438
+ UNION ALL
24439
+ SELECT sql
24440
+ FROM sqlite_temp_master
24441
+ WHERE name='index_users_on_name' AND type='index'
24442
+ 
24443
+  (0.1ms) SELECT sql
24444
+ FROM sqlite_master
24445
+ WHERE name='index_users_on_email' AND type='index'
24446
+ UNION ALL
24447
+ SELECT sql
24448
+ FROM sqlite_temp_master
24449
+ WHERE name='index_users_on_email' AND type='index'
24450
+
24451
+  (0.7ms) CREATE INDEX "index_users_on_username" ON "users" ("username")
24452
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24453
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24454
+  (0.1ms) SELECT version FROM "schema_migrations"
24455
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
24456
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
24457
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24458
+  (0.1ms) begin transaction
24459
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.278315"], ["email", "geovany_paucek@kuhlman.org"], ["name", "Neil O'Conner"], ["password_hash", "b8fbdafaaa15a78cef60415f06766269"], ["updated_at", "2014-10-15 18:39:07.278315"], ["username", "4bcb547cc46d89c366679d3a73e658bb"]]
24460
+  (0.6ms) commit transaction
24461
+  (0.0ms) begin transaction
24462
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.283048"], ["email", "stephanie.mosciski@borer.org"], ["name", "Stephanie Crooks"], ["password_hash", "5cc5f45328d8cf8c1a6c931c3bc2a631"], ["updated_at", "2014-10-15 18:39:07.283048"], ["username", "d813ac3182fa7745f084c9d302c23145"]]
24463
+  (0.7ms) commit transaction
24464
+  (0.1ms) begin transaction
24465
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.287473"], ["email", "steve@mayert.name"], ["name", "Dr. Micheal Grant"], ["password_hash", "05ddacc7ead7f6e4657afed9473451eb"], ["updated_at", "2014-10-15 18:39:07.287473"], ["username", "cc46669f94e4c218bfe98e23b890b074"]]
24466
+  (0.6ms) commit transaction
24467
+  (0.0ms) begin transaction
24468
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.289630"], ["email", "mariana.ernser@kuphalsmith.net"], ["name", "Jaunita Keebler"], ["password_hash", "b3b184d7727a05181f12ab0473bc689e"], ["updated_at", "2014-10-15 18:39:07.289630"], ["username", "8205dadece7d4e926716817a043b01b9"]]
24469
+  (0.6ms) commit transaction
24470
+  (0.0ms) begin transaction
24471
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.292311"], ["email", "daron@gibson.org"], ["name", "Vivianne Wiza MD"], ["password_hash", "e2567e4cb9ebc3bfa40e80f7335d7d9e"], ["updated_at", "2014-10-15 18:39:07.292311"], ["username", "5abd0632609ecc2192f71393431d21ea"]]
24472
+  (0.7ms) commit transaction
24473
+  (0.0ms) begin transaction
24474
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.294125"], ["email", "elya.jacobson@daniel.com"], ["name", "Darrell Paucek"], ["password_hash", "ce14eabcc80af041d32640e192c255d7"], ["updated_at", "2014-10-15 18:39:07.294125"], ["username", "55547da45cf135430aa6b703deb056f3"]]
24475
+  (0.6ms) commit transaction
24476
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
24477
+  (0.0ms) begin transaction
24478
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.313579"], ["email", "patience@murrayhayes.org"], ["name", "Katelynn Bednar Jr."], ["password_hash", "2f4e8d25e3e1e3b2df19701f59ec9ead"], ["updated_at", "2014-10-15 18:39:07.313579"], ["username", "d484b1f9ec7aef17f01f4312d5235f8e"]]
24479
+  (1.1ms) commit transaction
24480
+  (0.1ms) begin transaction
24481
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.316251"], ["email", "antonia@hagenes.net"], ["name", "Brooke Kassulke"], ["password_hash", "a3addd724d6e61b1359f5871ebbc7be1"], ["updated_at", "2014-10-15 18:39:07.316251"], ["username", "ac5105558b5138c5d730105b64143e36"]]
24482
+  (0.7ms) commit transaction
24483
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
24484
+  (0.0ms) begin transaction
24485
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.320218"], ["email", "jaden@larkin.info"], ["name", "Dr. Mathew Thiel"], ["password_hash", "54f5a199fba30aa03bb021d5a21dc191"], ["updated_at", "2014-10-15 18:39:07.320218"], ["username", "5bc12597c83dac47f9a79390693f0609"]]
24486
+  (0.6ms) commit transaction
24487
+  (0.0ms) begin transaction
24488
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.322156"], ["email", "lonny_mann@williamsonupton.com"], ["name", "Ashley Tillman"], ["password_hash", "6fb3337ee513a0bc5f64c4708956422f"], ["updated_at", "2014-10-15 18:39:07.322156"], ["username", "06d38545ae8edbd8092e4ec1286d6144"]]
24489
+  (0.6ms) commit transaction
24490
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 9 ORDER BY "users"."id" ASC LIMIT 1
24491
+  (0.1ms) begin transaction
24492
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.341214"], ["email", "pierce_satterfield@koepp.net"], ["name", "Ben Barton"], ["password_hash", "f689248aec50a3a12b8983c0b91c2787"], ["updated_at", "2014-10-15 18:39:07.341214"], ["username", "8074199dddb6cc6f938719909b60626a"]]
24493
+  (0.6ms) commit transaction
24494
+  (0.0ms) begin transaction
24495
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.343769"], ["email", "sylvester_nitzsche@carroll.com"], ["name", "Josiane Gusikowski"], ["password_hash", "c5cddb2e8efae9c8c9682565fc2eb5ed"], ["updated_at", "2014-10-15 18:39:07.343769"], ["username", "4c54159bc35e3915c130fafb6bfeda2d"]]
24496
+  (0.6ms) commit transaction
24497
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 12 ORDER BY "users"."id" ASC LIMIT 1
24498
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL ORDER BY "users"."id" ASC LIMIT 1
24499
+  (0.0ms) begin transaction
24500
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.347284"], ["email", "yadira@bogan.org"], ["name", "Gwen Fahey"], ["password_hash", "4ca86f7e1426f69ee790fa46a9477e70"], ["updated_at", "2014-10-15 18:39:07.347284"], ["username", "9b82aca85ce66af6bf18b28103cada50"]]
24501
+  (0.6ms) commit transaction
24502
+  (0.0ms) begin transaction
24503
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.349005"], ["email", "eli.hoppe@nicolasframi.com"], ["name", "Lula Fisher"], ["password_hash", "c46a98dd94dc4cdeba557ac61c149315"], ["updated_at", "2014-10-15 18:39:07.349005"], ["username", "af9cb213a1fd209f49ec29c8766f323b"]]
24504
+  (0.6ms) commit transaction
24505
+  (0.0ms) begin transaction
24506
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.350671"], ["email", "ferne@zboncak.com"], ["name", "Dr. Lazaro Crooks"], ["password_hash", "9a8139c0b62f209fac4f77e5c4efdd00"], ["updated_at", "2014-10-15 18:39:07.350671"], ["username", "40dd31af9e0f787f7acfb9a43bb7eef7"]]
24507
+  (0.6ms) commit transaction
24508
+  (0.0ms) begin transaction
24509
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.352415"], ["email", "dewitt@zieme.com"], ["name", "Katarina Anderson"], ["password_hash", "0b58a5927dd4dc5e876d5ea5c0855a9e"], ["updated_at", "2014-10-15 18:39:07.352415"], ["username", "daeda95c359a01bc144b4364de77dc88"]]
24510
+  (0.6ms) commit transaction
24511
+  (0.0ms) begin transaction
24512
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.354119"], ["email", "dolly@miller.com"], ["name", "Jerrod Cremin"], ["password_hash", "ad4e61dc956fab7a272505d54fdac901"], ["updated_at", "2014-10-15 18:39:07.354119"], ["username", "3d413f4c73747ec9630d53424433927a"]]
24513
+  (0.6ms) commit transaction
24514
+  (0.0ms) begin transaction
24515
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.355806"], ["email", "jonathan@glover.com"], ["name", "Aurelio Cartwright"], ["password_hash", "68daf5f181d3cc3f7a4b4513d5f3662b"], ["updated_at", "2014-10-15 18:39:07.355806"], ["username", "816c93f94eb67bef2509c303414f1f02"]]
24516
+  (0.6ms) commit transaction
24517
+  (0.0ms) begin transaction
24518
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.357500"], ["email", "lisa_barrows@upton.name"], ["name", "Taurean Littel"], ["password_hash", "1affc73d62b20664b0b29c35a74875c4"], ["updated_at", "2014-10-15 18:39:07.357500"], ["username", "ac7453df52ace02691c64f10b6952f5e"]]
24519
+  (0.6ms) commit transaction
24520
+  (0.0ms) begin transaction
24521
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.359320"], ["email", "roel@walshhodkiewicz.org"], ["name", "Torrance Swift"], ["password_hash", "0c24ff431e041569f5466b2d19573361"], ["updated_at", "2014-10-15 18:39:07.359320"], ["username", "0e331e2b307fab0d74742977f7c3a84a"]]
24522
+  (0.6ms) commit transaction
24523
+  (0.0ms) begin transaction
24524
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.361068"], ["email", "stephany@mertzthiel.name"], ["name", "Vita Spencer MD"], ["password_hash", "eeec79234e3417637430ee02837a5789"], ["updated_at", "2014-10-15 18:39:07.361068"], ["username", "6e9276d65084e5d908c017420c484715"]]
24525
+  (0.7ms) commit transaction
24526
+  (0.1ms) begin transaction
24527
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.363090"], ["email", "gerson.daugherty@swaniawski.org"], ["name", "Dr. Corrine Rohan"], ["password_hash", "84082b99b4279c93d89c19839662a3e1"], ["updated_at", "2014-10-15 18:39:07.363090"], ["username", "8453ec9e4ee67d7a386f0c89555b7afc"]]
24528
+  (0.6ms) commit transaction
24529
+  (0.0ms) begin transaction
24530
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.365695"], ["email", "enid@harrisgleichner.biz"], ["name", "Moriah Hartmann"], ["password_hash", "56b66decc2f1eb707ec124b7081fd124"], ["updated_at", "2014-10-15 18:39:07.365695"], ["username", "4f1d9041aad84cc9d3c2baadd34f1038"]]
24531
+  (0.7ms) commit transaction
24532
+  (0.0ms) begin transaction
24533
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.367511"], ["email", "taryn.grant@von.net"], ["name", "Charles Mertz"], ["password_hash", "c47d127571db0d4d7e9bbf0385b6efbb"], ["updated_at", "2014-10-15 18:39:07.367511"], ["username", "e0f7a33fbf137d2c04f8cf87b679ac18"]]
24534
+  (0.6ms) commit transaction
24535
+  (0.0ms) begin transaction
24536
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.369219"], ["email", "hosea@cormier.net"], ["name", "Nedra Ziemann"], ["password_hash", "f8ae089dc09e92548a6e198b6a1f4453"], ["updated_at", "2014-10-15 18:39:07.369219"], ["username", "688b0efa2721b38c7870cb266df9eaf3"]]
24537
+  (0.6ms) commit transaction
24538
+  (0.0ms) begin transaction
24539
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.370899"], ["email", "haie@buckridgebeahan.net"], ["name", "Angelina Cormier"], ["password_hash", "b92f87b5fe1b86e1e2112fad17b6999b"], ["updated_at", "2014-10-15 18:39:07.370899"], ["username", "fde4139f2dc2e0b6f65d9b7fa067b3ec"]]
24540
+  (0.6ms) commit transaction
24541
+  (0.0ms) begin transaction
24542
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.372600"], ["email", "melody_langosh@botsford.biz"], ["name", "Chester Schumm"], ["password_hash", "7465d8c0a46da8a6d7566c9ec7387c12"], ["updated_at", "2014-10-15 18:39:07.372600"], ["username", "7d2ed70e352d22f28a5035ec5bbd5564"]]
24543
+  (0.7ms) commit transaction
24544
+  (0.0ms) begin transaction
24545
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.374445"], ["email", "eden@deckow.com"], ["name", "Helene Lebsack"], ["password_hash", "4be3afdb4c66fbc7a558077b472566c1"], ["updated_at", "2014-10-15 18:39:07.374445"], ["username", "a1206077f8cb831e630d0717a726dba5"]]
24546
+  (0.7ms) commit transaction
24547
+  (0.1ms) begin transaction
24548
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.376251"], ["email", "chasity@krajcik.net"], ["name", "Hadley Johns"], ["password_hash", "5f1409cd4ae2e7391f245d53c820c034"], ["updated_at", "2014-10-15 18:39:07.376251"], ["username", "14fb3af28497781ff0a3ef09feb6a4e3"]]
24549
+  (0.6ms) commit transaction
24550
+  (0.0ms) begin transaction
24551
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.377942"], ["email", "trever@feeney.net"], ["name", "Dr. Ben Harber"], ["password_hash", "acfa6e781524713ebf32a5aa4b47c3b8"], ["updated_at", "2014-10-15 18:39:07.377942"], ["username", "d15d371634879c10ad39fe58934a1e31"]]
24552
+  (0.6ms) commit transaction
24553
+  (0.0ms) begin transaction
24554
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.379656"], ["email", "winona_heel@volkmandurgan.com"], ["name", "Arden Powlowski IV"], ["password_hash", "765a473f46f223eb56d70a4e9e183aec"], ["updated_at", "2014-10-15 18:39:07.379656"], ["username", "7b17c7f44d72d59cc5907ea946ce2b41"]]
24555
+  (0.7ms) commit transaction
24556
+  (0.0ms) begin transaction
24557
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.381411"], ["email", "alisa@adams.org"], ["name", "Fae Zieme"], ["password_hash", "5fab237d0080213fa3881869795c7234"], ["updated_at", "2014-10-15 18:39:07.381411"], ["username", "eda2c9f4515cd35c3e2d999a42ac1bf0"]]
24558
+  (0.6ms) commit transaction
24559
+  (0.0ms) begin transaction
24560
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.383055"], ["email", "dena@metz.org"], ["name", "Nelda Gleason"], ["password_hash", "f8e6ed11f091becaf31319c7532744f3"], ["updated_at", "2014-10-15 18:39:07.383055"], ["username", "35d4a8bbe090ea52988c5b670ee9ff47"]]
24561
+  (0.6ms) commit transaction
24562
+  (0.0ms) begin transaction
24563
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.384768"], ["email", "albin@hane.net"], ["name", "Rubye Marquardt"], ["password_hash", "b7d77c38484906aaae3da38b1774280e"], ["updated_at", "2014-10-15 18:39:07.384768"], ["username", "69e572463a84137e0027f1737912ab11"]]
24564
+  (0.6ms) commit transaction
24565
+  (0.0ms) begin transaction
24566
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.386541"], ["email", "marlon@kundepfeffer.info"], ["name", "Emmitt Jaskolski PhD"], ["password_hash", "08f701bbf6c9483b455f11d1f2775e2d"], ["updated_at", "2014-10-15 18:39:07.386541"], ["username", "adf3833387778349e8e081fb2d7547f9"]]
24567
+  (0.6ms) commit transaction
24568
+  (0.0ms) begin transaction
24569
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.388201"], ["email", "victoria_franecki@crooks.name"], ["name", "Mya Goyette III"], ["password_hash", "36f95910dabe5fb4ce430c4d35a43183"], ["updated_at", "2014-10-15 18:39:07.388201"], ["username", "cf48aa018273ef992aace5cae02a4146"]]
24570
+  (0.8ms) commit transaction
24571
+  (0.0ms) begin transaction
24572
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.390092"], ["email", "rylee@block.net"], ["name", "Mr. Forest Jones"], ["password_hash", "0c1fe59482c14d359c4b300c0526f323"], ["updated_at", "2014-10-15 18:39:07.390092"], ["username", "fd19857fa3f8f3e1315e17abbbeeeeb7"]]
24573
+  (0.6ms) commit transaction
24574
+  (0.0ms) begin transaction
24575
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.391801"], ["email", "carey@luettgen.biz"], ["name", "Dr. Rae Ferry"], ["password_hash", "47571e4a3292869c0bac0ffdddb465b0"], ["updated_at", "2014-10-15 18:39:07.391801"], ["username", "513c9dc622f129411bb98f138aa0ebfe"]]
24576
+  (0.6ms) commit transaction
24577
+  (0.0ms) begin transaction
24578
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.393491"], ["email", "adella@nitzsche.name"], ["name", "Jaron Johnson"], ["password_hash", "c65c08f83b86a36713d6a5a5cf811eff"], ["updated_at", "2014-10-15 18:39:07.393491"], ["username", "41a14ddf47136b8e05ff2e11499fb501"]]
24579
+  (0.7ms) commit transaction
24580
+  (0.0ms) begin transaction
24581
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.395319"], ["email", "merritt@ledner.org"], ["name", "Miss Kenyatta Keebler"], ["password_hash", "41be982ba0be3511170c469d53252b48"], ["updated_at", "2014-10-15 18:39:07.395319"], ["username", "103df99e4f1b94e98d06949ef073e4df"]]
24582
+  (0.6ms) commit transaction
24583
+  (0.0ms) begin transaction
24584
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.397033"], ["email", "mozell_keler@aufderhar.org"], ["name", "Brad Stokes"], ["password_hash", "a4b9165fb431fd1d5fd472fd889ebac9"], ["updated_at", "2014-10-15 18:39:07.397033"], ["username", "261f82f6f8e75f7c3e6fd0ee76d86dac"]]
24585
+  (0.6ms) commit transaction
24586
+  (0.0ms) begin transaction
24587
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.398709"], ["email", "emery_bailey@johnston.org"], ["name", "Cassandra Mertz"], ["password_hash", "05c59cda4f54ab74c64c914a79affd4e"], ["updated_at", "2014-10-15 18:39:07.398709"], ["username", "f630a7aceed3e5de201a3e84cc9376b6"]]
24588
+  (0.6ms) commit transaction
24589
+  (0.0ms) begin transaction
24590
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.400454"], ["email", "ashton@wehner.biz"], ["name", "Gussie Tremblay"], ["password_hash", "58c8b5c30f0e68047730ba5c649f890f"], ["updated_at", "2014-10-15 18:39:07.400454"], ["username", "74d6582d4b5d935f633d53ebfaf5eaab"]]
24591
+  (0.6ms) commit transaction
24592
+  (0.0ms) begin transaction
24593
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.402143"], ["email", "julius@hane.org"], ["name", "Burdette Willms"], ["password_hash", "3ec7951cff09f920580e2b4c78af060c"], ["updated_at", "2014-10-15 18:39:07.402143"], ["username", "b02f2e8a64dc25ea34c25916a12272dc"]]
24594
+  (0.6ms) commit transaction
24595
+  (0.0ms) begin transaction
24596
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.403828"], ["email", "courtney.mosciski@murphy.net"], ["name", "Schuyler Friesen"], ["password_hash", "207b6be2f5a4f258216ca9177595ab6f"], ["updated_at", "2014-10-15 18:39:07.403828"], ["username", "c7e2d5249d8232d9dd0c4183e794cf57"]]
24597
+  (0.6ms) commit transaction
24598
+  (0.0ms) begin transaction
24599
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.405538"], ["email", "eddie.pfannerstill@wunsch.biz"], ["name", "Miss Clifton Crooks"], ["password_hash", "ffe06a718cdf8ddc63108b943c67f568"], ["updated_at", "2014-10-15 18:39:07.405538"], ["username", "c36f83c74a4fa6a2e65c9950425be707"]]
24600
+  (0.7ms) commit transaction
24601
+  (0.0ms) begin transaction
24602
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.407275"], ["email", "carter.terry@vonrueden.info"], ["name", "Alan Wyman"], ["password_hash", "0f5030cc4004407991aefbc7922e5b4d"], ["updated_at", "2014-10-15 18:39:07.407275"], ["username", "b78785175c5245c975ae2cc0e5b43b00"]]
24603
+  (0.6ms) commit transaction
24604
+  (0.0ms) begin transaction
24605
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.408962"], ["email", "noe_green@kertzmann.net"], ["name", "Mr. Golden White"], ["password_hash", "c0ee992af0ea3a23fc27fcd2afc45a24"], ["updated_at", "2014-10-15 18:39:07.408962"], ["username", "78c368101d607f75b981d7b602afa1b2"]]
24606
+  (0.7ms) commit transaction
24607
+  (0.0ms) begin transaction
24608
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.410728"], ["email", "darrin_johns@lynch.name"], ["name", "Cierra Hilpert"], ["password_hash", "ee97d1ee20bda3e7c92da19c79b77957"], ["updated_at", "2014-10-15 18:39:07.410728"], ["username", "c3a186d410100448d71cf21af49f406a"]]
24609
+  (0.6ms) commit transaction
24610
+  (0.0ms) begin transaction
24611
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.412402"], ["email", "korbin@kohler.biz"], ["name", "Otis Kiehn"], ["password_hash", "61c9d1e44b4bb014999c678186c4b1b2"], ["updated_at", "2014-10-15 18:39:07.412402"], ["username", "be2f5a0f41126d104d01177c49f5faeb"]]
24612
+  (0.6ms) commit transaction
24613
+  (0.0ms) begin transaction
24614
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.414068"], ["email", "taurean@feest.net"], ["name", "Weldon Rolfson"], ["password_hash", "3b2248a62972d436b28211a29bd1d660"], ["updated_at", "2014-10-15 18:39:07.414068"], ["username", "8d17abc05bb4090fdec0cbcda0636dab"]]
24615
+  (0.7ms) commit transaction
24616
+  (0.0ms) begin transaction
24617
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.415855"], ["email", "eliseo@lindgren.org"], ["name", "Casey Price Sr."], ["password_hash", "f1a7b83af7ed6d2e88a2079fa0345a28"], ["updated_at", "2014-10-15 18:39:07.415855"], ["username", "f20edd606fd32e573724f8b5a5eb4a91"]]
24618
+  (0.6ms) commit transaction
24619
+  (0.0ms) begin transaction
24620
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.417554"], ["email", "katlynn.effertz@leannonlabadie.org"], ["name", "Arnulfo Kuvalis"], ["password_hash", "db98f305453dba39c4d1464a7b009732"], ["updated_at", "2014-10-15 18:39:07.417554"], ["username", "2ce062e4c4d01b761a8b9607088c4b81"]]
24621
+  (0.6ms) commit transaction
24622
+  (0.0ms) begin transaction
24623
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.419302"], ["email", "mario_wyman@kuhn.biz"], ["name", "Mrs. Bethany Nolan"], ["password_hash", "186ac22a4126e675a3f3111cc647b0b5"], ["updated_at", "2014-10-15 18:39:07.419302"], ["username", "53d67ad36030de174ef592475049f2b5"]]
24624
+  (0.6ms) commit transaction
24625
+  (0.0ms) begin transaction
24626
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.421058"], ["email", "claude_damore@harber.biz"], ["name", "Ms. Willy Bins"], ["password_hash", "51968baed84cfa27556c40b1386bb247"], ["updated_at", "2014-10-15 18:39:07.421058"], ["username", "329ca6d29560a115306f54f9acca7cfb"]]
24627
+  (0.6ms) commit transaction
24628
+  (0.0ms) begin transaction
24629
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.422843"], ["email", "katlyn.kshlerin@gleasonreinger.biz"], ["name", "Hilbert Rempel V"], ["password_hash", "46fe8912b373e1c939dd91ad070aa00b"], ["updated_at", "2014-10-15 18:39:07.422843"], ["username", "07d96aac3c6a93268777eea59dc84c2f"]]
24630
+  (0.6ms) commit transaction
24631
+  (0.0ms) begin transaction
24632
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.424611"], ["email", "emery@okuneva.biz"], ["name", "Mr. Elaina Weber"], ["password_hash", "603afcff9ccec17c40418b1124a3fda3"], ["updated_at", "2014-10-15 18:39:07.424611"], ["username", "abcbde621f6115cdf4181f7af518512a"]]
24633
+  (0.7ms) commit transaction
24634
+  (0.0ms) begin transaction
24635
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.426363"], ["email", "skye@joneslockman.org"], ["name", "Cristal Bayer"], ["password_hash", "6980b7abe3a6b400b43bc9b40b96bcd4"], ["updated_at", "2014-10-15 18:39:07.426363"], ["username", "293a28e00702198d4f8432afbd27ba29"]]
24636
+  (0.7ms) commit transaction
24637
+  (0.0ms) begin transaction
24638
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.428079"], ["email", "jose@lowe.info"], ["name", "Isabelle Mertz"], ["password_hash", "8cc6a663e5f78bc3b04fd299dc914936"], ["updated_at", "2014-10-15 18:39:07.428079"], ["username", "1dc684ae7b4b9c912c28a8e261fe4eda"]]
24639
+  (0.6ms) commit transaction
24640
+  (0.0ms) begin transaction
24641
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.429775"], ["email", "gia@mcclure.info"], ["name", "Judge Hackett"], ["password_hash", "4610f02819a1621948d3f9bf1c00d919"], ["updated_at", "2014-10-15 18:39:07.429775"], ["username", "6ddf46e13fd39ac61c0870070c7f6349"]]
24642
+  (0.7ms) commit transaction
24643
+  (0.0ms) begin transaction
24644
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.431489"], ["email", "cornelius@hilllzieme.info"], ["name", "Isabella Heaney"], ["password_hash", "6803077cb4f3875f3fd3d72d8a427baa"], ["updated_at", "2014-10-15 18:39:07.431489"], ["username", "3cf9136030dec3e31d17e9978fe74eb1"]]
24645
+  (0.6ms) commit transaction
24646
+  (0.0ms) begin transaction
24647
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.433168"], ["email", "maiya@effertz.net"], ["name", "Shad Fritsch"], ["password_hash", "b84aa15e60c057f8a4b981b5a88198eb"], ["updated_at", "2014-10-15 18:39:07.433168"], ["username", "2eef1802778287c6d5456eb863e355d7"]]
24648
+  (0.7ms) commit transaction
24649
+  (0.0ms) begin transaction
24650
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.434937"], ["email", "alan@hermannlueilwitz.info"], ["name", "Dr. Alycia Klein"], ["password_hash", "6fd9ed4853e8c6fe017facbacef1219c"], ["updated_at", "2014-10-15 18:39:07.434937"], ["username", "9703fb1bcad8daa6268906e5a69e5ea0"]]
24651
+  (0.7ms) commit transaction
24652
+  (0.0ms) begin transaction
24653
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.436671"], ["email", "leopold@stammmaggio.org"], ["name", "Keanu Dibbert DDS"], ["password_hash", "c9e3de47eab8e6963b3e5ceb778a6152"], ["updated_at", "2014-10-15 18:39:07.436671"], ["username", "3f6594dcccd00fb418d82353a8866ae8"]]
24654
+  (0.7ms) commit transaction
24655
+  (0.0ms) begin transaction
24656
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.438398"], ["email", "raphael@lakin.net"], ["name", "Pasquale Goyette"], ["password_hash", "eb38a58365d2cce48a32d3fe7b2c0614"], ["updated_at", "2014-10-15 18:39:07.438398"], ["username", "72add721348dc9150ac150d6a32440d7"]]
24657
+  (0.6ms) commit transaction
24658
+  (0.0ms) begin transaction
24659
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.440091"], ["email", "marquis@schoen.name"], ["name", "Salvador Moore DVM"], ["password_hash", "6bd0b21be12382d47985acdb81892121"], ["updated_at", "2014-10-15 18:39:07.440091"], ["username", "4e694c43f8e8c21f4ab2d82a90e892b4"]]
24660
+  (0.6ms) commit transaction
24661
+  (0.0ms) begin transaction
24662
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.441765"], ["email", "david_friesen@goodwin.name"], ["name", "Alfredo Cummerata"], ["password_hash", "3fc15bbfe878e4acfc9d549b5341bb94"], ["updated_at", "2014-10-15 18:39:07.441765"], ["username", "9daf128e96dfe4706ddd1e41d2fa3e62"]]
24663
+  (0.6ms) commit transaction
24664
+  (0.0ms) begin transaction
24665
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.443446"], ["email", "dasia@murazikharris.org"], ["name", "Meta Hamill"], ["password_hash", "4e3454283d8b9d84816268ffcdc4b954"], ["updated_at", "2014-10-15 18:39:07.443446"], ["username", "be797aaea218ad805f461741cc5a56b9"]]
24666
+  (0.6ms) commit transaction
24667
+  (0.0ms) begin transaction
24668
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.445101"], ["email", "ariane@robertscremin.org"], ["name", "Lourdes Quitzon"], ["password_hash", "1a225409b41999dda5eb111d61158035"], ["updated_at", "2014-10-15 18:39:07.445101"], ["username", "b034a3a5e696863189740a0c0a4e9da4"]]
24669
+  (0.7ms) commit transaction
24670
+  (0.1ms) begin transaction
24671
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.446952"], ["email", "lindsey@littel.net"], ["name", "Cameron Lueilwitz"], ["password_hash", "084f6b7a2c56277f5c3fedc95285ce31"], ["updated_at", "2014-10-15 18:39:07.446952"], ["username", "f3abd486c2e2d15a1b3b4915dff3af02"]]
24672
+  (0.5ms) commit transaction
24673
+  (0.0ms) begin transaction
24674
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.448820"], ["email", "carlee_bartell@hudson.biz"], ["name", "Callie Lang"], ["password_hash", "3795887401a92051b5018323ebec971f"], ["updated_at", "2014-10-15 18:39:07.448820"], ["username", "bd0159d5c5ddf2d275857e0dc88b462b"]]
24675
+  (0.6ms) commit transaction
24676
+  (0.0ms) begin transaction
24677
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.450525"], ["email", "brook@sporer.name"], ["name", "Maudie Nicolas"], ["password_hash", "da1b127901d067999463e4f07f514650"], ["updated_at", "2014-10-15 18:39:07.450525"], ["username", "a26671aa87c6571a3583db869b251254"]]
24678
+  (0.6ms) commit transaction
24679
+  (0.0ms) begin transaction
24680
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.452248"], ["email", "quinn_ondricka@effertzblanda.biz"], ["name", "Meaghan Kilback"], ["password_hash", "146ce24e0590a22a08c7383d6e79b0d3"], ["updated_at", "2014-10-15 18:39:07.452248"], ["username", "d328adca113e9015113327320627277b"]]
24681
+  (0.7ms) commit transaction
24682
+  (0.0ms) begin transaction
24683
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.453955"], ["email", "tomas@cummerata.com"], ["name", "Eda Grant"], ["password_hash", "086a948da52a49fc896b71f59d7ed63b"], ["updated_at", "2014-10-15 18:39:07.453955"], ["username", "2f513f9a2a26ddcfc7c38deb9188ab82"]]
24684
+  (0.6ms) commit transaction
24685
+  (0.0ms) begin transaction
24686
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.455614"], ["email", "orrin@kihnstoltenberg.com"], ["name", "Aric DuBuque"], ["password_hash", "cb6ba44a2c729a8ecfcfd58287f73d9e"], ["updated_at", "2014-10-15 18:39:07.455614"], ["username", "c371268ce075e2e082a0b249aef5c073"]]
24687
+  (0.6ms) commit transaction
24688
+  (0.0ms) begin transaction
24689
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.457316"], ["email", "gina@feestosinski.org"], ["name", "Mallory Farrell"], ["password_hash", "d3845f9364c1cec03b2e25a215ee0285"], ["updated_at", "2014-10-15 18:39:07.457316"], ["username", "d2e4a57531fb8a56b31cd2ce33059a8c"]]
24690
+  (0.6ms) commit transaction
24691
+  (0.0ms) begin transaction
24692
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.458971"], ["email", "herta_okuneva@hoeger.biz"], ["name", "Margaretta Berge"], ["password_hash", "a2249f8502185197b3b357c7fa74951d"], ["updated_at", "2014-10-15 18:39:07.458971"], ["username", "475b311d7d0e23959b233d35ad045f36"]]
24693
+  (0.6ms) commit transaction
24694
+  (0.0ms) begin transaction
24695
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.460654"], ["email", "maxine_thiel@schuster.com"], ["name", "Anderson Purdy Jr."], ["password_hash", "c195205bffd2005878893f0ee1ce8642"], ["updated_at", "2014-10-15 18:39:07.460654"], ["username", "951bad07209875c25fad64c0cfd84086"]]
24696
+  (0.6ms) commit transaction
24697
+  (0.0ms) begin transaction
24698
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.462323"], ["email", "daphnee_wiegand@okon.name"], ["name", "Niko Hintz"], ["password_hash", "f190729a14fec1fa0e2ff911f201be1c"], ["updated_at", "2014-10-15 18:39:07.462323"], ["username", "a9e912d099b035b4471a40f66a2dcbd3"]]
24699
+  (0.6ms) commit transaction
24700
+  (0.0ms) begin transaction
24701
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.464042"], ["email", "chloe.dickens@labadie.info"], ["name", "Elyse Christiansen"], ["password_hash", "9b3c198c6ade242d02131206ca142651"], ["updated_at", "2014-10-15 18:39:07.464042"], ["username", "4bf5c6c27a88939c9e15fd3d914423a0"]]
24702
+  (0.8ms) commit transaction
24703
+  (0.0ms) begin transaction
24704
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.466012"], ["email", "noble_nader@bayer.net"], ["name", "Caden Oberbrunner"], ["password_hash", "7a0d5994b3038acf0405ca4d99df73cc"], ["updated_at", "2014-10-15 18:39:07.466012"], ["username", "481e718a3985f4a0c3c15c5dd44816e9"]]
24705
+  (0.7ms) commit transaction
24706
+  (0.0ms) begin transaction
24707
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.467846"], ["email", "emmalee_marvin@schowalter.name"], ["name", "Zack Bartoletti"], ["password_hash", "3737fe52dfc213275b1771ea88396c9e"], ["updated_at", "2014-10-15 18:39:07.467846"], ["username", "b06a1bfc7e78237fb0847b7c38e5d58d"]]
24708
+  (0.5ms) commit transaction
24709
+  (0.0ms) begin transaction
24710
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.469471"], ["email", "novella_bednar@hudsonbecker.org"], ["name", "Benton Strosin III"], ["password_hash", "942ee6e3713d8e47e6c829e14afaaf7c"], ["updated_at", "2014-10-15 18:39:07.469471"], ["username", "e383a828b0ad85c82ce26e0bcdf1d833"]]
24711
+  (0.6ms) commit transaction
24712
+  (0.0ms) begin transaction
24713
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.471155"], ["email", "kari@powlowski.name"], ["name", "Jamarcus Pfannerstill"], ["password_hash", "71b1af9429b3cff2a766d5ec3559860d"], ["updated_at", "2014-10-15 18:39:07.471155"], ["username", "5b15863ac1b72bba7885dfbaaaffe1b9"]]
24714
+  (0.7ms) commit transaction
24715
+  (0.0ms) begin transaction
24716
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.472897"], ["email", "johann@brakusward.org"], ["name", "Miss Kasandra Langosh"], ["password_hash", "fe1a0874c85a5332be8aa08a13974bc5"], ["updated_at", "2014-10-15 18:39:07.472897"], ["username", "d096362a3678d0424e71668ec657d09c"]]
24717
+  (0.7ms) commit transaction
24718
+  (0.0ms) begin transaction
24719
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.474659"], ["email", "justen@goldnerbernhard.org"], ["name", "Kylee Schuster"], ["password_hash", "af27f7b92e1a19c1617769242fd3c209"], ["updated_at", "2014-10-15 18:39:07.474659"], ["username", "856d9dba335a46c390c4fe8efb4059a6"]]
24720
+  (0.7ms) commit transaction
24721
+  (0.0ms) begin transaction
24722
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.476388"], ["email", "barton.jast@boganlarkin.com"], ["name", "Myriam Rippin"], ["password_hash", "9034bc23fcf387cdbb796c366eb47e6c"], ["updated_at", "2014-10-15 18:39:07.476388"], ["username", "8fade9c465a0dc871f9945ce3238b898"]]
24723
+  (0.7ms) commit transaction
24724
+  (0.0ms) begin transaction
24725
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.478188"], ["email", "christopher_doyle@considinenikolaus.info"], ["name", "Sarai Stoltenberg"], ["password_hash", "0b65a8ee74b7006f6ab7437b8744b8f2"], ["updated_at", "2014-10-15 18:39:07.478188"], ["username", "c817f11ab7c8fa8a50b369f6c3c00414"]]
24726
+  (0.7ms) commit transaction
24727
+  (0.0ms) begin transaction
24728
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.479895"], ["email", "bret.wolf@beer.info"], ["name", "Jovan Hoppe"], ["password_hash", "84c7aeece1c06083be420e77c692134f"], ["updated_at", "2014-10-15 18:39:07.479895"], ["username", "b5a25658114fb6441baf4bb6dfede7ce"]]
24729
+  (0.6ms) commit transaction
24730
+  (0.0ms) begin transaction
24731
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.481511"], ["email", "baron@turnerlittel.com"], ["name", "Ms. Donavon Weissnat"], ["password_hash", "04adbed3ca65dfb08a81a0599ceeb2d4"], ["updated_at", "2014-10-15 18:39:07.481511"], ["username", "d11caf998a3ffd061fce9180f943e32b"]]
24732
+  (0.6ms) commit transaction
24733
+  (0.0ms) begin transaction
24734
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.483181"], ["email", "malinda@mcculloughbosco.com"], ["name", "Mr. Waino Little"], ["password_hash", "2ab71d1e76d9899de60d72ce6eb0e025"], ["updated_at", "2014-10-15 18:39:07.483181"], ["username", "f68843b1223808d96dc70d034cbeb116"]]
24735
+  (0.7ms) commit transaction
24736
+  (0.0ms) begin transaction
24737
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.484935"], ["email", "crystal@bergnaummurphy.org"], ["name", "Cayla Kohler"], ["password_hash", "51b2383c1b89888c08df7e5ffc702e5e"], ["updated_at", "2014-10-15 18:39:07.484935"], ["username", "65920dc6b8f4a6c1fb3512ae76ec0d92"]]
24738
+  (0.7ms) commit transaction
24739
+  (0.0ms) begin transaction
24740
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.486661"], ["email", "kamille@wintheiserkiehn.name"], ["name", "Emiliano D'Amore"], ["password_hash", "6599d08243fb60112b5b2a46ffdd7b1e"], ["updated_at", "2014-10-15 18:39:07.486661"], ["username", "ff5f0f1006d9f5cce4e0ea0b6ca6815f"]]
24741
+  (0.7ms) commit transaction
24742
+  (0.0ms) begin transaction
24743
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.488446"], ["email", "bonnie@parker.net"], ["name", "Carol Gutkowski IV"], ["password_hash", "580fa1f0482f7b95ec84b77d6ed84623"], ["updated_at", "2014-10-15 18:39:07.488446"], ["username", "cc859bfd4efa54b0dccc579573116f93"]]
24744
+  (0.9ms) commit transaction
24745
+  (0.0ms) begin transaction
24746
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.490449"], ["email", "novella_abernathy@kutch.name"], ["name", "Adaline Halvorson"], ["password_hash", "489bcf396ba42c4f47d55c404dc18c62"], ["updated_at", "2014-10-15 18:39:07.490449"], ["username", "36b5c8975ed531fc775168ae62c03788"]]
24747
+  (0.6ms) commit transaction
24748
+  (0.0ms) begin transaction
24749
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.492115"], ["email", "demario@gusikowski.org"], ["name", "Nathen Bednar"], ["password_hash", "35fb9fedbad18905ec620b256048cd3c"], ["updated_at", "2014-10-15 18:39:07.492115"], ["username", "45d81237a08cf7f48ea75a9b0c4d35af"]]
24750
+  (0.7ms) commit transaction
24751
+  (0.0ms) begin transaction
24752
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.493855"], ["email", "camylle_ankunding@wunsch.net"], ["name", "Dr. Tierra Hilpert"], ["password_hash", "ddb68a9d77b0c4b6dd5dfda59637bd26"], ["updated_at", "2014-10-15 18:39:07.493855"], ["username", "bdba219f5a11e153794f3903eee8f56d"]]
24753
+  (0.7ms) commit transaction
24754
+  (0.0ms) begin transaction
24755
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.495609"], ["email", "dalton@hane.com"], ["name", "Miss Gavin Hansen"], ["password_hash", "42fb13e38c256b7a642d71e3e2fab8ca"], ["updated_at", "2014-10-15 18:39:07.495609"], ["username", "09c75751aebd4bcf57196ba1828821fe"]]
24756
+  (0.6ms) commit transaction
24757
+  (0.0ms) begin transaction
24758
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.497373"], ["email", "albertha@howell.name"], ["name", "Marlee Bins"], ["password_hash", "4947794e8d70b577c68ebf4379fd58dc"], ["updated_at", "2014-10-15 18:39:07.497373"], ["username", "6e460fa9e534ab184a6f481390e761e4"]]
24759
+  (0.6ms) commit transaction
24760
+  (0.0ms) begin transaction
24761
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.499123"], ["email", "sheila_pfeffer@sporer.name"], ["name", "Mr. Cornelius Anderson"], ["password_hash", "54bd30c9216c4a5664e35869ead5a7bc"], ["updated_at", "2014-10-15 18:39:07.499123"], ["username", "d1514465523c3e2c249d297342a60fbe"]]
24762
+  (0.6ms) commit transaction
24763
+  (0.0ms) begin transaction
24764
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.500987"], ["email", "orin@nikolaus.biz"], ["name", "Julia Jenkins"], ["password_hash", "8a75da12fd64b10a6efa35d4f11ed25b"], ["updated_at", "2014-10-15 18:39:07.500987"], ["username", "092ae59c46a8287c85b89d3bd444c4b1"]]
24765
+  (0.6ms) commit transaction
24766
+  (0.0ms) begin transaction
24767
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.502763"], ["email", "ricky@mccullough.biz"], ["name", "Osborne McGlynn"], ["password_hash", "178b36455b5cb70dc6980401369ac577"], ["updated_at", "2014-10-15 18:39:07.502763"], ["username", "03b39630f96fff9f036ad854b9af03e0"]]
24768
+  (0.6ms) commit transaction
24769
+  (0.0ms) begin transaction
24770
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.504478"], ["email", "valentine.macejkovic@bogisichconnelly.name"], ["name", "Miss Lavern Ritchie"], ["password_hash", "bb62609f1eb92e1e47b8ff459a8a6ea0"], ["updated_at", "2014-10-15 18:39:07.504478"], ["username", "d37ce462eaca38a2b46fe169e1f7937b"]]
24771
+  (0.7ms) commit transaction
24772
+  (0.0ms) begin transaction
24773
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.506300"], ["email", "katlynn.spinka@sengerdooley.info"], ["name", "Casper Abbott"], ["password_hash", "60bae76d113e5025bc24076a665f4108"], ["updated_at", "2014-10-15 18:39:07.506300"], ["username", "c516383ca6834388d7dd74591c59c6a2"]]
24774
+  (0.6ms) commit transaction
24775
+  (0.0ms) begin transaction
24776
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.508073"], ["email", "heather.lang@reillyjakubowski.org"], ["name", "Mr. Woodrow Thiel"], ["password_hash", "0b7778a3abeaa5bb6b6d35091eb934a8"], ["updated_at", "2014-10-15 18:39:07.508073"], ["username", "f3d8e1f9d63cea5345bf350e499225fe"]]
24777
+  (0.6ms) commit transaction
24778
+  (0.0ms) begin transaction
24779
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.509889"], ["email", "jewel@keelingkuhn.com"], ["name", "Grace Homenick"], ["password_hash", "8e9a0c709dd71027cbd5c2ddd79ece42"], ["updated_at", "2014-10-15 18:39:07.509889"], ["username", "6d63ccd01e243b824a890460957ea5e0"]]
24780
+  (1.3ms) commit transaction
24781
+  (0.0ms) begin transaction
24782
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.512323"], ["email", "joany@wisozk.org"], ["name", "Idell Hickle"], ["password_hash", "76378492e59c25461eedae2c3389417d"], ["updated_at", "2014-10-15 18:39:07.512323"], ["username", "aa4a20dd103f80cd5d007c2ce5324672"]]
24783
+  (0.6ms) commit transaction
24784
+  (0.0ms) begin transaction
24785
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.513977"], ["email", "rodolfo@zulauf.net"], ["name", "Dovie Hansen"], ["password_hash", "867447a9237f158bc6f23616534a88a1"], ["updated_at", "2014-10-15 18:39:07.513977"], ["username", "9c4bf6e8aefd8893f9f9f9e1d93bcec7"]]
24786
+  (0.6ms) commit transaction
24787
+  (0.0ms) begin transaction
24788
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.515625"], ["email", "tia_ritchie@hettinger.biz"], ["name", "Jaida Gutmann"], ["password_hash", "e7b8775838bba3796f70655acc419b96"], ["updated_at", "2014-10-15 18:39:07.515625"], ["username", "7938d4d468477a7086ec7439692aa65b"]]
24789
+  (0.5ms) commit transaction
24790
+  (0.0ms) begin transaction
24791
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.517215"], ["email", "kennedi_schinner@ritchie.name"], ["name", "Ms. Lucious Conn"], ["password_hash", "90129abf8c42a5fe1e4afa2618b6131b"], ["updated_at", "2014-10-15 18:39:07.517215"], ["username", "bde87c67da09c2130ab833f55873993a"]]
24792
+  (0.6ms) commit transaction
24793
+  (0.0ms) begin transaction
24794
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.518873"], ["email", "ena.schmidt@gislason.com"], ["name", "Desiree Thiel MD"], ["password_hash", "d9f800fcaec109b713bb5810b40fa23c"], ["updated_at", "2014-10-15 18:39:07.518873"], ["username", "aa5278cbcec851b2983a2d8eaa3ad7a1"]]
24795
+  (0.6ms) commit transaction
24796
+  (0.0ms) begin transaction
24797
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.520670"], ["email", "faustino_crona@wunsch.biz"], ["name", "Eleanore Schultz"], ["password_hash", "cb7d96d634607570581bad460dbb47ff"], ["updated_at", "2014-10-15 18:39:07.520670"], ["username", "68b37c11e5c48907a53422387777c790"]]
24798
+  (0.6ms) commit transaction
24799
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."name" LIKE '% doe%'
24800
+  (0.0ms) begin transaction
24801
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.523647"], ["email", "john@doe.com"], ["name", "John Doe"], ["password_hash", "d6cb0371a68fe081824bd91bf47781dd"], ["updated_at", "2014-10-15 18:39:07.523647"], ["username", "doejohn"]]
24802
+  (0.6ms) commit transaction
24803
+  (0.0ms) begin transaction
24804
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.525249"], ["email", "jane@doe.com"], ["name", "Jane Doe"], ["password_hash", "dcbf8dec15af8ce7890e91ef7fce5919"], ["updated_at", "2014-10-15 18:39:07.525249"], ["username", "doejane"]]
24805
+  (0.6ms) commit transaction
24806
+  (0.0ms) begin transaction
24807
+ SQL (0.1ms) INSERT INTO "users" ("created_at", "email", "name", "password_hash", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-10-15 18:39:07.526816"], ["email", "jack@doe.com"], ["name", "Jack Doe"], ["password_hash", "98c2107ff9fcb5b0fa738e3a047e665e"], ["updated_at", "2014-10-15 18:39:07.526816"], ["username", "doejack"]]
24808
+  (0.6ms) commit transaction
24809
+  (0.1ms) begin transaction
24810
+  (0.1ms) commit transaction
24811
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
24812
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE '% dOe%'))
24813
+  (0.0ms) begin transaction
24814
+  (0.0ms) commit transaction
24815
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
24816
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'jOhN%')) AND (("users"."name" LIKE '% DoE%'))
24817
+  (0.0ms) begin transaction
24818
+  (0.0ms) commit transaction
24819
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
24820
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (("users"."name" LIKE 'JoHn%' OR "users"."name" LIKE 'JaNe%')) AND (("users"."name" LIKE '% dOe%'))
24821
+  (0.0ms) begin transaction
24822
+  (0.0ms) commit transaction
24823
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'DoE%'))
24824
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'DoE%')) ORDER BY "users"."created_at" ASC, "users"."id" ASC
24825
+  (0.0ms) begin transaction
24826
+  (0.0ms) commit transaction
24827
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE (("users"."username" LIKE 'dOe%'))
24828
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE (("users"."username" LIKE 'dOe%')) ORDER BY "users"."created_at" DESC, "users"."id" DESC
24829
+  (0.1ms) SELECT COUNT(*) FROM "users"
24830
+  (0.0ms) begin transaction
24831
+  (0.0ms) commit transaction
24832
+  (0.1ms) SELECT COUNT(*) FROM "users"
24833
+ User Load (0.5ms) SELECT "users".* FROM "users"
24834
+  (0.0ms) begin transaction
24835
+  (0.0ms) commit transaction
24836
+  (0.1ms) SELECT COUNT(*) FROM "users"
24837
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 0
24838
+  (0.0ms) begin transaction
24839
+  (0.0ms) commit transaction
24840
+  (0.1ms) SELECT COUNT(*) FROM "users"
24841
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 0
24842
+  (0.0ms) begin transaction
24843
+  (0.0ms) commit transaction
24844
+  (0.1ms) SELECT COUNT(*) FROM "users"
24845
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 20
24846
+  (0.0ms) begin transaction
24847
+  (0.0ms) commit transaction
24848
+  (0.1ms) SELECT COUNT(*) FROM "users"
24849
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 40
24850
+  (0.0ms) begin transaction
24851
+  (0.0ms) commit transaction
24852
+  (0.1ms) SELECT COUNT(*) FROM "users"
24853
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 60
24854
+  (0.0ms) begin transaction
24855
+  (0.0ms) commit transaction
24856
+  (0.1ms) SELECT COUNT(*) FROM "users"
24857
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 80
24858
+  (0.0ms) begin transaction
24859
+  (0.0ms) commit transaction
24860
+  (0.1ms) SELECT COUNT(*) FROM "users"
24861
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 20 OFFSET 19980
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openstax_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dante Soares
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-10-14 00:00:00.000000000 Z
12
+ date: 2014-10-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails