api_flashcards 0.0.1.3

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 (76) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +2 -0
  4. data/Rakefile +29 -0
  5. data/app/assets/javascripts/api_flashcards/application.js +13 -0
  6. data/app/assets/stylesheets/api_flashcards/application.css +15 -0
  7. data/app/controllers/api_flashcards/application_controller.rb +12 -0
  8. data/app/controllers/api_flashcards/test_controller.rb +6 -0
  9. data/app/helpers/api_flashcards/application_helper.rb +4 -0
  10. data/app/models/api_flashcards/concerns/user.rb +25 -0
  11. data/app/views/api_flashcards/test/hello.html.erb +0 -0
  12. data/app/views/layouts/api_flashcards/application.html.erb +14 -0
  13. data/config/routes.rb +3 -0
  14. data/lib/api_flashcards.rb +4 -0
  15. data/lib/api_flashcards/engine.rb +5 -0
  16. data/lib/api_flashcards/version.rb +3 -0
  17. data/lib/tasks/api_flashcards_tasks.rake +4 -0
  18. data/spec/controllers/test_controller_spec.rb +25 -0
  19. data/spec/dummy/README.rdoc +28 -0
  20. data/spec/dummy/Rakefile +6 -0
  21. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  22. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  23. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  24. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  25. data/spec/dummy/app/models/user.rb +9 -0
  26. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/spec/dummy/bin/bundle +3 -0
  28. data/spec/dummy/bin/rails +4 -0
  29. data/spec/dummy/bin/rake +4 -0
  30. data/spec/dummy/bin/setup +29 -0
  31. data/spec/dummy/config.ru +4 -0
  32. data/spec/dummy/config/application.rb +26 -0
  33. data/spec/dummy/config/boot.rb +5 -0
  34. data/spec/dummy/config/database.yml.travis +7 -0
  35. data/spec/dummy/config/environment.rb +5 -0
  36. data/spec/dummy/config/environments/development.rb +41 -0
  37. data/spec/dummy/config/environments/production.rb +79 -0
  38. data/spec/dummy/config/environments/test.rb +42 -0
  39. data/spec/dummy/config/initializers/assets.rb +11 -0
  40. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  42. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/spec/dummy/config/initializers/inflections.rb +16 -0
  44. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  45. data/spec/dummy/config/initializers/session_store.rb +3 -0
  46. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  47. data/spec/dummy/config/locales/en.yml +23 -0
  48. data/spec/dummy/config/routes.rb +3 -0
  49. data/spec/dummy/config/secrets.yml +22 -0
  50. data/spec/dummy/db/migrate/20151812212956_create_users.rb +10 -0
  51. data/spec/dummy/db/schema.rb +22 -0
  52. data/spec/dummy/log/development.log +867 -0
  53. data/spec/dummy/log/test.log +749 -0
  54. data/spec/dummy/public/404.html +67 -0
  55. data/spec/dummy/public/422.html +67 -0
  56. data/spec/dummy/public/500.html +66 -0
  57. data/spec/dummy/public/favicon.ico +0 -0
  58. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/01sEvdwtsypAol6EfsXFXaVqCeBkbX0BlcjmS6QFGto.cache +0 -0
  59. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/1Hu8J8N46yo9akeMecpycX4N_492GeZJc6O9T6HiQq4.cache +1 -0
  60. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/3q-b0AE5iUBkiJn4bguUQMQMl5mlGlgM-CwiSIjRYho.cache +1 -0
  61. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
  62. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/64xyDflfZPoTFZqGz9awztIeP7bC4A8xNY_6mCEEJ4A.cache +1 -0
  63. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/6k-PgkwBgdkjhEbGrypPuz1oYqWc805JvjDlovCHkFE.cache +0 -0
  64. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/AGtFNj2ellRq19c_GTta4F8gMdDBptb_ApfuXHX6sQA.cache +0 -0
  65. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/JnuqadAL5Sz9u5kIvw9XEkVQjdhoLVNCNydqmyDK8_U.cache +0 -0
  66. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +3 -0
  67. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/QNNL-y_6-CtpHBsSez5bPk2Q1vd75PbEBbB8HRJSSsI.cache +1 -0
  68. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/f2RVVY17WSxHCAIPJB06wCqfIjQ3YmBYpaIxC56h2C8.cache +1 -0
  69. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/g1D_NR0GymTVRLVoYcWTFtcmI8YWEXDg5YsQEZwYMCk.cache +1 -0
  70. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +3 -0
  71. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
  72. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/q5Uwmpgzjc_Y6qIc19me0w7boTj1ex44F8XuYspSR20.cache +0 -0
  73. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/seU4fK1dwp7Nwa-_CgNQZMp1vemN3eAC90vw29LyjVc.cache +1 -0
  74. data/spec/integration/navigation_test.rb +10 -0
  75. data/spec/spec_helper.rb +13 -0
  76. metadata +260 -0
@@ -0,0 +1,749 @@
1
+  (0.2ms) BEGIN
2
+  (0.2ms) ROLLBACK
3
+  (0.2ms) BEGIN
4
+ Processing by ApiFlashcards::TestController#hello as HTML
5
+ Filter chain halted as :authenticate rendered or redirected
6
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
7
+  (0.3ms) ROLLBACK
8
+  (0.1ms) BEGIN
9
+ Processing by ApiFlashcards::TestController#hello as HTML
10
+ Filter chain halted as :authenticate rendered or redirected
11
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
12
+  (0.2ms) ROLLBACK
13
+  (0.1ms) BEGIN
14
+ Processing by ApiFlashcards::TestController#hello as HTML
15
+ Filter chain halted as :authenticate rendered or redirected
16
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
17
+  (0.2ms) ROLLBACK
18
+  (0.1ms) BEGIN
19
+ Processing by ApiFlashcards::TestController#hello as HTML
20
+ Filter chain halted as :authenticate rendered or redirected
21
+ Completed 402 Payment Required in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
22
+  (0.2ms) ROLLBACK
23
+  (0.1ms) BEGIN
24
+ Processing by ApiFlashcards::TestController#hello as HTML
25
+ Filter chain halted as :authenticate rendered or redirected
26
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27
+  (0.2ms) ROLLBACK
28
+  (0.1ms) BEGIN
29
+ Processing by ApiFlashcards::TestController#hello as HTML
30
+ Filter chain halted as :authenticate rendered or redirected
31
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
32
+  (0.2ms) ROLLBACK
33
+  (0.1ms) BEGIN
34
+ Processing by ApiFlashcards::TestController#hello as HTML
35
+ Filter chain halted as :authenticate rendered or redirected
36
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37
+  (0.2ms) ROLLBACK
38
+  (0.2ms) BEGIN
39
+ Processing by ApiFlashcards::TestController#hello as HTML
40
+ Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.0ms)
41
+  (0.3ms) ROLLBACK
42
+  (0.1ms) BEGIN
43
+ Processing by ApiFlashcards::TestController#hello as HTML
44
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
45
+ Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
46
+  (0.3ms) ROLLBACK
47
+  (0.2ms) BEGIN
48
+ Processing by ApiFlashcards::TestController#hello as HTML
49
+ Filter chain halted as :authenticate rendered or redirected
50
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
51
+  (0.2ms) ROLLBACK
52
+  (0.1ms) BEGIN
53
+ Processing by ApiFlashcards::TestController#hello as HTML
54
+ Filter chain halted as :authenticate rendered or redirected
55
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
56
+  (0.2ms) ROLLBACK
57
+  (0.2ms) BEGIN
58
+ Processing by ApiFlashcards::TestController#hello as HTML
59
+ Filter chain halted as :authenticate rendered or redirected
60
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
61
+  (0.2ms) ROLLBACK
62
+  (0.1ms) BEGIN
63
+ Processing by ApiFlashcards::TestController#hello as HTML
64
+ Filter chain halted as :authenticate rendered or redirected
65
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
66
+  (0.2ms) ROLLBACK
67
+  (0.1ms) BEGIN
68
+ Processing by ApiFlashcards::TestController#hello as HTML
69
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
70
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
71
+  (0.2ms) ROLLBACK
72
+  (0.2ms) BEGIN
73
+ Processing by ApiFlashcards::TestController#hello as HTML
74
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
75
+ Completed 200 OK in 70ms (Views: 69.8ms | ActiveRecord: 0.0ms)
76
+  (0.3ms) ROLLBACK
77
+  (0.2ms) BEGIN
78
+ Processing by ApiFlashcards::TestController#hello as HTML
79
+ Filter chain halted as :authenticate rendered or redirected
80
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
81
+  (0.3ms) ROLLBACK
82
+  (0.1ms) BEGIN
83
+ Processing by ApiFlashcards::TestController#hello as HTML
84
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
85
+ Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
86
+  (0.2ms) ROLLBACK
87
+  (1.3ms) BEGIN
88
+ Processing by ApiFlashcards::TestController#hello as HTML
89
+ Filter chain halted as :authenticate rendered or redirected
90
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
91
+  (0.2ms) ROLLBACK
92
+  (0.2ms) BEGIN
93
+ Processing by ApiFlashcards::TestController#hello as HTML
94
+ Filter chain halted as :authenticate rendered or redirected
95
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
96
+  (0.3ms) ROLLBACK
97
+  (0.1ms) BEGIN
98
+ Processing by ApiFlashcards::TestController#hello as HTML
99
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
100
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
101
+  (0.8ms) ROLLBACK
102
+  (0.2ms) BEGIN
103
+ Processing by ApiFlashcards::TestController#hello as HTML
104
+ Filter chain halted as :authenticate rendered or redirected
105
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
106
+  (0.3ms) ROLLBACK
107
+  (0.2ms) BEGIN
108
+ Processing by ApiFlashcards::TestController#hello as HTML
109
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
110
+  (0.2ms) ROLLBACK
111
+  (0.1ms) BEGIN
112
+ Processing by ApiFlashcards::TestController#hello as HTML
113
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
114
+  (0.2ms) ROLLBACK
115
+  (0.2ms) BEGIN
116
+ Processing by ApiFlashcards::TestController#hello as HTML
117
+ Filter chain halted as :authenticate rendered or redirected
118
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
119
+  (0.3ms) ROLLBACK
120
+  (0.1ms) BEGIN
121
+ Processing by ApiFlashcards::TestController#hello as HTML
122
+ Completed 500 Internal Server Error in 130ms (ActiveRecord: 58.7ms)
123
+  (0.2ms) ROLLBACK
124
+  (0.2ms) BEGIN
125
+ Processing by ApiFlashcards::TestController#hello as HTML
126
+ Filter chain halted as :authenticate rendered or redirected
127
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
128
+  (0.2ms) ROLLBACK
129
+  (0.2ms) BEGIN
130
+ Processing by ApiFlashcards::TestController#hello as HTML
131
+ Filter chain halted as :authenticate rendered or redirected
132
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
133
+  (0.2ms) ROLLBACK
134
+  (0.1ms) BEGIN
135
+ Processing by ApiFlashcards::TestController#hello as HTML
136
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 1.0ms)
137
+  (0.2ms) ROLLBACK
138
+  (0.1ms) BEGIN
139
+ Processing by ApiFlashcards::TestController#hello as HTML
140
+ Filter chain halted as :authenticate rendered or redirected
141
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
142
+  (0.2ms) ROLLBACK
143
+  (0.1ms) BEGIN
144
+ Processing by ApiFlashcards::TestController#hello as HTML
145
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 1.0ms)
146
+  (0.2ms) ROLLBACK
147
+  (0.1ms) BEGIN
148
+ Processing by ApiFlashcards::TestController#hello as HTML
149
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 1.0ms)
150
+  (0.2ms) ROLLBACK
151
+  (0.1ms) BEGIN
152
+ Processing by ApiFlashcards::TestController#hello as HTML
153
+ Filter chain halted as :authenticate rendered or redirected
154
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
155
+  (0.2ms) ROLLBACK
156
+  (0.1ms) BEGIN
157
+ Processing by ApiFlashcards::TestController#hello as HTML
158
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 1.0ms)
159
+  (0.2ms) ROLLBACK
160
+  (0.2ms) BEGIN
161
+ Processing by ApiFlashcards::TestController#hello as HTML
162
+ Filter chain halted as :authenticate rendered or redirected
163
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
164
+  (0.2ms) ROLLBACK
165
+  (216.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
166
+  (72.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
167
+ ActiveRecord::SchemaMigration Load (21.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
168
+ Migrating to CreateUsers (20151812212956)
169
+  (0.3ms) BEGIN
170
+  (100.0ms) CREATE TABLE "users" ("id" serial primary key, "email" character varying, "password_digest" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
171
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151812212956"]]
172
+  (21.9ms) COMMIT
173
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
174
+  (6.0ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
175
+ FROM pg_constraint c
176
+ JOIN pg_class t1 ON c.conrelid = t1.oid
177
+ JOIN pg_class t2 ON c.confrelid = t2.oid
178
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
179
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
180
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
181
+ WHERE c.contype = 'f'
182
+ AND t1.relname = 'users'
183
+ AND t3.nspname = ANY (current_schemas(false))
184
+ ORDER BY c.conname
185
+ 
186
+  (0.1ms) BEGIN
187
+ Processing by ApiFlashcards::TestController#hello as HTML
188
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "a"]]
189
+ Filter chain halted as :authenticate rendered or redirected
190
+ Completed 401 Unauthorized in 38ms (Views: 0.3ms | ActiveRecord: 2.8ms)
191
+  (0.2ms) SAVEPOINT active_record_1
192
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$H38bWFPV3lgRPoSxnAm0xO.ZGYdrOZTXfjZ6IKjpNCharfIERCfJ6"], ["created_at", "2015-12-18 18:40:37.014542"], ["updated_at", "2015-12-18 18:40:37.014542"]]
193
+  (0.2ms) RELEASE SAVEPOINT active_record_1
194
+  (0.2ms) ROLLBACK
195
+  (0.1ms) BEGIN
196
+ Processing by ApiFlashcards::TestController#hello as HTML
197
+ Filter chain halted as :authenticate rendered or redirected
198
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
199
+  (0.2ms) ROLLBACK
200
+  (0.1ms) BEGIN
201
+ Processing by ApiFlashcards::TestController#hello as HTML
202
+ Filter chain halted as :authenticate rendered or redirected
203
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
204
+  (0.2ms) ROLLBACK
205
+  (0.1ms) BEGIN
206
+  (0.2ms) SAVEPOINT active_record_1
207
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$QuVTUVkVFwqg2cH8Jvnjm.Z7NU3vr.3jL7MXFWY00GH9oiIVxgndi"], ["created_at", "2015-12-18 18:43:13.728480"], ["updated_at", "2015-12-18 18:43:13.728480"]]
208
+  (0.2ms) RELEASE SAVEPOINT active_record_1
209
+  (0.2ms) ROLLBACK
210
+  (0.1ms) BEGIN
211
+ Processing by ApiFlashcards::TestController#hello as HTML
212
+ Filter chain halted as :authenticate rendered or redirected
213
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
214
+  (0.2ms) ROLLBACK
215
+  (0.1ms) BEGIN
216
+  (0.2ms) SAVEPOINT active_record_1
217
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$R2yPtyShJOZbRbGurm/q3.CXVy.m4iNoWPOSZrcr0WDDI60mwhX4y"], ["created_at", "2015-12-18 18:51:09.533102"], ["updated_at", "2015-12-18 18:51:09.533102"]]
218
+  (0.2ms) RELEASE SAVEPOINT active_record_1
219
+ Processing by ApiFlashcards::TestController#hello as HTML
220
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
221
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
222
+ Completed 200 OK in 21ms (Views: 10.0ms | ActiveRecord: 0.4ms)
223
+  (0.3ms) ROLLBACK
224
+  (0.1ms) BEGIN
225
+ Processing by ApiFlashcards::TestController#hello as HTML
226
+ Filter chain halted as :authenticate rendered or redirected
227
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
228
+  (0.2ms) ROLLBACK
229
+  (0.2ms) BEGIN
230
+ Processing by ApiFlashcards::TestController#hello as HTML
231
+ Filter chain halted as :authenticate rendered or redirected
232
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
233
+  (0.3ms) SAVEPOINT active_record_1
234
+ SQL (0.6ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$fJmx0Oh6IJCszloXhnHkQO99genRIMTWjIZAC0zQ1SFnJOWACgv4C"], ["created_at", "2015-12-18 18:54:39.868264"], ["updated_at", "2015-12-18 18:54:39.868264"]]
235
+  (0.2ms) RELEASE SAVEPOINT active_record_1
236
+ Processing by ApiFlashcards::TestController#hello as HTML
237
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
238
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
239
+ Completed 200 OK in 21ms (Views: 10.0ms | ActiveRecord: 0.4ms)
240
+  (0.3ms) ROLLBACK
241
+  (0.1ms) BEGIN
242
+ Processing by ApiFlashcards::TestController#hello as HTML
243
+ Filter chain halted as :authenticate rendered or redirected
244
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
245
+  (0.2ms) ROLLBACK
246
+  (0.1ms) BEGIN
247
+ Processing by ApiFlashcards::TestController#hello as HTML
248
+ Filter chain halted as :authenticate rendered or redirected
249
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
250
+  (0.2ms) SAVEPOINT active_record_1
251
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$EjDBE8iTcYUxue9q1hfQZeIUbAwzT/bRB2GYAeBj4vSyCXcc6pLZy"], ["created_at", "2015-12-18 19:20:02.452123"], ["updated_at", "2015-12-18 19:20:02.452123"]]
252
+  (0.2ms) RELEASE SAVEPOINT active_record_1
253
+ Processing by ApiFlashcards::TestController#hello as HTML
254
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
255
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
256
+ Completed 200 OK in 21ms (Views: 10.1ms | ActiveRecord: 0.4ms)
257
+  (0.3ms) ROLLBACK
258
+  (0.1ms) BEGIN
259
+ Processing by ApiFlashcards::TestController#hello as HTML
260
+ Filter chain halted as :authenticate rendered or redirected
261
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
262
+  (0.2ms) SAVEPOINT active_record_1
263
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$TS6.4ZOT428zE214/.vdo.oGMBx0HlOCNc.MaAQTW46CjENftYiXe"], ["created_at", "2015-12-18 19:20:18.742929"], ["updated_at", "2015-12-18 19:20:18.742929"]]
264
+  (0.2ms) RELEASE SAVEPOINT active_record_1
265
+ Processing by ApiFlashcards::TestController#hello as HTML
266
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
267
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
268
+ Completed 200 OK in 21ms (Views: 10.1ms | ActiveRecord: 0.4ms)
269
+  (0.3ms) ROLLBACK
270
+  (0.2ms) BEGIN
271
+ Processing by ApiFlashcards::TestController#hello as HTML
272
+ Filter chain halted as :authenticate rendered or redirected
273
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
274
+  (0.2ms) SAVEPOINT active_record_1
275
+ SQL (0.4ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$0vrPqEJD0j6q.SuAGuZ6le9.xDY3cRH8gF2CX5sos5N/XOW57MWhW"], ["created_at", "2015-12-18 19:20:18.781806"], ["updated_at", "2015-12-18 19:20:18.781806"]]
276
+  (0.2ms) RELEASE SAVEPOINT active_record_1
277
+ Processing by ApiFlashcards::TestController#hello as HTML
278
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
279
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
280
+ Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.3ms)
281
+  (0.3ms) ROLLBACK
282
+  (0.1ms) BEGIN
283
+ Processing by ApiFlashcards::TestController#hello as HTML
284
+ Filter chain halted as :authenticate rendered or redirected
285
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
286
+  (0.2ms) ROLLBACK
287
+  (0.1ms) BEGIN
288
+ Processing by ApiFlashcards::TestController#hello as HTML
289
+ Filter chain halted as :authenticate rendered or redirected
290
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
291
+  (0.3ms) SAVEPOINT active_record_1
292
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$yQxVTj69h5UaU3PebqxO9eyArXKC8rnvq1Yizwm3YB5v8jvXynnnu"], ["created_at", "2015-12-18 19:20:47.372157"], ["updated_at", "2015-12-18 19:20:47.372157"]]
293
+  (0.2ms) RELEASE SAVEPOINT active_record_1
294
+ Processing by ApiFlashcards::TestController#hello as HTML
295
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
296
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
297
+ Completed 200 OK in 21ms (Views: 10.0ms | ActiveRecord: 0.4ms)
298
+  (0.3ms) ROLLBACK
299
+  (0.1ms) BEGIN
300
+ Processing by ApiFlashcards::TestController#hello as HTML
301
+ Filter chain halted as :authenticate rendered or redirected
302
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
303
+  (0.2ms) ROLLBACK
304
+  (0.1ms) BEGIN
305
+  (0.2ms) SAVEPOINT active_record_1
306
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$zy7.UIA.hHrWyx4NlXlWbONczffuaYhAwGcecl7A/Eh3sdeohZmWC"], ["created_at", "2015-12-18 19:21:29.596420"], ["updated_at", "2015-12-18 19:21:29.596420"]]
307
+  (0.2ms) RELEASE SAVEPOINT active_record_1
308
+ Processing by ApiFlashcards::TestController#hello as HTML
309
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
310
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
311
+ Completed 200 OK in 21ms (Views: 10.1ms | ActiveRecord: 0.5ms)
312
+  (0.3ms) ROLLBACK
313
+  (0.2ms) BEGIN
314
+ Processing by ApiFlashcards::TestController#hello as HTML
315
+ Filter chain halted as :authenticate rendered or redirected
316
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
317
+  (0.2ms) ROLLBACK
318
+  (0.2ms) BEGIN
319
+  (0.2ms) SAVEPOINT active_record_1
320
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$05NggxtqmQlpcfR8vbTzt..mSXrGQx0s8oWgVnEb2HHyAeSTkaTHW"], ["created_at", "2015-12-18 19:22:55.515035"], ["updated_at", "2015-12-18 19:22:55.515035"]]
321
+  (0.2ms) RELEASE SAVEPOINT active_record_1
322
+ Processing by ApiFlashcards::TestController#hello as HTML
323
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
324
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
325
+ Completed 200 OK in 21ms (Views: 10.1ms | ActiveRecord: 0.4ms)
326
+  (0.3ms) ROLLBACK
327
+  (0.1ms) BEGIN
328
+ Processing by ApiFlashcards::TestController#hello as HTML
329
+ Filter chain halted as :authenticate rendered or redirected
330
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
331
+  (0.2ms) ROLLBACK
332
+  (0.1ms) BEGIN
333
+  (0.2ms) SAVEPOINT active_record_1
334
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$OQRqEqWuewG.xt6O4BMeeu5bcxvQiAnFLlEJWN022cUQ4gB4SFDBK"], ["created_at", "2015-12-18 19:23:02.057044"], ["updated_at", "2015-12-18 19:23:02.057044"]]
335
+  (0.2ms) RELEASE SAVEPOINT active_record_1
336
+ Processing by ApiFlashcards::TestController#hello as HTML
337
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
338
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
339
+ Completed 200 OK in 21ms (Views: 9.9ms | ActiveRecord: 0.4ms)
340
+  (0.2ms) ROLLBACK
341
+  (0.1ms) BEGIN
342
+ Processing by ApiFlashcards::TestController#hello as HTML
343
+ Filter chain halted as :authenticate rendered or redirected
344
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
345
+  (0.2ms) ROLLBACK
346
+  (0.2ms) BEGIN
347
+  (0.2ms) SAVEPOINT active_record_1
348
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$606CmjXyXYTRTeWINNTu7u76TBda7IRX0ikJDcjZG5iaLkcSOU5ui"], ["created_at", "2015-12-18 19:24:02.967881"], ["updated_at", "2015-12-18 19:24:02.967881"]]
349
+  (0.2ms) RELEASE SAVEPOINT active_record_1
350
+ Processing by ApiFlashcards::TestController#hello as HTML
351
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
352
+  (0.3ms) ROLLBACK
353
+  (0.1ms) BEGIN
354
+ Processing by ApiFlashcards::TestController#hello as HTML
355
+ Filter chain halted as :authenticate rendered or redirected
356
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
357
+  (0.2ms) ROLLBACK
358
+  (0.1ms) BEGIN
359
+  (0.2ms) SAVEPOINT active_record_1
360
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$xQZ5lV7c7O4XZl3dErNk6uT9mXobwixm53Wg/Qwzq60mb6sIoJfsG"], ["created_at", "2015-12-18 19:24:21.053436"], ["updated_at", "2015-12-18 19:24:21.053436"]]
361
+  (0.2ms) RELEASE SAVEPOINT active_record_1
362
+ Processing by ApiFlashcards::TestController#hello as HTML
363
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
364
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
365
+ Completed 200 OK in 21ms (Views: 10.0ms | ActiveRecord: 0.4ms)
366
+  (0.3ms) ROLLBACK
367
+  (0.1ms) BEGIN
368
+ Processing by ApiFlashcards::TestController#hello as HTML
369
+ Filter chain halted as :authenticate rendered or redirected
370
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
371
+  (0.2ms) ROLLBACK
372
+  (0.2ms) BEGIN
373
+  (0.2ms) SAVEPOINT active_record_1
374
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$p8YVygAkl6K6moavRd0M6eCuztKCF.vbG4roej3gmyV1dw4drCYEm"], ["created_at", "2015-12-18 19:25:05.746985"], ["updated_at", "2015-12-18 19:25:05.746985"]]
375
+  (0.2ms) RELEASE SAVEPOINT active_record_1
376
+ Processing by ApiFlashcards::TestController#hello as HTML
377
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
378
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
379
+ Completed 200 OK in 21ms (Views: 9.9ms | ActiveRecord: 0.4ms)
380
+  (0.3ms) ROLLBACK
381
+  (0.1ms) BEGIN
382
+ Processing by ApiFlashcards::TestController#hello as HTML
383
+ Filter chain halted as :authenticate rendered or redirected
384
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
385
+  (0.2ms) ROLLBACK
386
+  (0.2ms) BEGIN
387
+  (0.2ms) SAVEPOINT active_record_1
388
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$LURGK0Zc7GOaaGkekLpzIeoQ7cM9uTK9sA0mNyBgHSpO.roRK/9Ge"], ["created_at", "2015-12-18 19:36:14.070388"], ["updated_at", "2015-12-18 19:36:14.070388"]]
389
+  (0.2ms) RELEASE SAVEPOINT active_record_1
390
+ Processing by ApiFlashcards::TestController#hello as HTML
391
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
392
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
393
+ Completed 200 OK in 21ms (Views: 10.0ms | ActiveRecord: 0.4ms)
394
+  (0.3ms) ROLLBACK
395
+  (0.1ms) BEGIN
396
+ Processing by ApiFlashcards::TestController#hello as HTML
397
+ Filter chain halted as :authenticate rendered or redirected
398
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
399
+  (0.2ms) ROLLBACK
400
+  (0.2ms) BEGIN
401
+  (0.2ms) SAVEPOINT active_record_1
402
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$X893mG/AfziwQO9Vf8MoRuaiYxU6aVVuMk.CcDmv.TpZS3y6jKD3S"], ["created_at", "2015-12-18 19:36:36.062032"], ["updated_at", "2015-12-18 19:36:36.062032"]]
403
+  (0.2ms) RELEASE SAVEPOINT active_record_1
404
+ Processing by ApiFlashcards::TestController#hello as HTML
405
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 LIMIT 1 [["email", "test@te.st"]]
406
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
407
+ Completed 200 OK in 21ms (Views: 10.0ms | ActiveRecord: 0.4ms)
408
+  (0.3ms) ROLLBACK
409
+  (0.1ms) BEGIN
410
+ Processing by ApiFlashcards::TestController#hello as HTML
411
+ Filter chain halted as :authenticate rendered or redirected
412
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
413
+  (0.2ms) ROLLBACK
414
+  (0.2ms) BEGIN
415
+  (0.2ms) SAVEPOINT active_record_1
416
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$RezwUtPSRl1BcCf0Hl5Ir.pFAVDuQWC3xR.NrVGNyIcqBre/.5BAa"], ["created_at", "2015-12-18 19:41:39.719566"], ["updated_at", "2015-12-18 19:41:39.719566"]]
417
+  (0.2ms) RELEASE SAVEPOINT active_record_1
418
+ Processing by ApiFlashcards::TestController#hello as HTML
419
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
420
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
421
+ Completed 200 OK in 22ms (Views: 10.0ms | ActiveRecord: 0.5ms)
422
+  (0.3ms) ROLLBACK
423
+  (0.1ms) BEGIN
424
+ Processing by ApiFlashcards::TestController#hello as HTML
425
+ Filter chain halted as :authenticate rendered or redirected
426
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
427
+  (0.2ms) ROLLBACK
428
+  (0.2ms) BEGIN
429
+  (0.2ms) SAVEPOINT active_record_1
430
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$RtVaWVeTgOCVzBdjCDQFS.Vibu/AOQX6QuzBkLtU/6SaZSvFLs9J2"], ["created_at", "2015-12-18 19:42:39.102904"], ["updated_at", "2015-12-18 19:42:39.102904"]]
431
+  (0.2ms) RELEASE SAVEPOINT active_record_1
432
+ Processing by ApiFlashcards::TestController#hello as HTML
433
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
434
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
435
+ Completed 200 OK in 22ms (Views: 9.9ms | ActiveRecord: 0.4ms)
436
+  (0.3ms) ROLLBACK
437
+  (0.2ms) BEGIN
438
+ Processing by ApiFlashcards::TestController#hello as HTML
439
+ Filter chain halted as :authenticate rendered or redirected
440
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
441
+  (0.3ms) ROLLBACK
442
+  (0.2ms) BEGIN
443
+  (0.3ms) SAVEPOINT active_record_1
444
+ SQL (0.6ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$V4n/W2Xe8s979OClNch0zOfpc5heqm2pQqRLi44kt4vN0inHkZnBm"], ["created_at", "2015-12-18 20:09:55.275766"], ["updated_at", "2015-12-18 20:09:55.275766"]]
445
+  (0.2ms) RELEASE SAVEPOINT active_record_1
446
+ Processing by ApiFlashcards::TestController#hello as HTML
447
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
448
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
449
+ Completed 200 OK in 37ms (Views: 9.9ms | ActiveRecord: 0.6ms)
450
+  (0.3ms) ROLLBACK
451
+  (0.1ms) BEGIN
452
+ Processing by ApiFlashcards::TestController#hello as HTML
453
+ Filter chain halted as :authenticate rendered or redirected
454
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
455
+  (0.2ms) ROLLBACK
456
+  (0.2ms) BEGIN
457
+  (0.2ms) SAVEPOINT active_record_1
458
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$v10nRhr8QA2D.LjoHpdu0eMnsrOB29L9yjXkLa1Nb1kE4OO4eKMwi"], ["created_at", "2015-12-18 20:11:41.916565"], ["updated_at", "2015-12-18 20:11:41.916565"]]
459
+  (0.2ms) RELEASE SAVEPOINT active_record_1
460
+ Processing by ApiFlashcards::TestController#hello as HTML
461
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
462
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
463
+ Completed 200 OK in 22ms (Views: 10.0ms | ActiveRecord: 0.5ms)
464
+  (0.3ms) ROLLBACK
465
+  (0.1ms) BEGIN
466
+ Processing by ApiFlashcards::TestController#hello as HTML
467
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
468
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
469
+  (0.2ms) ROLLBACK
470
+  (0.1ms) BEGIN
471
+  (0.2ms) SAVEPOINT active_record_1
472
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$9aiu/1a.KVodrje5HaZ88OeLZFYQUy0cY2cwa7w1B6SLorQQ0KSPm"], ["created_at", "2015-12-18 20:12:54.803680"], ["updated_at", "2015-12-18 20:12:54.803680"]]
473
+  (0.2ms) RELEASE SAVEPOINT active_record_1
474
+ Processing by ApiFlashcards::TestController#hello as HTML
475
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
476
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
477
+ Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.5ms)
478
+  (0.3ms) ROLLBACK
479
+  (0.1ms) BEGIN
480
+ Processing by ApiFlashcards::TestController#hello as HTML
481
+ Filter chain halted as :authenticate_basic_auth rendered or redirected
482
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
483
+  (0.2ms) ROLLBACK
484
+  (0.2ms) BEGIN
485
+  (0.3ms) SAVEPOINT active_record_1
486
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$K3PYfwuuCeRQ5Lnt80Sf7.N.ieglg32AumnWI5rfdA8oZsLZ35BJy"], ["created_at", "2015-12-18 20:14:55.161308"], ["updated_at", "2015-12-18 20:14:55.161308"]]
487
+  (0.2ms) RELEASE SAVEPOINT active_record_1
488
+ Processing by ApiFlashcards::TestController#hello as HTML
489
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
490
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
491
+ Completed 200 OK in 22ms (Views: 10.0ms | ActiveRecord: 0.5ms)
492
+  (0.3ms) ROLLBACK
493
+  (0.1ms) BEGIN
494
+ Processing by ApiFlashcards::TestController#hello as HTML
495
+ Filter chain halted as :authenticate_basic_auth rendered or redirected
496
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
497
+  (0.2ms) ROLLBACK
498
+  (0.2ms) BEGIN
499
+  (0.2ms) SAVEPOINT active_record_1
500
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$iKko7ylUTjLnpLjQvSA26..2NFWSHm2JMhja52y1OzrLsaD663E0m"], ["created_at", "2015-12-18 20:15:21.695226"], ["updated_at", "2015-12-18 20:15:21.695226"]]
501
+  (0.2ms) RELEASE SAVEPOINT active_record_1
502
+ Processing by ApiFlashcards::TestController#hello as HTML
503
+ User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
504
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
505
+ Completed 200 OK in 23ms (Views: 9.9ms | ActiveRecord: 1.2ms)
506
+  (0.3ms) ROLLBACK
507
+  (0.1ms) BEGIN
508
+ Processing by ApiFlashcards::TestController#hello as HTML
509
+ Filter chain halted as :authenticate_basic rendered or redirected
510
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
511
+  (0.2ms) ROLLBACK
512
+  (0.2ms) BEGIN
513
+  (0.2ms) SAVEPOINT active_record_1
514
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$dHCbUejUazQmGHaGs9ZWCulNTJGyVDLsQHaybu5uidZj/ZMdSIKSW"], ["created_at", "2015-12-18 20:15:59.524068"], ["updated_at", "2015-12-18 20:15:59.524068"]]
515
+  (0.2ms) RELEASE SAVEPOINT active_record_1
516
+ Processing by ApiFlashcards::TestController#hello as HTML
517
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
518
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
519
+ Completed 200 OK in 22ms (Views: 9.9ms | ActiveRecord: 0.5ms)
520
+  (0.3ms) ROLLBACK
521
+  (0.2ms) BEGIN
522
+ Processing by ApiFlashcards::TestController#hello as HTML
523
+ Filter chain halted as :authenticate_basic rendered or redirected
524
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
525
+  (0.3ms) ROLLBACK
526
+  (0.2ms) BEGIN
527
+  (0.3ms) SAVEPOINT active_record_1
528
+ SQL (21.6ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$XwInVRNjkqbroLrNSceQq.Eg.TsyWg385rByTnZQlx7NjfQxgSfoy"], ["created_at", "2015-12-19 13:15:06.818810"], ["updated_at", "2015-12-19 13:15:06.818810"]]
529
+  (0.3ms) RELEASE SAVEPOINT active_record_1
530
+ Processing by ApiFlashcards::TestController#hello as HTML
531
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
532
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
533
+ Completed 200 OK in 124ms (Views: 51.1ms | ActiveRecord: 0.6ms)
534
+  (0.5ms) ROLLBACK
535
+  (0.1ms) BEGIN
536
+ Processing by ApiFlashcards::TestController#hello as HTML
537
+ Filter chain halted as :authenticate_basic rendered or redirected
538
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
539
+  (0.2ms) ROLLBACK
540
+  (0.2ms) BEGIN
541
+  (0.2ms) SAVEPOINT active_record_1
542
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$DzPdBIijUVUF9PohTgorZeBF5C77.FrxoZdUUktjiTxY64CXGH.dK"], ["created_at", "2015-12-19 13:18:12.109965"], ["updated_at", "2015-12-19 13:18:12.109965"]]
543
+  (0.2ms) RELEASE SAVEPOINT active_record_1
544
+ Processing by ApiFlashcards::TestController#hello as HTML
545
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
546
+  (0.3ms) ROLLBACK
547
+  (0.1ms) BEGIN
548
+ Processing by ApiFlashcards::TestController#hello as HTML
549
+ Filter chain halted as :authenticate_basic rendered or redirected
550
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
551
+  (0.2ms) ROLLBACK
552
+  (0.2ms) BEGIN
553
+  (0.2ms) SAVEPOINT active_record_1
554
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$T1aw4gLHy9ty333x2TMNZ.nErslVAWygNmShJKn8S0mpmdinAFmX2"], ["created_at", "2015-12-19 13:24:47.028798"], ["updated_at", "2015-12-19 13:24:47.028798"]]
555
+  (0.2ms) RELEASE SAVEPOINT active_record_1
556
+ Processing by ApiFlashcards::TestController#hello as HTML
557
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
558
+  (0.3ms) ROLLBACK
559
+  (0.2ms) BEGIN
560
+ Processing by ApiFlashcards::TestController#hello as HTML
561
+ Filter chain halted as :authenticate_basic rendered or redirected
562
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
563
+  (0.3ms) ROLLBACK
564
+  (0.2ms) BEGIN
565
+  (0.3ms) SAVEPOINT active_record_1
566
+ SQL (32.8ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$S2H8Z0WJcDTQrqAaJjxHgOTmQv78UGSd32CG6R4Jx.5VHdbkFUCcC"], ["created_at", "2015-12-19 22:45:37.027177"], ["updated_at", "2015-12-19 22:45:37.027177"]]
567
+  (0.3ms) RELEASE SAVEPOINT active_record_1
568
+ Processing by ApiFlashcards::TestController#hello as HTML
569
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
570
+  (0.4ms) ROLLBACK
571
+  (0.1ms) BEGIN
572
+ Processing by ApiFlashcards::TestController#hello as HTML
573
+ Filter chain halted as :authenticate_basic rendered or redirected
574
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
575
+  (0.2ms) ROLLBACK
576
+  (0.1ms) BEGIN
577
+  (0.2ms) SAVEPOINT active_record_1
578
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$BzSHH46le0TJnNlPxMICguFx3ePIdw66p34QoooPr2PUkZTh3c53W"], ["created_at", "2015-12-19 22:45:52.766091"], ["updated_at", "2015-12-19 22:45:52.766091"]]
579
+  (0.2ms) RELEASE SAVEPOINT active_record_1
580
+ Processing by ApiFlashcards::TestController#hello as HTML
581
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
582
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.5ms)
583
+ Completed 200 OK in 90ms (Views: 52.1ms | ActiveRecord: 0.5ms)
584
+  (0.4ms) ROLLBACK
585
+  (0.2ms) BEGIN
586
+ Processing by ApiFlashcards::TestController#hello as HTML
587
+ Filter chain halted as :authenticate_basic rendered or redirected
588
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
589
+  (0.3ms) ROLLBACK
590
+  (0.2ms) BEGIN
591
+  (0.3ms) SAVEPOINT active_record_1
592
+ SQL (0.6ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$LU1hXhkR99XHuSg/tpnDSu55GHU63c9DFuoTmU8t5EQ18hwHVNbX2"], ["created_at", "2015-12-20 08:41:50.263541"], ["updated_at", "2015-12-20 08:41:50.263541"]]
593
+  (0.2ms) RELEASE SAVEPOINT active_record_1
594
+ Processing by ApiFlashcards::TestController#hello as HTML
595
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
596
+  (0.3ms) ROLLBACK
597
+  (0.2ms) BEGIN
598
+ Processing by ApiFlashcards::TestController#hello as HTML
599
+ Filter chain halted as :authenticate_basic rendered or redirected
600
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
601
+  (0.2ms) ROLLBACK
602
+  (0.1ms) BEGIN
603
+  (0.2ms) SAVEPOINT active_record_1
604
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$HU6kp478uRFAwKG/KQeqiukiMlEsB99JIqjz3YKThjy1rTnjPRFoy"], ["created_at", "2015-12-20 08:42:18.511963"], ["updated_at", "2015-12-20 08:42:18.511963"]]
605
+  (0.2ms) RELEASE SAVEPOINT active_record_1
606
+ Processing by ApiFlashcards::TestController#hello as HTML
607
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
608
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.6ms)
609
+ Completed 200 OK in 79ms (Views: 50.1ms | ActiveRecord: 0.5ms)
610
+  (0.4ms) ROLLBACK
611
+  (0.1ms) BEGIN
612
+ Processing by ApiFlashcards::TestController#hello as HTML
613
+ Filter chain halted as :authenticate_basic rendered or redirected
614
+ Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
615
+  (0.4ms) ROLLBACK
616
+  (0.2ms) BEGIN
617
+  (0.2ms) SAVEPOINT active_record_1
618
+ SQL (0.7ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$Iu/AQ8WgCoANu80J34rTxuY8AS1lmNIQy7rB.czfKVHEHXpycxE3K"], ["created_at", "2015-12-20 12:51:54.574697"], ["updated_at", "2015-12-20 12:51:54.574697"]]
619
+  (0.2ms) RELEASE SAVEPOINT active_record_1
620
+ Processing by ApiFlashcards::TestController#hello as HTML
621
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
622
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
623
+ Completed 200 OK in 81ms (Views: 45.0ms | ActiveRecord: 0.6ms)
624
+  (0.3ms) ROLLBACK
625
+  (0.1ms) BEGIN
626
+ Processing by ApiFlashcards::TestController#hello as HTML
627
+ Filter chain halted as :authenticate_basic rendered or redirected
628
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
629
+  (0.2ms) ROLLBACK
630
+  (0.2ms) BEGIN
631
+  (0.2ms) SAVEPOINT active_record_1
632
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$6BN0zIq/D1m3fQFAbPzmcOj3U1vqeBmUO4xRCf.KLctUfCmFM4q8K"], ["created_at", "2015-12-20 12:52:51.694776"], ["updated_at", "2015-12-20 12:52:51.694776"]]
633
+  (0.2ms) RELEASE SAVEPOINT active_record_1
634
+ Processing by ApiFlashcards::TestController#hello as HTML
635
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
636
+ Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.5ms)
637
+  (0.3ms) ROLLBACK
638
+  (0.1ms) BEGIN
639
+ Processing by ApiFlashcards::TestController#hello as HTML
640
+ Filter chain halted as :authenticate_basic rendered or redirected
641
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
642
+  (0.2ms) ROLLBACK
643
+  (0.2ms) BEGIN
644
+  (0.2ms) SAVEPOINT active_record_1
645
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$rQsM6M09UqKyYMzjbalEIOBPgCRLTSXTZHmlhoBG5HvgOQULdlcGm"], ["created_at", "2015-12-20 13:54:37.015546"], ["updated_at", "2015-12-20 13:54:37.015546"]]
646
+  (0.2ms) RELEASE SAVEPOINT active_record_1
647
+ Processing by ApiFlashcards::TestController#hello as HTML
648
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
649
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
650
+ Completed 200 OK in 22ms (Views: 9.9ms | ActiveRecord: 0.5ms)
651
+  (0.3ms) ROLLBACK
652
+  (0.2ms) BEGIN
653
+ Processing by ApiFlashcards::TestController#hello as HTML
654
+ Filter chain halted as :authenticate_basic rendered or redirected
655
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
656
+  (0.3ms) ROLLBACK
657
+  (0.2ms) BEGIN
658
+  (0.3ms) SAVEPOINT active_record_1
659
+ SQL (44.2ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$t/prtzWrS3KPXl0Wo0Mar.fEQNNpe26ilc6Cze/xA.DcwkzdVQxDq"], ["created_at", "2015-12-28 12:20:24.765984"], ["updated_at", "2015-12-28 12:20:24.765984"]]
660
+  (0.3ms) RELEASE SAVEPOINT active_record_1
661
+ Processing by ApiFlashcards::TestController#hello as HTML
662
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
663
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
664
+ Completed 200 OK in 125ms (Views: 62.5ms | ActiveRecord: 0.6ms)
665
+  (0.4ms) ROLLBACK
666
+  (0.1ms) BEGIN
667
+ Processing by ApiFlashcards::TestController#hello as HTML
668
+ Filter chain halted as :authenticate_basic rendered or redirected
669
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
670
+  (0.9ms) ROLLBACK
671
+  (0.1ms) BEGIN
672
+  (0.2ms) SAVEPOINT active_record_1
673
+ SQL (0.6ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$4yKCQ6mwe5MNPUhsMDOG.eDwR4kQ61eB3L/tvJ2.sR0R/Pqi88BaS"], ["created_at", "2015-12-28 12:25:54.132215"], ["updated_at", "2015-12-28 12:25:54.132215"]]
674
+  (0.2ms) RELEASE SAVEPOINT active_record_1
675
+ Processing by ApiFlashcards::TestController#hello as HTML
676
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
677
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.4ms)
678
+ Completed 200 OK in 23ms (Views: 10.5ms | ActiveRecord: 0.5ms)
679
+  (0.3ms) ROLLBACK
680
+  (0.1ms) BEGIN
681
+ Processing by ApiFlashcards::TestController#hello as HTML
682
+ Filter chain halted as :authenticate_basic rendered or redirected
683
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
684
+  (0.2ms) ROLLBACK
685
+  (0.1ms) BEGIN
686
+  (0.2ms) SAVEPOINT active_record_1
687
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$aI7UB7JnDkh4abVP4pWhOeKhArpKbEh9qDI9sCDJssLX4W8qr57rW"], ["created_at", "2015-12-28 13:05:57.221767"], ["updated_at", "2015-12-28 13:05:57.221767"]]
688
+  (0.2ms) RELEASE SAVEPOINT active_record_1
689
+ Processing by ApiFlashcards::TestController#hello as HTML
690
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
691
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
692
+ Completed 200 OK in 22ms (Views: 10.1ms | ActiveRecord: 0.4ms)
693
+  (0.3ms) ROLLBACK
694
+  (0.1ms) BEGIN
695
+ Processing by ApiFlashcards::TestController#hello as HTML
696
+ Filter chain halted as :authenticate_basic rendered or redirected
697
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
698
+  (0.2ms) ROLLBACK
699
+  (0.1ms) BEGIN
700
+  (0.2ms) SAVEPOINT active_record_1
701
+ SQL (0.6ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$27R3zbeeprFMFahf2GsHCe49qjiwj.kC/idM5n0IsSTibR1kst1Ke"], ["created_at", "2015-12-28 13:06:50.823231"], ["updated_at", "2015-12-28 13:06:50.823231"]]
702
+  (0.2ms) RELEASE SAVEPOINT active_record_1
703
+ Processing by ApiFlashcards::TestController#hello as HTML
704
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
705
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
706
+ Completed 200 OK in 22ms (Views: 9.9ms | ActiveRecord: 0.4ms)
707
+  (0.3ms) ROLLBACK
708
+  (0.1ms) BEGIN
709
+ Processing by ApiFlashcards::TestController#hello as HTML
710
+ Filter chain halted as :authenticate_basic rendered or redirected
711
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
712
+  (0.2ms) ROLLBACK
713
+  (0.1ms) BEGIN
714
+  (0.2ms) SAVEPOINT active_record_1
715
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$gXk5QitEPoIB609WNBgpHeQYE8/0FjpCTRWj3hEOzzokyEGi62vVq"], ["created_at", "2015-12-28 13:07:23.457286"], ["updated_at", "2015-12-28 13:07:23.457286"]]
716
+  (0.2ms) RELEASE SAVEPOINT active_record_1
717
+ Processing by ApiFlashcards::TestController#hello as HTML
718
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
719
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
720
+ Completed 200 OK in 22ms (Views: 9.9ms | ActiveRecord: 0.4ms)
721
+  (0.3ms) ROLLBACK
722
+  (0.1ms) BEGIN
723
+ Processing by ApiFlashcards::TestController#hello as HTML
724
+ Filter chain halted as :authenticate_basic rendered or redirected
725
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
726
+  (0.2ms) ROLLBACK
727
+  (0.1ms) BEGIN
728
+  (0.3ms) SAVEPOINT active_record_1
729
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$/BkdMZcZc7aYpwJzJtEU4.qFA9tjL.rHhr2OfJmf7I74J7GJ3evDe"], ["created_at", "2015-12-28 13:07:41.549039"], ["updated_at", "2015-12-28 13:07:41.549039"]]
730
+  (0.2ms) RELEASE SAVEPOINT active_record_1
731
+ Processing by ApiFlashcards::TestController#hello as HTML
732
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
733
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
734
+ Completed 200 OK in 22ms (Views: 10.0ms | ActiveRecord: 0.4ms)
735
+  (0.3ms) ROLLBACK
736
+  (0.1ms) BEGIN
737
+ Processing by ApiFlashcards::TestController#hello as HTML
738
+ Filter chain halted as :authenticate_basic rendered or redirected
739
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
740
+  (0.2ms) ROLLBACK
741
+  (0.1ms) BEGIN
742
+  (0.2ms) SAVEPOINT active_record_1
743
+ SQL (0.5ms) INSERT INTO "users" ("email", "password_digest", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "test@te.st"], ["password_digest", "$2a$04$AosrvHAZwD5X8FYNtcNhwucdTlBPmgoooZXsf/v1fRAgrYLDpVsl6"], ["created_at", "2015-12-28 13:07:57.812792"], ["updated_at", "2015-12-28 13:07:57.812792"]]
744
+  (0.2ms) RELEASE SAVEPOINT active_record_1
745
+ Processing by ApiFlashcards::TestController#hello as HTML
746
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT 1 [["email", "test@te.st"]]
747
+ Rendered /home/agro/api_flashcards/app/views/api_flashcards/test/hello.html.erb within layouts/api_flashcards/application (0.3ms)
748
+ Completed 200 OK in 22ms (Views: 9.9ms | ActiveRecord: 0.4ms)
749
+  (0.3ms) ROLLBACK