json_voorhees 0.0.1

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 (210) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +75 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/json_voorhees/application.js +13 -0
  6. data/app/assets/stylesheets/json_voorhees/application.css +15 -0
  7. data/app/controllers/json_voorhees/application_controller.rb +4 -0
  8. data/app/helpers/json_voorhees/application_helper.rb +4 -0
  9. data/app/views/layouts/json_voorhees/application.html.erb +14 -0
  10. data/config/routes.rb +2 -0
  11. data/lib/generators/json_voorhees/app_make_authorizations/USAGE +10 -0
  12. data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +39 -0
  13. data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +51 -0
  14. data/lib/generators/json_voorhees/app_make_tests/USAGE +9 -0
  15. data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +51 -0
  16. data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +9 -0
  17. data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +30 -0
  18. data/lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb +102 -0
  19. data/lib/generators/json_voorhees/app_make_tests/templates/routing.rb.erb +47 -0
  20. data/lib/generators/json_voorhees/engine_create_controller/USAGE +12 -0
  21. data/lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb +40 -0
  22. data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +98 -0
  23. data/lib/generators/json_voorhees/engine_create_controller/templates/no_auth_controller_template.rb.erb +61 -0
  24. data/lib/generators/json_voorhees/engine_create_serializer/USAGE +9 -0
  25. data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +34 -0
  26. data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +23 -0
  27. data/lib/generators/json_voorhees/setup_app/USAGE +9 -0
  28. data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +207 -0
  29. data/lib/generators/json_voorhees/setup_app/templates/api_controller_no_arcadex.rb +2 -0
  30. data/lib/generators/json_voorhees/setup_app/templates/api_controller_with_arcadex.rb +26 -0
  31. data/lib/generators/json_voorhees/setup_app/templates/app_index_controller.rb +4 -0
  32. data/lib/generators/json_voorhees/setup_app/templates/hidden_rspec.rb +3 -0
  33. data/lib/generators/json_voorhees/setup_app/templates/json_helpers.rb +7 -0
  34. data/lib/generators/json_voorhees/setup_app/templates/rspec_factory_girl.rb +16 -0
  35. data/lib/generators/json_voorhees/setup_app/templates/user/include_authorization.rb +3 -0
  36. data/lib/generators/json_voorhees/setup_app/templates/user/specs/factory_girl.rb +14 -0
  37. data/lib/generators/json_voorhees/setup_app/templates/user/specs/model_specs.rb +59 -0
  38. data/lib/generators/json_voorhees/setup_app/templates/user/specs/request_specs.rb +154 -0
  39. data/lib/generators/json_voorhees/setup_app/templates/user/specs/route_specs.rb +77 -0
  40. data/lib/generators/json_voorhees/setup_app/templates/user/user_authorizations.rb +82 -0
  41. data/lib/generators/json_voorhees/setup_app/templates/user/user_controller.rb +124 -0
  42. data/lib/generators/json_voorhees/setup_app/templates/user/user_model.rb +26 -0
  43. data/lib/generators/json_voorhees/setup_app/templates/user/user_routes.rb +24 -0
  44. data/lib/generators/json_voorhees/setup_app/templates/user/user_serializer.rb +39 -0
  45. data/lib/generators/json_voorhees/setup_app/templates/views/admin_no_user +6 -0
  46. data/lib/generators/json_voorhees/setup_app/templates/views/admin_with_user +9 -0
  47. data/lib/generators/json_voorhees/setup_app/templates/views/app +0 -0
  48. data/lib/generators/json_voorhees/setup_app/templates/views/app_index +9 -0
  49. data/lib/generators/json_voorhees/setup_app/templates/views/application +19 -0
  50. data/lib/generators/json_voorhees/setup_engine/USAGE +8 -0
  51. data/lib/generators/json_voorhees/setup_engine/setup_engine_generator.rb +81 -0
  52. data/lib/generators/json_voorhees/setup_engine/templates/api_controller.rb.erb +5 -0
  53. data/lib/generators/json_voorhees/setup_engine/templates/application_controller.rb.erb +4 -0
  54. data/lib/json_voorhees/engine.rb +5 -0
  55. data/lib/json_voorhees/version.rb +3 -0
  56. data/lib/json_voorhees.rb +4 -0
  57. data/lib/tasks/json_voorhees_tasks.rake +4 -0
  58. data/test/dummy/README.rdoc +28 -0
  59. data/test/dummy/Rakefile +6 -0
  60. data/test/dummy/app/assets/javascripts/application.js +13 -0
  61. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  62. data/test/dummy/app/controllers/application_controller.rb +5 -0
  63. data/test/dummy/app/helpers/application_helper.rb +2 -0
  64. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  65. data/test/dummy/bin/bundle +3 -0
  66. data/test/dummy/bin/rails +4 -0
  67. data/test/dummy/bin/rake +4 -0
  68. data/test/dummy/config/application.rb +23 -0
  69. data/test/dummy/config/boot.rb +5 -0
  70. data/test/dummy/config/database.yml +25 -0
  71. data/test/dummy/config/environment.rb +5 -0
  72. data/test/dummy/config/environments/development.rb +37 -0
  73. data/test/dummy/config/environments/production.rb +82 -0
  74. data/test/dummy/config/environments/test.rb +39 -0
  75. data/test/dummy/config/initializers/assets.rb +8 -0
  76. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  77. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  78. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  79. data/test/dummy/config/initializers/inflections.rb +16 -0
  80. data/test/dummy/config/initializers/mime_types.rb +4 -0
  81. data/test/dummy/config/initializers/session_store.rb +3 -0
  82. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  83. data/test/dummy/config/locales/en.yml +23 -0
  84. data/test/dummy/config/routes.rb +4 -0
  85. data/test/dummy/config/secrets.yml +22 -0
  86. data/test/dummy/config.ru +4 -0
  87. data/test/dummy/log/development.log +0 -0
  88. data/test/dummy/public/404.html +67 -0
  89. data/test/dummy/public/422.html +67 -0
  90. data/test/dummy/public/500.html +66 -0
  91. data/test/dummy/public/favicon.ico +0 -0
  92. data/test/integration/navigation_test.rb +10 -0
  93. data/test/json_voorhees_test.rb +7 -0
  94. data/test/lib/generators/json_voorhees/engine_serializer_generator_test.rb +16 -0
  95. data/test/test_app/Gemfile +42 -0
  96. data/test/test_app/Gemfile.lock +132 -0
  97. data/test/test_app/README.rdoc +28 -0
  98. data/test/test_app/Rakefile +6 -0
  99. data/test/test_app/app/assets/javascripts/application.js +16 -0
  100. data/test/test_app/app/assets/stylesheets/application.css +15 -0
  101. data/test/test_app/app/controllers/application_controller.rb +5 -0
  102. data/test/test_app/app/helpers/application_helper.rb +2 -0
  103. data/test/test_app/app/views/layouts/application.html.erb +14 -0
  104. data/test/test_app/bin/bundle +3 -0
  105. data/test/test_app/bin/rails +8 -0
  106. data/test/test_app/bin/rake +8 -0
  107. data/test/test_app/bin/spring +18 -0
  108. data/test/test_app/config/application.rb +23 -0
  109. data/test/test_app/config/boot.rb +4 -0
  110. data/test/test_app/config/database.yml +25 -0
  111. data/test/test_app/config/environment.rb +5 -0
  112. data/test/test_app/config/environments/development.rb +37 -0
  113. data/test/test_app/config/environments/production.rb +82 -0
  114. data/test/test_app/config/environments/test.rb +39 -0
  115. data/test/test_app/config/initializers/assets.rb +8 -0
  116. data/test/test_app/config/initializers/backtrace_silencers.rb +7 -0
  117. data/test/test_app/config/initializers/cookies_serializer.rb +3 -0
  118. data/test/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  119. data/test/test_app/config/initializers/inflections.rb +16 -0
  120. data/test/test_app/config/initializers/mime_types.rb +4 -0
  121. data/test/test_app/config/initializers/session_store.rb +3 -0
  122. data/test/test_app/config/initializers/wrap_parameters.rb +14 -0
  123. data/test/test_app/config/locales/en.yml +23 -0
  124. data/test/test_app/config/routes.rb +56 -0
  125. data/test/test_app/config/secrets.yml +22 -0
  126. data/test/test_app/config.ru +4 -0
  127. data/test/test_app/db/development.sqlite3 +0 -0
  128. data/test/test_app/db/schema.rb +16 -0
  129. data/test/test_app/db/seeds.rb +7 -0
  130. data/test/test_app/log/development.log +1517 -0
  131. data/test/test_app/log/production.log +68 -0
  132. data/test/test_app/log/test.log +10482 -0
  133. data/test/test_app/public/404.html +67 -0
  134. data/test/test_app/public/422.html +67 -0
  135. data/test/test_app/public/500.html +66 -0
  136. data/test/test_app/public/favicon.ico +0 -0
  137. data/test/test_app/public/robots.txt +5 -0
  138. data/test/test_app/test/test_helper.rb +10 -0
  139. data/test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e +0 -0
  140. data/test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  141. data/test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59 +0 -0
  142. data/test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  143. data/test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  144. data/test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5 +0 -0
  145. data/test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b +0 -0
  146. data/test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a +0 -0
  147. data/test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f +0 -0
  148. data/test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6 +0 -0
  149. data/test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365 +0 -0
  150. data/test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d +0 -0
  151. data/test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  152. data/test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  153. data/test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  154. data/test/test_engine/Gemfile +17 -0
  155. data/test/test_engine/Gemfile.lock +128 -0
  156. data/test/test_engine/MIT-LICENSE +20 -0
  157. data/test/test_engine/README.md +1 -0
  158. data/test/test_engine/Rakefile +34 -0
  159. data/test/test_engine/app/assets/javascripts/test_engine/application.js +13 -0
  160. data/test/test_engine/app/assets/stylesheets/test_engine/application.css +15 -0
  161. data/test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb +5 -0
  162. data/test/test_engine/app/controllers/test_engine/application_controller.rb +4 -0
  163. data/test/test_engine/app/helpers/test_engine/application_helper.rb +4 -0
  164. data/test/test_engine/app/views/layouts/test_engine/default/application.html.erb +14 -0
  165. data/test/test_engine/bin/rails +12 -0
  166. data/test/test_engine/config/routes.rb +23 -0
  167. data/test/test_engine/lib/tasks/test_engine_tasks.rake +4 -0
  168. data/test/test_engine/lib/test_engine/engine.rb +5 -0
  169. data/test/test_engine/lib/test_engine/version.rb +3 -0
  170. data/test/test_engine/lib/test_engine.rb +4 -0
  171. data/test/test_engine/test/dummy/README.rdoc +28 -0
  172. data/test/test_engine/test/dummy/Rakefile +6 -0
  173. data/test/test_engine/test/dummy/app/assets/javascripts/application.js +13 -0
  174. data/test/test_engine/test/dummy/app/assets/stylesheets/application.css +15 -0
  175. data/test/test_engine/test/dummy/app/controllers/application_controller.rb +5 -0
  176. data/test/test_engine/test/dummy/app/helpers/application_helper.rb +2 -0
  177. data/test/test_engine/test/dummy/app/views/layouts/application.html.erb +14 -0
  178. data/test/test_engine/test/dummy/bin/bundle +3 -0
  179. data/test/test_engine/test/dummy/bin/rails +4 -0
  180. data/test/test_engine/test/dummy/bin/rake +4 -0
  181. data/test/test_engine/test/dummy/config/application.rb +23 -0
  182. data/test/test_engine/test/dummy/config/boot.rb +5 -0
  183. data/test/test_engine/test/dummy/config/database.yml +25 -0
  184. data/test/test_engine/test/dummy/config/environment.rb +5 -0
  185. data/test/test_engine/test/dummy/config/environments/development.rb +37 -0
  186. data/test/test_engine/test/dummy/config/environments/production.rb +82 -0
  187. data/test/test_engine/test/dummy/config/environments/test.rb +39 -0
  188. data/test/test_engine/test/dummy/config/initializers/assets.rb +8 -0
  189. data/test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  190. data/test/test_engine/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  191. data/test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  192. data/test/test_engine/test/dummy/config/initializers/inflections.rb +16 -0
  193. data/test/test_engine/test/dummy/config/initializers/mime_types.rb +4 -0
  194. data/test/test_engine/test/dummy/config/initializers/session_store.rb +3 -0
  195. data/test/test_engine/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  196. data/test/test_engine/test/dummy/config/locales/en.yml +23 -0
  197. data/test/test_engine/test/dummy/config/routes.rb +4 -0
  198. data/test/test_engine/test/dummy/config/secrets.yml +22 -0
  199. data/test/test_engine/test/dummy/config.ru +4 -0
  200. data/test/test_engine/test/dummy/log/development.log +0 -0
  201. data/test/test_engine/test/dummy/public/404.html +67 -0
  202. data/test/test_engine/test/dummy/public/422.html +67 -0
  203. data/test/test_engine/test/dummy/public/500.html +66 -0
  204. data/test/test_engine/test/dummy/public/favicon.ico +0 -0
  205. data/test/test_engine/test/integration/navigation_test.rb +10 -0
  206. data/test/test_engine/test/test_engine_test.rb +7 -0
  207. data/test/test_engine/test/test_helper.rb +15 -0
  208. data/test/test_engine/test_engine.gemspec +31 -0
  209. data/test/test_helper.rb +15 -0
  210. metadata +434 -0
@@ -0,0 +1,1517 @@
1
+  (426.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (0.3ms) select sqlite_version(*)
3
+  (120.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreatePeopleUsers (20140903225832)
6
+  (0.3ms) begin transaction
7
+  (1.5ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903225832"]]
9
+  (100.6ms) commit transaction
10
+ Migrating to CreateArcadexTokens (20140903225833)
11
+  (0.2ms) begin transaction
12
+  (0.9ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
13
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903225833"]]
14
+  (136.5ms) commit transaction
15
+ Migrating to AddIndexToToken (20140903225834)
16
+  (0.1ms) begin transaction
17
+  (0.6ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
18
+ SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903225834"]]
19
+  (94.9ms) commit transaction
20
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+  (0.2ms) SELECT sql
22
+ FROM sqlite_master
23
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
24
+ UNION ALL
25
+ SELECT sql
26
+ FROM sqlite_temp_master
27
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
28
+
29
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+ Migrating to CreatePeopleUsers (20140903232410)
31
+  (0.1ms) begin transaction
32
+  (0.5ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime) 
33
+ SQLite3::SQLException: table "people_users" already exists: CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
34
+  (0.1ms) rollback transaction
35
+  (125.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
36
+  (0.2ms) select sqlite_version(*)
37
+  (99.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+ Migrating to CreatePeopleUsers (20140903233321)
40
+  (0.3ms) begin transaction
41
+  (0.7ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
42
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903233321"]]
43
+  (125.1ms) commit transaction
44
+ Migrating to CreateArcadexTokens (20140903233322)
45
+  (0.2ms) begin transaction
46
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
47
+ SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903233322"]]
48
+  (146.5ms) commit transaction
49
+ Migrating to AddIndexToToken (20140903233323)
50
+  (0.2ms) begin transaction
51
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
52
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903233323"]]
53
+  (147.5ms) commit transaction
54
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
+  (0.2ms) SELECT sql
56
+ FROM sqlite_master
57
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
58
+ UNION ALL
59
+ SELECT sql
60
+ FROM sqlite_temp_master
61
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
62
+
63
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
64
+  (0.2ms) SELECT sql
65
+ FROM sqlite_master
66
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
67
+ UNION ALL
68
+ SELECT sql
69
+ FROM sqlite_temp_master
70
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
71
+
72
+  (130.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
73
+  (0.3ms) select sqlite_version(*)
74
+  (120.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
+ Migrating to CreatePeopleUsers (20140903234520)
77
+  (0.3ms) begin transaction
78
+  (1.6ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
79
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903234520"]]
80
+  (144.8ms) commit transaction
81
+ Migrating to CreateArcadexTokens (20140903234521)
82
+  (0.2ms) begin transaction
83
+  (1.5ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
84
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903234521"]]
85
+  (126.0ms) commit transaction
86
+ Migrating to AddIndexToToken (20140903234522)
87
+  (0.1ms) begin transaction
88
+  (1.0ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
89
+ SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903234522"]]
90
+  (126.0ms) commit transaction
91
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
92
+  (0.2ms) SELECT sql
93
+ FROM sqlite_master
94
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
95
+ UNION ALL
96
+ SELECT sql
97
+ FROM sqlite_temp_master
98
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
99
+
100
+  (140.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
101
+  (0.1ms) select sqlite_version(*)
102
+  (143.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
103
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
104
+ Migrating to CreatePeopleUsers (20140903235736)
105
+  (0.2ms) begin transaction
106
+  (1.6ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
107
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903235736"]]
108
+  (101.7ms) commit transaction
109
+ Migrating to CreateArcadexTokens (20140903235737)
110
+  (0.2ms) begin transaction
111
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
112
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903235737"]]
113
+  (101.9ms) commit transaction
114
+ Migrating to AddIndexToToken (20140903235738)
115
+  (0.2ms) begin transaction
116
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
117
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140903235738"]]
118
+  (136.2ms) commit transaction
119
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
120
+  (0.2ms) SELECT sql
121
+ FROM sqlite_master
122
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
123
+ UNION ALL
124
+ SELECT sql
125
+ FROM sqlite_temp_master
126
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
127
+
128
+
129
+
130
+ Started GET "/" for 127.0.0.1 at 2014-09-03 19:59:06 -0400
131
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
132
+ Processing by AppIndexController#app as HTML
133
+ Completed 500 Internal Server Error in 111ms
134
+
135
+ ActionView::MissingTemplate - Missing template app_index/app, application/app with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :jbuilder, :coffee]}. Searched in:
136
+ * "/home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/test_app/app/views"
137
+ * "/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/arcadex-1.0.4/app/views"
138
+ * "/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/devise-3.2.4/app/views"
139
+ * "/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/kaminari-0.16.1/app/views"
140
+ * "/home/cleo/.rvm/gems/ruby-2.0.0-p451/bundler/gems/json_voorhees-c61668841ddf/app/views"
141
+ * "/home/cleo/Documents/Code/PersonalProjects/RubyRails/GemsEnginesTemplates/Engines/test_app/engines/people/app/views"
142
+ :
143
+ actionview (4.1.5) lib/action_view/path_set.rb:46:in `find'
144
+ actionview (4.1.5) lib/action_view/lookup_context.rb:124:in `find'
145
+ actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
146
+ actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
147
+ actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:8:in `render'
148
+ actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template'
149
+ actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render'
150
+ actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template'
151
+ actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template'
152
+ actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body'
153
+ actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
154
+ actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
155
+ actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render'
156
+ actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render'
157
+ actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
158
+ activesupport (4.1.5) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
159
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
160
+ activesupport (4.1.5) lib/active_support/core_ext/benchmark.rb:12:in `ms'
161
+ actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
162
+ actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
163
+ activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
164
+ actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render'
165
+ actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
166
+ actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
167
+ actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action'
168
+ actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
169
+ actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
170
+ activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call'
171
+ activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting'
172
+ activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting'
173
+ activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting'
174
+ activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting'
175
+ activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting'
176
+ activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks'
177
+ actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action'
178
+ actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
179
+ actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
180
+ activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument'
181
+ activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
182
+ activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument'
183
+ actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
184
+ actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
185
+ activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
186
+ actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process'
187
+ actionview (4.1.5) lib/action_view/rendering.rb:30:in `process'
188
+ actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch'
189
+ actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
190
+ actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action'
191
+ actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
192
+ actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call'
193
+ actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
194
+ actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call'
195
+ actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678:in `call'
196
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
197
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
198
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
199
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
200
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
201
+ actionpack (4.1.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
202
+ actionpack (4.1.5) lib/action_dispatch/middleware/flash.rb:254:in `call'
203
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
204
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
205
+ actionpack (4.1.5) lib/action_dispatch/middleware/cookies.rb:560:in `call'
206
+ activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call'
207
+ activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
208
+ activerecord (4.1.5) lib/active_record/migration.rb:380:in `call'
209
+ actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
210
+ activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks'
211
+ actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
212
+ actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
213
+ actionpack (4.1.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
214
+ better_errors (1.1.0) lib/better_errors/middleware.rb:84:in `protected_app_call'
215
+ better_errors (1.1.0) lib/better_errors/middleware.rb:79:in `better_errors_call'
216
+ better_errors (1.1.0) lib/better_errors/middleware.rb:56:in `call'
217
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
218
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
219
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
220
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
221
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
222
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
223
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
224
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
225
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
226
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
227
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
228
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
229
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
230
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
231
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
232
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
233
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
234
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
235
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
236
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
237
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
238
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
239
+
240
+
241
+
242
+ Started POST "/__better_errors/48709940/variables" for 127.0.0.1 at 2014-09-03 19:59:06 -0400
243
+  (258.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
244
+  (0.3ms) select sqlite_version(*)
245
+  (142.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
246
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
247
+ Migrating to CreatePeopleUsers (20140904011523)
248
+  (0.2ms) begin transaction
249
+  (1.3ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
250
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904011523"]]
251
+  (143.2ms) commit transaction
252
+ Migrating to CreateArcadexTokens (20140904011524)
253
+  (0.2ms) begin transaction
254
+  (1.3ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
255
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904011524"]]
256
+  (136.7ms) commit transaction
257
+ Migrating to AddIndexToToken (20140904011525)
258
+  (0.2ms) begin transaction
259
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
260
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904011525"]]
261
+  (125.6ms) commit transaction
262
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
263
+  (0.1ms) SELECT sql
264
+ FROM sqlite_master
265
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
266
+ UNION ALL
267
+ SELECT sql
268
+ FROM sqlite_temp_master
269
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
270
+
271
+  (143.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
272
+  (0.3ms) select sqlite_version(*)
273
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
274
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
275
+ Migrating to CreatePeopleUsers (20140904011800)
276
+  (0.1ms) begin transaction
277
+  (0.7ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
278
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904011800"]]
279
+  (144.3ms) commit transaction
280
+ Migrating to CreateArcadexTokens (20140904011801)
281
+  (0.2ms) begin transaction
282
+  (1.0ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
283
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904011801"]]
284
+  (136.8ms) commit transaction
285
+ Migrating to AddIndexToToken (20140904011802)
286
+  (0.2ms) begin transaction
287
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
288
+ SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904011802"]]
289
+  (124.4ms) commit transaction
290
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
291
+  (0.4ms) SELECT sql
292
+ FROM sqlite_master
293
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
294
+ UNION ALL
295
+ SELECT sql
296
+ FROM sqlite_temp_master
297
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
298
+
299
+  (231.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
300
+  (0.3ms) select sqlite_version(*)
301
+  (142.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
302
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
303
+ Migrating to CreatePeopleUsers (20140904012614)
304
+  (0.2ms) begin transaction
305
+  (0.6ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
306
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904012614"]]
307
+  (172.0ms) commit transaction
308
+ Migrating to CreateArcadexTokens (20140904012615)
309
+  (0.1ms) begin transaction
310
+  (0.6ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
311
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904012615"]]
312
+  (185.2ms) commit transaction
313
+ Migrating to AddIndexToToken (20140904012616)
314
+  (0.2ms) begin transaction
315
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
316
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904012616"]]
317
+  (246.8ms) commit transaction
318
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
319
+  (0.1ms) SELECT sql
320
+ FROM sqlite_master
321
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
322
+ UNION ALL
323
+ SELECT sql
324
+ FROM sqlite_temp_master
325
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
326
+
327
+
328
+
329
+ Started GET "/" for 127.0.0.1 at 2014-09-03 21:27:03 -0400
330
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
331
+ Processing by AppIndexController#app as HTML
332
+ Rendered app_index/app.html.erb within layouts/app_index (22.6ms)
333
+ Completed 200 OK in 81ms (Views: 70.5ms | ActiveRecord: 0.0ms)
334
+
335
+
336
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:27:06 -0400
337
+ Processing by MainController#admin as HTML
338
+ Rendered main/admin.html.erb within layouts/application (6.4ms)
339
+ Completed 200 OK in 912ms (Views: 911.5ms | ActiveRecord: 0.0ms)
340
+
341
+
342
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-03 21:27:07 -0400
343
+
344
+
345
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-03 21:27:07 -0400
346
+
347
+
348
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-03 21:27:07 -0400
349
+
350
+
351
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-03 21:27:07 -0400
352
+
353
+
354
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-03 21:27:07 -0400
355
+
356
+
357
+ Started GET "/admin/tokens" for 127.0.0.1 at 2014-09-03 21:27:10 -0400
358
+ Processing by Arcadex::TokensController#index as HTML
359
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens"
360
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/arcadex-1.0.4/app/views/arcadex/tokens/index.html.erb within layouts/application (2.3ms)
361
+ Completed 200 OK in 112ms (Views: 105.2ms | ActiveRecord: 0.2ms)
362
+
363
+
364
+ Started GET "/assets/favicon.ico" for 127.0.0.1 at 2014-09-03 21:27:10 -0400
365
+
366
+ ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"):
367
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
368
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
369
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
370
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
371
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
372
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
373
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
374
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
375
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
376
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
377
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
378
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
379
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
380
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
381
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
382
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
383
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
384
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
385
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
386
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
387
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
388
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
389
+
390
+
391
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
392
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
393
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
394
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
395
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (66.4ms)
396
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.4ms)
397
+
398
+
399
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-03 21:27:12 -0400
400
+ Processing by People::UsersController#index as HTML
401
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
402
+ Rendered engines/people/app/views/people/users/index.html.erb (2.2ms)
403
+ Completed 200 OK in 16ms (Views: 12.9ms | ActiveRecord: 0.2ms)
404
+
405
+
406
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-03 21:27:13 -0400
407
+ Processing by People::UsersController#index as HTML
408
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
409
+ Rendered engines/people/app/views/people/users/index.html.erb (2.0ms)
410
+ Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.2ms)
411
+
412
+
413
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-03 21:27:16 -0400
414
+ Processing by People::UsersController#index as HTML
415
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
416
+ Rendered engines/people/app/views/people/users/index.html.erb (1.1ms)
417
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.2ms)
418
+
419
+
420
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-03 21:27:16 -0400
421
+ Processing by People::UsersController#index as HTML
422
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
423
+ Rendered engines/people/app/views/people/users/index.html.erb (1.0ms)
424
+ Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.2ms)
425
+
426
+
427
+ Started GET "/admin/tokens" for 127.0.0.1 at 2014-09-03 21:27:19 -0400
428
+ Processing by Arcadex::TokensController#index as HTML
429
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens"
430
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/arcadex-1.0.4/app/views/arcadex/tokens/index.html.erb within layouts/application (1.0ms)
431
+ Completed 200 OK in 56ms (Views: 54.5ms | ActiveRecord: 0.2ms)
432
+
433
+
434
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:27:21 -0400
435
+ Processing by MainController#admin as HTML
436
+ Rendered main/admin.html.erb within layouts/application (1.1ms)
437
+ Completed 200 OK in 108ms (Views: 107.3ms | ActiveRecord: 0.0ms)
438
+
439
+
440
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:27:22 -0400
441
+ Processing by MainController#admin as HTML
442
+ Rendered main/admin.html.erb within layouts/application (0.6ms)
443
+ Completed 200 OK in 55ms (Views: 54.0ms | ActiveRecord: 0.0ms)
444
+
445
+
446
+ Started GET "/" for 127.0.0.1 at 2014-09-03 21:27:31 -0400
447
+ Processing by AppIndexController#app as HTML
448
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
449
+ Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.0ms)
450
+  (119.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
451
+  (0.3ms) select sqlite_version(*)
452
+  (131.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
453
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
454
+ Migrating to CreatePeopleUsers (20140904013305)
455
+  (0.2ms) begin transaction
456
+  (0.9ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
457
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904013305"]]
458
+  (135.5ms) commit transaction
459
+ Migrating to CreateArcadexTokens (20140904013306)
460
+  (0.2ms) begin transaction
461
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
462
+ SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904013306"]]
463
+  (196.2ms) commit transaction
464
+ Migrating to AddIndexToToken (20140904013307)
465
+  (0.1ms) begin transaction
466
+  (0.7ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
467
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904013307"]]
468
+  (130.0ms) commit transaction
469
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
470
+  (0.1ms) SELECT sql
471
+ FROM sqlite_master
472
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
473
+ UNION ALL
474
+ SELECT sql
475
+ FROM sqlite_temp_master
476
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
477
+
478
+  (274.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
479
+  (0.3ms) select sqlite_version(*)
480
+  (142.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
481
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
482
+ Migrating to CreatePeopleUsers (20140904013524)
483
+  (0.1ms) begin transaction
484
+  (0.6ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
485
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904013524"]]
486
+  (150.5ms) commit transaction
487
+ Migrating to CreateArcadexTokens (20140904013525)
488
+  (0.2ms) begin transaction
489
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
490
+ SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904013525"]]
491
+  (179.8ms) commit transaction
492
+ Migrating to AddIndexToToken (20140904013526)
493
+  (0.2ms) begin transaction
494
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
495
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904013526"]]
496
+  (157.7ms) commit transaction
497
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
498
+  (0.1ms) SELECT sql
499
+ FROM sqlite_master
500
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
501
+ UNION ALL
502
+ SELECT sql
503
+ FROM sqlite_temp_master
504
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
505
+
506
+
507
+
508
+ Started GET "/" for 127.0.0.1 at 2014-09-03 21:36:12 -0400
509
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
510
+ Processing by AppIndexController#app as HTML
511
+ Rendered app_index/app.html.erb within layouts/app_index (1.4ms)
512
+ Completed 200 OK in 60ms (Views: 8.3ms | ActiveRecord: 0.0ms)
513
+
514
+
515
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:15 -0400
516
+ Processing by MainController#admin as HTML
517
+ Rendered main/admin.html.erb within layouts/application (4.9ms)
518
+ Completed 200 OK in 124ms (Views: 122.5ms | ActiveRecord: 0.0ms)
519
+
520
+
521
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-03 21:36:15 -0400
522
+
523
+
524
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-03 21:36:15 -0400
525
+
526
+
527
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-03 21:36:15 -0400
528
+
529
+
530
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-03 21:36:15 -0400
531
+
532
+
533
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-03 21:36:15 -0400
534
+
535
+
536
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-03 21:36:17 -0400
537
+ Processing by People::UsersController#index as HTML
538
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
539
+ Rendered engines/people/app/views/people/users/index.html.erb (2.0ms)
540
+ Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.2ms)
541
+
542
+
543
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-03 21:36:17 -0400
544
+ Processing by People::UsersController#index as HTML
545
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
546
+ Rendered engines/people/app/views/people/users/index.html.erb (2.0ms)
547
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.2ms)
548
+
549
+
550
+ Started GET "/admin/tokens" for 127.0.0.1 at 2014-09-03 21:36:20 -0400
551
+ Processing by Arcadex::TokensController#index as HTML
552
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens"
553
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/arcadex-1.0.4/app/views/arcadex/tokens/index.html.erb within layouts/application (2.3ms)
554
+ Completed 200 OK in 108ms (Views: 101.3ms | ActiveRecord: 0.2ms)
555
+
556
+
557
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:22 -0400
558
+ Processing by MainController#admin as HTML
559
+ Rendered main/admin.html.erb within layouts/application (1.1ms)
560
+ Completed 200 OK in 58ms (Views: 57.2ms | ActiveRecord: 0.0ms)
561
+
562
+
563
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:24 -0400
564
+ Processing by MainController#admin as HTML
565
+ Rendered main/admin.html.erb within layouts/application (0.6ms)
566
+ Completed 200 OK in 56ms (Views: 55.6ms | ActiveRecord: 0.0ms)
567
+
568
+
569
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:24 -0400
570
+ Processing by MainController#admin as HTML
571
+ Rendered main/admin.html.erb within layouts/application (0.5ms)
572
+ Completed 200 OK in 122ms (Views: 120.9ms | ActiveRecord: 0.0ms)
573
+
574
+
575
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:24 -0400
576
+ Processing by MainController#admin as HTML
577
+ Rendered main/admin.html.erb within layouts/application (0.6ms)
578
+ Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.0ms)
579
+
580
+
581
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:24 -0400
582
+ Processing by MainController#admin as HTML
583
+ Rendered main/admin.html.erb within layouts/application (0.5ms)
584
+ Completed 200 OK in 51ms (Views: 50.9ms | ActiveRecord: 0.0ms)
585
+
586
+
587
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:25 -0400
588
+ Processing by MainController#admin as HTML
589
+ Rendered main/admin.html.erb within layouts/application (0.6ms)
590
+ Completed 200 OK in 103ms (Views: 101.8ms | ActiveRecord: 0.0ms)
591
+
592
+
593
+ Started GET "/admin/tokens" for 127.0.0.1 at 2014-09-03 21:36:25 -0400
594
+ Processing by Arcadex::TokensController#index as HTML
595
+ Arcadex::Token Load (0.3ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens"
596
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/arcadex-1.0.4/app/views/arcadex/tokens/index.html.erb within layouts/application (1.5ms)
597
+ Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.3ms)
598
+
599
+
600
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:26 -0400
601
+ Processing by MainController#admin as HTML
602
+ Rendered main/admin.html.erb within layouts/application (0.7ms)
603
+ Completed 200 OK in 53ms (Views: 52.8ms | ActiveRecord: 0.0ms)
604
+
605
+
606
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 21:36:28 -0400
607
+ Processing by MainController#admin as HTML
608
+ Rendered main/admin.html.erb within layouts/application (0.8ms)
609
+ Completed 200 OK in 105ms (Views: 103.8ms | ActiveRecord: 0.0ms)
610
+
611
+
612
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 23:23:21 -0400
613
+ Processing by MainController#admin as HTML
614
+ Rendered main/admin.html.erb within layouts/application (1.4ms)
615
+ Completed 200 OK in 163ms (Views: 153.1ms | ActiveRecord: 0.0ms)
616
+
617
+
618
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-03 23:23:21 -0400
619
+
620
+
621
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-03 23:23:21 -0400
622
+
623
+
624
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-03 23:23:21 -0400
625
+
626
+
627
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-03 23:23:21 -0400
628
+
629
+
630
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-03 23:23:21 -0400
631
+
632
+
633
+ Started GET "/admin" for 127.0.0.1 at 2014-09-03 23:23:23 -0400
634
+ Processing by MainController#admin as HTML
635
+ Rendered main/admin.html.erb within layouts/application (0.5ms)
636
+ Completed 200 OK in 86ms (Views: 85.4ms | ActiveRecord: 0.0ms)
637
+
638
+
639
+ Started GET "/" for 127.0.0.1 at 2014-09-03 23:23:26 -0400
640
+ Processing by AppIndexController#app as HTML
641
+ Rendered app_index/app.html.erb within layouts/app_index (0.4ms)
642
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
643
+  (141.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
644
+  (0.1ms) select sqlite_version(*)
645
+  (143.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
646
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
647
+ Migrating to CreatePeopleUsers (20140904040857)
648
+  (0.1ms) begin transaction
649
+  (2.4ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
650
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904040857"]]
651
+  (141.5ms) commit transaction
652
+ Migrating to CreateArcadexTokens (20140904040858)
653
+  (0.2ms) begin transaction
654
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
655
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904040858"]]
656
+  (136.1ms) commit transaction
657
+ Migrating to AddIndexToToken (20140904040859)
658
+  (0.1ms) begin transaction
659
+  (0.6ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
660
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904040859"]]
661
+  (163.1ms) commit transaction
662
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
663
+  (0.2ms) SELECT sql
664
+ FROM sqlite_master
665
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
666
+ UNION ALL
667
+ SELECT sql
668
+ FROM sqlite_temp_master
669
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
670
+
671
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
672
+ Migrating to CreatePeopleUsers (20140904042139)
673
+  (0.1ms) begin transaction
674
+  (0.4ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime) 
675
+ SQLite3::SQLException: table "people_users" already exists: CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
676
+  (0.1ms) rollback transaction
677
+  (244.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
678
+  (0.3ms) select sqlite_version(*)
679
+  (142.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
680
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
681
+ Migrating to CreatePeopleUsers (20140904042252)
682
+  (0.2ms) begin transaction
683
+  (1.5ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
684
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042252"]]
685
+  (145.4ms) commit transaction
686
+ Migrating to CreateArcadexTokens (20140904042253)
687
+  (0.3ms) begin transaction
688
+  (1.1ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
689
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042253"]]
690
+  (137.2ms) commit transaction
691
+ Migrating to AddIndexToToken (20140904042254)
692
+  (0.2ms) begin transaction
693
+  (0.9ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
694
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042254"]]
695
+  (138.7ms) commit transaction
696
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
697
+  (0.3ms) SELECT sql
698
+ FROM sqlite_master
699
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
700
+ UNION ALL
701
+ SELECT sql
702
+ FROM sqlite_temp_master
703
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
704
+
705
+  (117.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
706
+  (0.3ms) select sqlite_version(*)
707
+  (142.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
708
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
709
+ Migrating to CreatePeopleUsers (20140904042534)
710
+  (0.1ms) begin transaction
711
+  (0.6ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
712
+ SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042534"]]
713
+  (140.8ms) commit transaction
714
+ Migrating to CreateArcadexTokens (20140904042535)
715
+  (0.1ms) begin transaction
716
+  (0.6ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
717
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042535"]]
718
+  (140.7ms) commit transaction
719
+ Migrating to AddIndexToToken (20140904042536)
720
+  (0.2ms) begin transaction
721
+  (1.6ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
722
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042536"]]
723
+  (191.7ms) commit transaction
724
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
725
+  (0.2ms) SELECT sql
726
+ FROM sqlite_master
727
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
728
+ UNION ALL
729
+ SELECT sql
730
+ FROM sqlite_temp_master
731
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
732
+
733
+  (177.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
734
+  (0.1ms) select sqlite_version(*)
735
+  (143.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
736
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
737
+ Migrating to CreatePeopleUsers (20140904042854)
738
+  (0.1ms) begin transaction
739
+  (1.1ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
740
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042854"]]
741
+  (139.6ms) commit transaction
742
+ Migrating to CreateArcadexTokens (20140904042855)
743
+  (0.1ms) begin transaction
744
+  (0.7ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
745
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042855"]]
746
+  (139.7ms) commit transaction
747
+ Migrating to AddIndexToToken (20140904042856)
748
+  (0.1ms) begin transaction
749
+  (0.6ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
750
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904042856"]]
751
+  (163.9ms) commit transaction
752
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
753
+  (0.1ms) SELECT sql
754
+ FROM sqlite_master
755
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
756
+ UNION ALL
757
+ SELECT sql
758
+ FROM sqlite_temp_master
759
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
760
+
761
+  (144.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
762
+  (0.1ms) select sqlite_version(*)
763
+  (145.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
764
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
765
+ Migrating to CreatePeopleUsers (20140904043218)
766
+  (0.1ms) begin transaction
767
+  (0.8ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
768
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904043218"]]
769
+  (162.5ms) commit transaction
770
+ Migrating to CreateArcadexTokens (20140904043219)
771
+  (0.1ms) begin transaction
772
+  (0.5ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
773
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904043219"]]
774
+  (141.2ms) commit transaction
775
+ Migrating to AddIndexToToken (20140904043220)
776
+  (0.2ms) begin transaction
777
+  (1.6ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
778
+ SQL (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904043220"]]
779
+  (222.7ms) commit transaction
780
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
781
+  (0.1ms) SELECT sql
782
+ FROM sqlite_master
783
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
784
+ UNION ALL
785
+ SELECT sql
786
+ FROM sqlite_temp_master
787
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
788
+
789
+
790
+
791
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:34:21 -0400
792
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
793
+ Processing by AppIndexController#app as HTML
794
+ Filter chain halted as #<Proc:0x00000004aa5c40@/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_controller/metal/http_authentication.rb:71> rendered or redirected
795
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
796
+
797
+
798
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:34:30 -0400
799
+ Processing by AppIndexController#app as HTML
800
+ Rendered app_index/app.html.erb within layouts/app_index (1.3ms)
801
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
802
+
803
+
804
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:34:37 -0400
805
+ Processing by MainController#admin as HTML
806
+ Rendered main/admin.html.erb within layouts/application (7.8ms)
807
+ Completed 200 OK in 130ms (Views: 128.2ms | ActiveRecord: 0.0ms)
808
+
809
+
810
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:34:37 -0400
811
+
812
+
813
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:34:37 -0400
814
+
815
+
816
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:34:37 -0400
817
+
818
+
819
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:34:37 -0400
820
+
821
+
822
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:34:37 -0400
823
+
824
+
825
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:34:40 -0400
826
+ Processing by AppIndexController#app as HTML
827
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
828
+ Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.0ms)
829
+  (151.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
830
+  (0.1ms) select sqlite_version(*)
831
+  (143.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
832
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
833
+ Migrating to CreatePeopleUsers (20140904044327)
834
+  (0.1ms) begin transaction
835
+  (0.6ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
836
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904044327"]]
837
+  (184.9ms) commit transaction
838
+ Migrating to CreateArcadexTokens (20140904044328)
839
+  (0.2ms) begin transaction
840
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
841
+ SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904044328"]]
842
+  (179.9ms) commit transaction
843
+ Migrating to AddIndexToToken (20140904044329)
844
+  (0.2ms) begin transaction
845
+  (1.8ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
846
+ SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904044329"]]
847
+  (156.7ms) commit transaction
848
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
849
+  (0.1ms) SELECT sql
850
+ FROM sqlite_master
851
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
852
+ UNION ALL
853
+ SELECT sql
854
+ FROM sqlite_temp_master
855
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
856
+
857
+
858
+
859
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:44:41 -0400
860
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
861
+ Processing by AppIndexController#app as HTML
862
+ Rendered app_index/app.html.erb within layouts/app_index (1.3ms)
863
+ Completed 200 OK in 59ms (Views: 8.4ms | ActiveRecord: 0.0ms)
864
+
865
+
866
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:44:43 -0400
867
+ Processing by MainController#admin as HTML
868
+ Rendered main/admin.html.erb within layouts/application (8.3ms)
869
+ Completed 200 OK in 163ms (Views: 161.8ms | ActiveRecord: 0.0ms)
870
+
871
+
872
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:44:43 -0400
873
+
874
+
875
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:44 -0400
876
+
877
+
878
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:44 -0400
879
+
880
+
881
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:44 -0400
882
+
883
+
884
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:44 -0400
885
+
886
+
887
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:44:46 -0400
888
+ Processing by MainController#admin as HTML
889
+ Rendered main/admin.html.erb within layouts/application (0.8ms)
890
+ Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.0ms)
891
+
892
+
893
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:44:46 -0400
894
+
895
+
896
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:46 -0400
897
+
898
+
899
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:46 -0400
900
+
901
+
902
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:46 -0400
903
+
904
+
905
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:44:46 -0400
906
+
907
+
908
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:46:03 -0400
909
+ Processing by MainController#admin as HTML
910
+ Rendered main/admin.html.erb within layouts/application (0.5ms)
911
+ Completed 200 OK in 101ms (Views: 100.6ms | ActiveRecord: 0.0ms)
912
+
913
+
914
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:46:03 -0400
915
+
916
+
917
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:46:03 -0400
918
+
919
+
920
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:46:03 -0400
921
+
922
+
923
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:46:03 -0400
924
+
925
+
926
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:46:03 -0400
927
+
928
+
929
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:46:06 -0400
930
+ Processing by AppIndexController#app as HTML
931
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
932
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
933
+
934
+
935
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:47:00 -0400
936
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
937
+ Processing by AppIndexController#app as HTML
938
+ Rendered app_index/app.html.erb within layouts/app_index (1.4ms)
939
+ Completed 200 OK in 60ms (Views: 8.8ms | ActiveRecord: 0.0ms)
940
+
941
+
942
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:47:03 -0400
943
+ Processing by MainController#admin as HTML
944
+ Rendered main/admin.html.erb within layouts/application (6.0ms)
945
+ Completed 200 OK in 128ms (Views: 126.8ms | ActiveRecord: 0.0ms)
946
+
947
+
948
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:47:03 -0400
949
+
950
+
951
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:03 -0400
952
+
953
+
954
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:03 -0400
955
+
956
+
957
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:03 -0400
958
+
959
+
960
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:03 -0400
961
+
962
+
963
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:47:36 -0400
964
+ Processing by MainController#admin as HTML
965
+ Rendered main/admin.html.erb within layouts/application (0.7ms)
966
+ Completed 200 OK in 64ms (Views: 63.0ms | ActiveRecord: 0.0ms)
967
+
968
+
969
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:47:36 -0400
970
+
971
+
972
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:36 -0400
973
+
974
+
975
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:36 -0400
976
+
977
+
978
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:36 -0400
979
+
980
+
981
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:36 -0400
982
+
983
+
984
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:47:38 -0400
985
+ Processing by AppIndexController#app as HTML
986
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
987
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
988
+
989
+
990
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:47:41 -0400
991
+ Processing by MainController#admin as HTML
992
+ Rendered main/admin.html.erb within layouts/application (0.6ms)
993
+ Completed 200 OK in 109ms (Views: 108.3ms | ActiveRecord: 0.0ms)
994
+
995
+
996
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:47:41 -0400
997
+
998
+
999
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:41 -0400
1000
+
1001
+
1002
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:41 -0400
1003
+
1004
+
1005
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:41 -0400
1006
+
1007
+
1008
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:47:41 -0400
1009
+
1010
+
1011
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:48:24 -0400
1012
+ Processing by MainController#admin as HTML
1013
+ Rendered main/admin.html.erb within layouts/application (0.9ms)
1014
+ Completed 200 OK in 61ms (Views: 60.0ms | ActiveRecord: 0.0ms)
1015
+
1016
+
1017
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:48:24 -0400
1018
+
1019
+
1020
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:48:24 -0400
1021
+
1022
+
1023
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:48:24 -0400
1024
+
1025
+
1026
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:48:24 -0400
1027
+
1028
+
1029
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:48:24 -0400
1030
+
1031
+
1032
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:48:27 -0400
1033
+ Processing by AppIndexController#app as HTML
1034
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
1035
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1036
+
1037
+
1038
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:48:39 -0400
1039
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1040
+ Processing by AppIndexController#app as HTML
1041
+ Rendered app_index/app.html.erb within layouts/app_index (1.5ms)
1042
+ Completed 200 OK in 60ms (Views: 8.4ms | ActiveRecord: 0.0ms)
1043
+
1044
+
1045
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:49:15 -0400
1046
+ Processing by MainController#admin as HTML
1047
+ Rendered main/admin.html.erb within layouts/application (5.3ms)
1048
+ Completed 200 OK in 123ms (Views: 121.9ms | ActiveRecord: 0.0ms)
1049
+
1050
+
1051
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:49:16 -0400
1052
+
1053
+
1054
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:49:16 -0400
1055
+
1056
+
1057
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:49:16 -0400
1058
+
1059
+
1060
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:49:16 -0400
1061
+
1062
+
1063
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:49:16 -0400
1064
+
1065
+
1066
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:49:17 -0400
1067
+ Processing by MainController#admin as HTML
1068
+ Rendered main/admin.html.erb within layouts/application (1.3ms)
1069
+ Completed 200 OK in 54ms (Views: 52.8ms | ActiveRecord: 0.0ms)
1070
+
1071
+
1072
+ Started GET "/admin/tokens" for 127.0.0.1 at 2014-09-04 00:49:18 -0400
1073
+ Processing by Arcadex::TokensController#index as HTML
1074
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens"
1075
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/arcadex-1.0.4/app/views/arcadex/tokens/index.html.erb within layouts/application (2.1ms)
1076
+ Completed 200 OK in 108ms (Views: 102.0ms | ActiveRecord: 0.2ms)
1077
+
1078
+
1079
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-04 00:49:21 -0400
1080
+ Processing by People::UsersController#index as HTML
1081
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
1082
+ Rendered engines/people/app/views/people/users/index.html.erb (2.0ms)
1083
+ Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.2ms)
1084
+
1085
+
1086
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-04 00:49:21 -0400
1087
+ Processing by People::UsersController#index as HTML
1088
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
1089
+ Rendered engines/people/app/views/people/users/index.html.erb (2.1ms)
1090
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.2ms)
1091
+
1092
+
1093
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:49:53 -0400
1094
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1095
+ Processing by MainController#admin as HTML
1096
+ Filter chain halted as #<Proc:0x00000005d6e200@/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_controller/metal/http_authentication.rb:71> rendered or redirected
1097
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
1098
+
1099
+
1100
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:49:57 -0400
1101
+ Processing by AppIndexController#app as HTML
1102
+ Rendered app_index/app.html.erb within layouts/app_index (1.3ms)
1103
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1104
+
1105
+
1106
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:49:59 -0400
1107
+ Processing by AppIndexController#app as HTML
1108
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
1109
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1110
+
1111
+
1112
+ Started GET "/api/1/" for 127.0.0.1 at 2014-09-04 00:50:02 -0400
1113
+
1114
+ ActionController::RoutingError (No route matches [GET] "/api/1"):
1115
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1116
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1117
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
1118
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
1119
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1120
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1121
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1122
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
1123
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1124
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1125
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1126
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1127
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1128
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1129
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
1130
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
1131
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1132
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1133
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1134
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1135
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1136
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1137
+
1138
+
1139
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1140
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
1141
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1142
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
1143
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.9ms)
1144
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (48.1ms)
1145
+
1146
+
1147
+ Started GET "/api/1/users/" for 127.0.0.1 at 2014-09-04 00:50:09 -0400
1148
+ Processing by People::Api::V1::UsersController#index as HTML
1149
+ Arcadex::Token Load (0.2ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" IS NULL LIMIT 1
1150
+ Filter chain halted as :authenticate_user rendered or redirected
1151
+ Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1152
+
1153
+
1154
+ Started GET "/api/1/users/1" for 127.0.0.1 at 2014-09-04 00:50:13 -0400
1155
+ Processing by People::Api::V1::UsersController#show as HTML
1156
+ Parameters: {"id"=>"1"}
1157
+ Arcadex::Token Load (0.5ms) SELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" IS NULL LIMIT 1
1158
+ Filter chain halted as :authenticate_user rendered or redirected
1159
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1160
+
1161
+
1162
+ Started GET "/api/1/" for 127.0.0.1 at 2014-09-04 00:50:17 -0400
1163
+
1164
+ ActionController::RoutingError (No route matches [GET] "/api/1"):
1165
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1166
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1167
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
1168
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
1169
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1170
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1171
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1172
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
1173
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1174
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1175
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1176
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1177
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1178
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1179
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
1180
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
1181
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1182
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1183
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1184
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1185
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1186
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1187
+
1188
+
1189
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1190
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1191
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1192
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
1193
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (45.6ms)
1194
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.6ms)
1195
+
1196
+
1197
+ Started GET "/api/" for 127.0.0.1 at 2014-09-04 00:50:20 -0400
1198
+
1199
+ ActionController::RoutingError (No route matches [GET] "/api"):
1200
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1201
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1202
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
1203
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
1204
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1205
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1206
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1207
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
1208
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1209
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1210
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1211
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1212
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1213
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1214
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
1215
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
1216
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1217
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1218
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1219
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1220
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1221
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1222
+
1223
+
1224
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1225
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1226
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1227
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
1228
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
1229
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (38.1ms)
1230
+
1231
+
1232
+ Started GET "/api/1/" for 127.0.0.1 at 2014-09-04 00:50:22 -0400
1233
+
1234
+ ActionController::RoutingError (No route matches [GET] "/api/1"):
1235
+ actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1236
+ actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1237
+ railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
1238
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
1239
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1240
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1241
+ activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1242
+ railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
1243
+ actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1244
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1245
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1246
+ activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1247
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1248
+ actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1249
+ railties (4.1.5) lib/rails/engine.rb:514:in `call'
1250
+ railties (4.1.5) lib/rails/application.rb:144:in `call'
1251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1252
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1253
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1254
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1255
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1256
+ /home/cleo/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1257
+
1258
+
1259
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1260
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1261
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1262
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
1263
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
1264
+ Rendered /home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (38.4ms)
1265
+
1266
+
1267
+ Started GET "/" for 127.0.0.1 at 2014-09-04 00:50:29 -0400
1268
+ Processing by AppIndexController#app as HTML
1269
+ Rendered app_index/app.html.erb within layouts/app_index (0.1ms)
1270
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1271
+
1272
+
1273
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:50:32 -0400
1274
+ Processing by MainController#admin as HTML
1275
+ Filter chain halted as #<Proc:0x00000005d6e200@/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_controller/metal/http_authentication.rb:71> rendered or redirected
1276
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
1277
+
1278
+
1279
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:50:36 -0400
1280
+ Processing by MainController#admin as HTML
1281
+ Filter chain halted as #<Proc:0x00000005d6e200@/home/cleo/.rvm/gems/ruby-2.0.0-p451/gems/actionpack-4.1.5/lib/action_controller/metal/http_authentication.rb:71> rendered or redirected
1282
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
1283
+
1284
+
1285
+ Started GET "/admin" for 127.0.0.1 at 2014-09-04 00:50:41 -0400
1286
+ Processing by MainController#admin as HTML
1287
+ Rendered main/admin.html.erb within layouts/application (5.9ms)
1288
+ Completed 200 OK in 143ms (Views: 142.1ms | ActiveRecord: 0.0ms)
1289
+
1290
+
1291
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-09-04 00:50:41 -0400
1292
+
1293
+
1294
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-09-04 00:50:41 -0400
1295
+
1296
+
1297
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-09-04 00:50:41 -0400
1298
+
1299
+
1300
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-09-04 00:50:41 -0400
1301
+
1302
+
1303
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-09-04 00:50:41 -0400
1304
+
1305
+
1306
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-04 00:50:47 -0400
1307
+ Processing by People::UsersController#index as HTML
1308
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
1309
+ Rendered engines/people/app/views/people/users/index.html.erb (2.2ms)
1310
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.2ms)
1311
+
1312
+
1313
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-04 00:50:47 -0400
1314
+ Processing by People::UsersController#index as HTML
1315
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
1316
+ Rendered engines/people/app/views/people/users/index.html.erb (2.0ms)
1317
+ Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms)
1318
+
1319
+
1320
+ Started GET "/admin/users" for 127.0.0.1 at 2014-09-04 00:50:48 -0400
1321
+ Processing by People::UsersController#index as HTML
1322
+ People::User Load (0.2ms) SELECT "people_users".* FROM "people_users"
1323
+ Rendered engines/people/app/views/people/users/index.html.erb (1.1ms)
1324
+ Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.2ms)
1325
+  (133.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1326
+  (0.3ms) select sqlite_version(*)
1327
+  (131.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1328
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1329
+ Migrating to CreatePeopleUsers (20140904051247)
1330
+  (0.2ms) begin transaction
1331
+  (1.4ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
1332
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051247"]]
1333
+  (193.5ms) commit transaction
1334
+ Migrating to CreateArcadexTokens (20140904051248)
1335
+  (0.1ms) begin transaction
1336
+  (0.7ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
1337
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051248"]]
1338
+  (184.9ms) commit transaction
1339
+ Migrating to AddIndexToToken (20140904051249)
1340
+  (0.1ms) begin transaction
1341
+  (0.7ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
1342
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051249"]]
1343
+  (229.8ms) commit transaction
1344
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1345
+  (0.1ms) SELECT sql
1346
+ FROM sqlite_master
1347
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1348
+ UNION ALL
1349
+ SELECT sql
1350
+ FROM sqlite_temp_master
1351
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1352
+
1353
+  (144.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1354
+  (0.3ms) select sqlite_version(*)
1355
+  (142.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1356
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1357
+ Migrating to CreatePeopleUsers (20140904051655)
1358
+  (0.3ms) begin transaction
1359
+  (1.1ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
1360
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051655"]]
1361
+  (159.4ms) commit transaction
1362
+ Migrating to CreateArcadexTokens (20140904051656)
1363
+  (0.2ms) begin transaction
1364
+  (1.5ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
1365
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051656"]]
1366
+  (179.7ms) commit transaction
1367
+ Migrating to AddIndexToToken (20140904051657)
1368
+  (0.2ms) begin transaction
1369
+  (1.1ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
1370
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051657"]]
1371
+  (158.3ms) commit transaction
1372
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1373
+  (0.4ms) SELECT sql
1374
+ FROM sqlite_master
1375
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1376
+ UNION ALL
1377
+ SELECT sql
1378
+ FROM sqlite_temp_master
1379
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1380
+
1381
+  (137.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1382
+  (0.2ms) select sqlite_version(*)
1383
+  (142.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1384
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1385
+ Migrating to CreatePeopleUsers (20140904051919)
1386
+  (0.1ms) begin transaction
1387
+  (0.7ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
1388
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051919"]]
1389
+  (155.6ms) commit transaction
1390
+ Migrating to CreateArcadexTokens (20140904051920)
1391
+  (0.2ms) begin transaction
1392
+  (2.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
1393
+ SQL (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051920"]]
1394
+  (178.2ms) commit transaction
1395
+ Migrating to AddIndexToToken (20140904051921)
1396
+  (0.2ms) begin transaction
1397
+  (1.5ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
1398
+ SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904051921"]]
1399
+  (157.9ms) commit transaction
1400
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1401
+  (0.1ms) SELECT sql
1402
+ FROM sqlite_master
1403
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1404
+ UNION ALL
1405
+ SELECT sql
1406
+ FROM sqlite_temp_master
1407
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1408
+
1409
+  (145.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1410
+  (0.3ms) select sqlite_version(*)
1411
+  (143.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1412
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1413
+ Migrating to CreatePeopleUsers (20140904052053)
1414
+  (0.2ms) begin transaction
1415
+  (1.5ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
1416
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904052053"]]
1417
+  (147.8ms) commit transaction
1418
+ Migrating to CreateArcadexTokens (20140904052054)
1419
+  (0.1ms) begin transaction
1420
+  (0.5ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
1421
+ SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904052054"]]
1422
+  (173.4ms) commit transaction
1423
+ Migrating to AddIndexToToken (20140904052055)
1424
+  (0.2ms) begin transaction
1425
+  (1.2ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
1426
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904052055"]]
1427
+  (158.0ms) commit transaction
1428
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1429
+  (0.4ms) SELECT sql
1430
+ FROM sqlite_master
1431
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1432
+ UNION ALL
1433
+ SELECT sql
1434
+ FROM sqlite_temp_master
1435
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1436
+
1437
+  (140.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1438
+  (0.1ms) select sqlite_version(*)
1439
+  (152.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1440
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
1441
+ Migrating to CreatePeopleUsers (20140904234125)
1442
+  (0.2ms) begin transaction
1443
+  (1.5ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
1444
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904234125"]]
1445
+  (171.6ms) commit transaction
1446
+ Migrating to CreateArcadexTokens (20140904234126)
1447
+  (0.2ms) begin transaction
1448
+  (1.4ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
1449
+ SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904234126"]]
1450
+  (179.9ms) commit transaction
1451
+ Migrating to AddIndexToToken (20140904234127)
1452
+  (0.2ms) begin transaction
1453
+  (1.3ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
1454
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140904234127"]]
1455
+  (168.9ms) commit transaction
1456
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1457
+  (0.2ms) SELECT sql
1458
+ FROM sqlite_master
1459
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1460
+ UNION ALL
1461
+ SELECT sql
1462
+ FROM sqlite_temp_master
1463
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1464
+
1465
+  (157.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1466
+  (0.3ms) select sqlite_version(*)
1467
+  (175.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1468
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1469
+ Migrating to CreatePeopleUsers (20140905010142)
1470
+  (0.3ms) begin transaction
1471
+  (0.7ms) CREATE TABLE "people_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime)
1472
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905010142"]]
1473
+  (148.7ms) commit transaction
1474
+ Migrating to CreateArcadexTokens (20140905010143)
1475
+  (0.1ms) begin transaction
1476
+  (0.6ms) CREATE TABLE "arcadex_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "imageable_id" integer, "imageable_type" varchar(255), "auth_token" varchar(255), "created_at" datetime, "updated_at" datetime)
1477
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905010143"]]
1478
+  (218.2ms) commit transaction
1479
+ Migrating to AddIndexToToken (20140905010144)
1480
+  (0.2ms) begin transaction
1481
+  (1.0ms) CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
1482
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905010144"]]
1483
+  (159.0ms) commit transaction
1484
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1485
+  (0.1ms) SELECT sql
1486
+ FROM sqlite_master
1487
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1488
+ UNION ALL
1489
+ SELECT sql
1490
+ FROM sqlite_temp_master
1491
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1492
+
1493
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1494
+ Migrating to CreateSchoolTeachers (20140905011102)
1495
+  (0.1ms) begin transaction
1496
+  (0.8ms) CREATE TABLE "school_teachers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post" integer, "created_at" datetime, "updated_at" datetime) 
1497
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905011102"]]
1498
+  (171.8ms) commit transaction
1499
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1500
+  (0.1ms)  SELECT sql
1501
+ FROM sqlite_master
1502
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1503
+ UNION ALL
1504
+ SELECT sql
1505
+ FROM sqlite_temp_master
1506
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1507
+ 
1508
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1509
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1510
+  (0.1ms)  SELECT sql
1511
+ FROM sqlite_master
1512
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1513
+ UNION ALL
1514
+ SELECT sql
1515
+ FROM sqlite_temp_master
1516
+ WHERE name='index_arcadex_tokens_on_auth_token' AND type='index'
1517
+