openstax_exchange 0.0.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.
Files changed (45) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +44 -0
  4. data/Rakefile +22 -0
  5. data/lib/openstax/exchange/version.rb +5 -0
  6. data/lib/openstax_exchange.rb +112 -0
  7. data/spec/dummy/README.md +1 -0
  8. data/spec/dummy/Rakefile +7 -0
  9. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  10. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  11. data/spec/dummy/app/controllers/api/dummy_controller.rb +11 -0
  12. data/spec/dummy/app/controllers/api/events_controller.rb +7 -0
  13. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  14. data/spec/dummy/app/controllers/oauth_controller.rb +8 -0
  15. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  16. data/spec/dummy/config/application.rb +55 -0
  17. data/spec/dummy/config/boot.rb +10 -0
  18. data/spec/dummy/config/database.yml +25 -0
  19. data/spec/dummy/config/environment.rb +5 -0
  20. data/spec/dummy/config/environments/development.rb +29 -0
  21. data/spec/dummy/config/environments/production.rb +69 -0
  22. data/spec/dummy/config/environments/test.rb +35 -0
  23. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  24. data/spec/dummy/config/initializers/inflections.rb +15 -0
  25. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  26. data/spec/dummy/config/initializers/openstax_exchange.rb +10 -0
  27. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  28. data/spec/dummy/config/initializers/session_store.rb +8 -0
  29. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  30. data/spec/dummy/config/locales/en.yml +5 -0
  31. data/spec/dummy/config/routes.rb +11 -0
  32. data/spec/dummy/config.ru +4 -0
  33. data/spec/dummy/db/development.sqlite3 +0 -0
  34. data/spec/dummy/db/schema.rb +16 -0
  35. data/spec/dummy/db/test.sqlite3 +0 -0
  36. data/spec/dummy/log/development.log +929 -0
  37. data/spec/dummy/log/test.log +46753 -0
  38. data/spec/dummy/public/404.html +26 -0
  39. data/spec/dummy/public/422.html +26 -0
  40. data/spec/dummy/public/500.html +25 -0
  41. data/spec/dummy/public/favicon.ico +0 -0
  42. data/spec/dummy/script/rails +6 -0
  43. data/spec/lib/openstax_exchange_spec.rb +23 -0
  44. data/spec/spec_helper.rb +39 -0
  45. metadata +224 -0
@@ -0,0 +1,929 @@
1
+ Connecting to database specified by database.yml
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Connecting to database specified by database.yml
7
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
+ Migrating to CreateOpenStaxAccountsAccounts (0)
9
+  (0.0ms) select sqlite_version(*)
10
+  (0.0ms) begin transaction
11
+  (0.4ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
12
+  (0.2ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
13
+  (0.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
14
+  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
15
+  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
16
+  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
17
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
18
+  (1.7ms) commit transaction
19
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
20
+ Connecting to database specified by database.yml
21
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
22
+  (0.2ms) select sqlite_version(*)
23
+  (1.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
24
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
25
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
26
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
27
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
28
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
29
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
30
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
31
+  (0.0ms) SELECT version FROM "schema_migrations"
32
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
33
+ Connecting to database specified by database.yml
34
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
35
+  (0.2ms) select sqlite_version(*)
36
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
37
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
38
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
39
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
40
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
41
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
42
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
43
+  (0.1ms) SELECT version FROM "schema_migrations"
44
+ Connecting to database specified by database.yml
45
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
46
+  (0.2ms) select sqlite_version(*)
47
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
48
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
49
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
50
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
51
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
52
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
53
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
54
+  (0.1ms) SELECT version FROM "schema_migrations"
55
+ Connecting to database specified by database.yml
56
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
57
+  (0.2ms) select sqlite_version(*)
58
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
59
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
60
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
61
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
62
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
63
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
64
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
65
+  (0.1ms) SELECT version FROM "schema_migrations"
66
+ Connecting to database specified by database.yml
67
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
68
+  (0.2ms) select sqlite_version(*)
69
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
70
+  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
71
+  (1.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
72
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
73
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
74
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
75
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
76
+  (0.1ms) SELECT version FROM "schema_migrations"
77
+ Connecting to database specified by database.yml
78
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
79
+  (0.2ms) select sqlite_version(*)
80
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
81
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
82
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
83
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
84
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
85
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
86
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
87
+  (0.0ms) SELECT version FROM "schema_migrations"
88
+ Connecting to database specified by database.yml
89
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
90
+  (0.3ms) select sqlite_version(*)
91
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
92
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
93
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
94
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
95
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
96
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
97
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
98
+  (0.1ms) SELECT version FROM "schema_migrations"
99
+ Connecting to database specified by database.yml
100
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
101
+  (0.2ms) select sqlite_version(*)
102
+  (1.9ms) DROP TABLE "openstax_accounts_accounts"
103
+  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
104
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
105
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
106
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
107
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
108
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
109
+  (0.1ms) SELECT version FROM "schema_migrations"
110
+ Connecting to database specified by database.yml
111
+ Connecting to database specified by database.yml
112
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
113
+ Migrating to CreateOpenStaxAccountsAccounts (0)
114
+ Migrating to CreateUsers (1)
115
+  (0.0ms) select sqlite_version(*)
116
+  (0.0ms) begin transaction
117
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
118
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
119
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')
120
+  (1.2ms) commit transaction
121
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
122
+ Connecting to database specified by database.yml
123
+  (0.1ms) select sqlite_version(*)
124
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
125
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
126
+  (28.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
127
+ Migrating to CreateOpenStaxAccountsAccounts (0)
128
+  (0.0ms) begin transaction
129
+  (0.3ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
130
+  (0.3ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
131
+  (0.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
132
+  (0.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
133
+  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
134
+  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
135
+  (0.1ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
136
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('0')
137
+  (0.7ms) commit transaction
138
+ Migrating to CreateUsers (1)
139
+  (0.0ms) begin transaction
140
+  (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
141
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
142
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('1')
143
+  (0.7ms) commit transaction
144
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
145
+ Connecting to database specified by database.yml
146
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
147
+  (0.2ms) select sqlite_version(*)
148
+  (1.5ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
149
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
150
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
151
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
152
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
153
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
154
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
155
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
156
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
157
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
158
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
159
+  (0.0ms) SELECT version FROM "schema_migrations"
160
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
161
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
162
+ Connecting to database specified by database.yml
163
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
164
+  (0.3ms) select sqlite_version(*)
165
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
166
+  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
167
+  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
168
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
169
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
170
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
171
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
172
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
173
+  (0.8ms) DROP TABLE "users"
174
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
175
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
176
+  (0.1ms) SELECT version FROM "schema_migrations"
177
+ Connecting to database specified by database.yml
178
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
179
+  (0.3ms) select sqlite_version(*)
180
+  (1.5ms) DROP TABLE "openstax_accounts_accounts"
181
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
182
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
183
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
184
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
185
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
186
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
187
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
188
+  (0.7ms) DROP TABLE "users"
189
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
191
+  (0.1ms) SELECT version FROM "schema_migrations"
192
+ Connecting to database specified by database.yml
193
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
194
+  (0.2ms) select sqlite_version(*)
195
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
196
+  (1.3ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
197
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
198
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
199
+  (0.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
200
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
201
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
202
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
203
+  (0.7ms) DROP TABLE "users"
204
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
205
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
206
+  (0.1ms) SELECT version FROM "schema_migrations"
207
+ Connecting to database specified by database.yml
208
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
209
+  (0.3ms) select sqlite_version(*)
210
+  (1.5ms) DROP TABLE "openstax_accounts_accounts"
211
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
212
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
213
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
214
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
215
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
216
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
217
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
218
+  (0.8ms) DROP TABLE "users"
219
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
220
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
221
+  (0.1ms) SELECT version FROM "schema_migrations"
222
+ Connecting to database specified by database.yml
223
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
224
+  (0.3ms) select sqlite_version(*)
225
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
226
+  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
227
+  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
228
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
229
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
230
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
231
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
232
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
233
+  (0.8ms) DROP TABLE "users"
234
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
235
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
236
+  (0.1ms) SELECT version FROM "schema_migrations"
237
+ Connecting to database specified by database.yml
238
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
239
+  (0.3ms) select sqlite_version(*)
240
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
241
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
242
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
243
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
244
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
245
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
246
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
247
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
248
+  (0.8ms) DROP TABLE "users"
249
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
250
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
251
+  (0.1ms) SELECT version FROM "schema_migrations"
252
+ Connecting to database specified by database.yml
253
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
254
+  (0.3ms) select sqlite_version(*)
255
+  (1.4ms) DROP TABLE "openstax_accounts_accounts"
256
+  (0.7ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
257
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
258
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
259
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
260
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
261
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
262
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
263
+  (0.8ms) DROP TABLE "users"
264
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
265
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
266
+  (0.1ms) SELECT version FROM "schema_migrations"
267
+ Connecting to database specified by database.yml
268
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
269
+  (0.3ms) select sqlite_version(*)
270
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
271
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
272
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
273
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
274
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
275
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
276
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
277
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
278
+  (0.8ms) DROP TABLE "users"
279
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
280
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
281
+  (0.1ms) SELECT version FROM "schema_migrations"
282
+ Connecting to database specified by database.yml
283
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
284
+  (0.3ms) select sqlite_version(*)
285
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
286
+  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
287
+  (6.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
288
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
289
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
290
+  (5.6ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
291
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
292
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
293
+  (4.1ms) DROP TABLE "users"
294
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
295
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
296
+  (0.1ms) SELECT version FROM "schema_migrations"
297
+ Connecting to database specified by database.yml
298
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
299
+  (0.3ms) select sqlite_version(*)
300
+  (1.4ms) DROP TABLE "openstax_accounts_accounts"
301
+  (4.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
302
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
303
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
304
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
305
+  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
306
+  (1.1ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
307
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
308
+  (0.8ms) DROP TABLE "users"
309
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
310
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
311
+  (0.1ms) SELECT version FROM "schema_migrations"
312
+ Connecting to database specified by database.yml
313
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
314
+  (0.2ms) select sqlite_version(*)
315
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
316
+  (7.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
317
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
318
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
319
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
320
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
321
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
322
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
323
+  (0.8ms) DROP TABLE "users"
324
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
325
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
326
+  (0.1ms) SELECT version FROM "schema_migrations"
327
+ Connecting to database specified by database.yml
328
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
329
+  (0.3ms) select sqlite_version(*)
330
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
331
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
332
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
333
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
334
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
335
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
336
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
337
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
338
+  (0.8ms) DROP TABLE "users"
339
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
340
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
341
+  (0.1ms) SELECT version FROM "schema_migrations"
342
+ Connecting to database specified by database.yml
343
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
344
+  (0.3ms) select sqlite_version(*)
345
+  (1.5ms) DROP TABLE "openstax_accounts_accounts"
346
+  (2.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
347
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
348
+  (2.5ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
349
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
350
+  (5.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
351
+  (5.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
352
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
353
+  (0.8ms) DROP TABLE "users"
354
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
355
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
356
+  (0.1ms) SELECT version FROM "schema_migrations"
357
+ Connecting to database specified by database.yml
358
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
359
+  (0.2ms) select sqlite_version(*)
360
+  (1.0ms) DROP TABLE "openstax_accounts_accounts"
361
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
362
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
363
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
364
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
365
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
366
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
367
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
368
+  (0.6ms) DROP TABLE "users"
369
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
370
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
371
+  (0.1ms) SELECT version FROM "schema_migrations"
372
+ Connecting to database specified by database.yml
373
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
374
+  (0.3ms) select sqlite_version(*)
375
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
376
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
377
+  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
378
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
379
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
380
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
381
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
382
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
383
+  (0.8ms) DROP TABLE "users"
384
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
385
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
386
+  (0.1ms) SELECT version FROM "schema_migrations"
387
+ Connecting to database specified by database.yml
388
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
389
+  (0.3ms) select sqlite_version(*)
390
+  (1.2ms) DROP TABLE "openstax_accounts_accounts"
391
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
392
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
393
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
394
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
395
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
396
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
397
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
398
+  (0.7ms) DROP TABLE "users"
399
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
400
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
401
+  (0.1ms) SELECT version FROM "schema_migrations"
402
+ Connecting to database specified by database.yml
403
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
404
+  (0.3ms) select sqlite_version(*)
405
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
406
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
407
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
408
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
409
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
410
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
411
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
412
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
413
+  (0.8ms) DROP TABLE "users"
414
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
415
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
416
+  (0.1ms) SELECT version FROM "schema_migrations"
417
+ Connecting to database specified by database.yml
418
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
419
+  (0.3ms) select sqlite_version(*)
420
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
421
+  (1.7ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
422
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
423
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
424
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
425
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
426
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
427
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
428
+  (0.8ms) DROP TABLE "users"
429
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
430
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
431
+  (0.1ms) SELECT version FROM "schema_migrations"
432
+ Connecting to database specified by database.yml
433
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
434
+  (0.3ms) select sqlite_version(*)
435
+  (1.5ms) DROP TABLE "openstax_accounts_accounts"
436
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
437
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
438
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
439
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
440
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
441
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
442
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
443
+  (0.7ms) DROP TABLE "users"
444
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
445
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
446
+  (0.1ms) SELECT version FROM "schema_migrations"
447
+ Connecting to database specified by database.yml
448
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
449
+  (0.3ms) select sqlite_version(*)
450
+  (1.4ms) DROP TABLE "openstax_accounts_accounts"
451
+  (0.7ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
452
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
453
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
454
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
455
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
456
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
457
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
458
+  (0.7ms) DROP TABLE "users"
459
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
461
+  (0.1ms) SELECT version FROM "schema_migrations"
462
+ Connecting to database specified by database.yml
463
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
464
+  (1.0ms) select sqlite_version(*)
465
+  (1.4ms) DROP TABLE "openstax_accounts_accounts"
466
+  (0.8ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
467
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
468
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
469
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
470
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
471
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
472
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
473
+  (0.8ms) DROP TABLE "users"
474
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
475
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
476
+  (0.1ms) SELECT version FROM "schema_migrations"
477
+ Connecting to database specified by database.yml
478
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
479
+  (0.2ms) select sqlite_version(*)
480
+  (1.8ms) DROP TABLE "openstax_accounts_accounts"
481
+  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
482
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
483
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
484
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
485
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
486
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
487
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
488
+  (0.7ms) DROP TABLE "users"
489
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
491
+  (0.1ms) SELECT version FROM "schema_migrations"
492
+ Connecting to database specified by database.yml
493
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
494
+  (0.2ms) select sqlite_version(*)
495
+  (1.7ms) DROP TABLE "openstax_accounts_accounts"
496
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
497
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
498
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
499
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
500
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
501
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
502
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
503
+  (0.8ms) DROP TABLE "users"
504
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
505
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
506
+  (0.1ms) SELECT version FROM "schema_migrations"
507
+ Connecting to database specified by database.yml
508
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
509
+  (0.3ms) select sqlite_version(*)
510
+  (1.5ms) DROP TABLE "openstax_accounts_accounts"
511
+  (1.3ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
512
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
513
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
514
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
515
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
516
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
517
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
518
+  (0.7ms) DROP TABLE "users"
519
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
520
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
521
+  (0.1ms) SELECT version FROM "schema_migrations"
522
+ Connecting to database specified by database.yml
523
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
524
+  (0.2ms) select sqlite_version(*)
525
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
526
+  (0.9ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
527
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
528
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
529
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
530
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
531
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
532
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
533
+  (0.8ms) DROP TABLE "users"
534
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
535
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
536
+  (0.1ms) SELECT version FROM "schema_migrations"
537
+ Connecting to database specified by database.yml
538
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
539
+  (0.2ms) select sqlite_version(*)
540
+  (1.8ms) DROP TABLE "openstax_accounts_accounts"
541
+  (1.0ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
542
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
543
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
544
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
545
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
546
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
547
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
548
+  (0.7ms) DROP TABLE "users"
549
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
550
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
551
+  (0.1ms) SELECT version FROM "schema_migrations"
552
+ Connecting to database specified by database.yml
553
+  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
554
+  (0.2ms) select sqlite_version(*)
555
+  (1.2ms) DROP TABLE "openstax_accounts_accounts"
556
+  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
557
+  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
558
+  (1.0ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
559
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
560
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
561
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
562
+  (0.6ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
563
+  (0.7ms) DROP TABLE "users"
564
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
565
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
566
+  (0.1ms) SELECT version FROM "schema_migrations"
567
+ Connecting to database specified by database.yml
568
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
569
+  (0.2ms) select sqlite_version(*)
570
+  (1.6ms) DROP TABLE "openstax_accounts_accounts"
571
+  (1.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
572
+  (0.9ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
573
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
574
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
575
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
576
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
577
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
578
+  (0.8ms) DROP TABLE "users"
579
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
580
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
581
+  (0.1ms) SELECT version FROM "schema_migrations"
582
+ Connecting to database specified by database.yml
583
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
584
+  (0.2ms) select sqlite_version(*)
585
+  (1.3ms) DROP TABLE "openstax_accounts_accounts"
586
+  (0.6ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
587
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
588
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
589
+  (0.8ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
590
+  (0.7ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
591
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
592
+  (0.8ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
593
+  (0.7ms) DROP TABLE "users"
594
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
595
+  (0.6ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
596
+  (0.1ms) SELECT version FROM "schema_migrations"
597
+ Connecting to database specified by database.yml
598
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
599
+  (0.2ms) select sqlite_version(*)
600
+  (1.5ms) DROP TABLE "openstax_accounts_accounts"
601
+  (1.1ms) CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
602
+  (1.0ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
603
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
604
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
605
+  (0.9ms) CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
606
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
607
+  (0.7ms) CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
608
+  (0.7ms) DROP TABLE "users"
609
+  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
610
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")
611
+  (0.1ms) SELECT version FROM "schema_migrations"
612
+
613
+
614
+ Started POST "/oauth/token" for 127.0.0.1 at 2014-07-22 10:58:39 -0500
615
+ Processing by OauthController#token as */*
616
+ Parameters: {"grant_type"=>"client_credentials"}
617
+ Can't verify CSRF token authenticity
618
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
619
+
620
+
621
+ Started GET "/api/events" for 127.0.0.1 at 2014-07-22 10:58:39 -0500
622
+
623
+ ActionController::RoutingError (No route matches [GET] "/api/events"):
624
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
625
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
626
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
627
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
628
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
629
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
630
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
631
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
632
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
633
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
634
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
635
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
636
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
637
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
638
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
639
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
640
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
641
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
642
+ capybara (2.2.1) lib/capybara/server.rb:19:in `call'
643
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
644
+ /Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
645
+ /Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
646
+ /Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
647
+
648
+
649
+ Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
650
+ Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
651
+ Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
652
+ Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.5ms)
653
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
654
+  (0.1ms) select sqlite_version(*)
655
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
657
+
658
+
659
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:35:36 -0500
660
+
661
+ AbstractController::ActionNotFound (The action 'index' could not be found for ApplicationController):
662
+ actionpack (4.1.1) lib/abstract_controller/base.rb:131:in `process'
663
+ actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
664
+ actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
665
+ actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
666
+ actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
667
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
668
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
669
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
670
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
671
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
672
+ actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
673
+ actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
674
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
675
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
676
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
677
+ actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
678
+ actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
679
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
680
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
681
+ actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
682
+ activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
683
+ activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
684
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
685
+ activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
686
+ actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
687
+ actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
688
+ actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
689
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
690
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
691
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
692
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
693
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
694
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
695
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
696
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
697
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
698
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
699
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
700
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
701
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
702
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
703
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
704
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
705
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
706
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
707
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
708
+ thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
709
+ thin (1.6.2) lib/thin/connection.rb:84:in `catch'
710
+ thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
711
+ thin (1.6.2) lib/thin/connection.rb:53:in `process'
712
+ thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
713
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
714
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
715
+ thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
716
+ thin (1.6.2) lib/thin/server.rb:162:in `start'
717
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
718
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
719
+ railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
720
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
721
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
722
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
723
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
724
+ railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
725
+ script/rails:6:in `require'
726
+ script/rails:6:in `<main>'
727
+
728
+
729
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (2.4ms)
730
+
731
+
732
+ Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:35:44 -0500
733
+ Processing by Api::EventsController#index as HTML
734
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
735
+
736
+
737
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:34 -0500
738
+ Processing by ApplicationController#index as HTML
739
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
740
+
741
+
742
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:38 -0500
743
+ Processing by ApplicationController#index as HTML
744
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
745
+
746
+
747
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:41 -0500
748
+ Processing by ApplicationController#index as HTML
749
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
750
+
751
+
752
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:42 -0500
753
+ Processing by ApplicationController#index as HTML
754
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
755
+
756
+
757
+ Started GET "/api/dummt" for 127.0.0.1 at 2014-07-22 11:36:53 -0500
758
+
759
+ ActionController::RoutingError (No route matches [GET] "/api/dummt"):
760
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
761
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
762
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
763
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
764
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
765
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
766
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
767
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
768
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
769
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
770
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
771
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
772
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
773
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
774
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
775
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
776
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
777
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
778
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
779
+ thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
780
+ thin (1.6.2) lib/thin/connection.rb:84:in `catch'
781
+ thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
782
+ thin (1.6.2) lib/thin/connection.rb:53:in `process'
783
+ thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
784
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
785
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
786
+ thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
787
+ thin (1.6.2) lib/thin/server.rb:162:in `start'
788
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
789
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
790
+ railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
791
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
792
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
793
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
794
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
795
+ railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
796
+ script/rails:6:in `require'
797
+ script/rails:6:in `<main>'
798
+
799
+
800
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
801
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
802
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.2ms)
803
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.5ms)
804
+
805
+
806
+ Started GET "/api/dummy" for 127.0.0.1 at 2014-07-22 11:36:56 -0500
807
+
808
+ ActionController::RoutingError (No route matches [GET] "/api/dummy"):
809
+ actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
810
+ actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
811
+ railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
812
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
813
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
814
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
815
+ activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
816
+ railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
817
+ quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
818
+ actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
819
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
820
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
821
+ activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
822
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
823
+ actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
824
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
825
+ railties (4.1.1) lib/rails/engine.rb:514:in `call'
826
+ railties (4.1.1) lib/rails/application.rb:144:in `call'
827
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
828
+ thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
829
+ thin (1.6.2) lib/thin/connection.rb:84:in `catch'
830
+ thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
831
+ thin (1.6.2) lib/thin/connection.rb:53:in `process'
832
+ thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
833
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
834
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
835
+ thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
836
+ thin (1.6.2) lib/thin/server.rb:162:in `start'
837
+ rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
838
+ rack (1.5.2) lib/rack/server.rb:264:in `start'
839
+ railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
840
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
841
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
842
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
843
+ railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
844
+ railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
845
+ script/rails:6:in `require'
846
+ script/rails:6:in `<main>'
847
+
848
+
849
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
850
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
851
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
852
+ Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (12.6ms)
853
+
854
+
855
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:07 -0500
856
+ Processing by ApplicationController#index as HTML
857
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
858
+
859
+
860
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:08 -0500
861
+ Processing by ApplicationController#index as HTML
862
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
863
+
864
+
865
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:12 -0500
866
+ Processing by ApplicationController#index as HTML
867
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
868
+
869
+
870
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:18 -0500
871
+ Processing by ApplicationController#index as HTML
872
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
873
+
874
+
875
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:21 -0500
876
+ Processing by ApplicationController#index as HTML
877
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
878
+
879
+
880
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:22 -0500
881
+ Processing by ApplicationController#index as HTML
882
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
883
+
884
+
885
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:29 -0500
886
+ Processing by ApplicationController#index as HTML
887
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
888
+
889
+
890
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:31 -0500
891
+ Processing by ApplicationController#index as HTML
892
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
893
+
894
+
895
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:33 -0500
896
+ Processing by ApplicationController#index as HTML
897
+ Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
898
+
899
+
900
+ Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:54 -0500
901
+ Processing by ApplicationController#index as HTML
902
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
903
+
904
+
905
+ Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:37:58 -0500
906
+ Processing by Api::EventsController#index as HTML
907
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
908
+
909
+
910
+ Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:38:00 -0500
911
+ Processing by Api::EventsController#index as HTML
912
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
913
+
914
+
915
+ Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:38:04 -0500
916
+ Processing by Api::EventsController#index as HTML
917
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
918
+
919
+
920
+ Started GET "/api/events?q=" for 127.0.0.1 at 2014-07-22 11:38:08 -0500
921
+ Processing by Api::EventsController#index as HTML
922
+ Parameters: {"q"=>""}
923
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
924
+
925
+
926
+ Started GET "/api/events?q=" for 127.0.0.1 at 2014-07-22 11:38:11 -0500
927
+ Processing by Api::EventsController#index as HTML
928
+ Parameters: {"q"=>""}
929
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)