json_voorhees 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +75 -0
- data/Rakefile +34 -0
- data/app/assets/javascripts/json_voorhees/application.js +13 -0
- data/app/assets/stylesheets/json_voorhees/application.css +15 -0
- data/app/controllers/json_voorhees/application_controller.rb +4 -0
- data/app/helpers/json_voorhees/application_helper.rb +4 -0
- data/app/views/layouts/json_voorhees/application.html.erb +14 -0
- data/config/routes.rb +2 -0
- data/lib/generators/json_voorhees/app_make_authorizations/USAGE +10 -0
- data/lib/generators/json_voorhees/app_make_authorizations/app_make_authorizations_generator.rb +39 -0
- data/lib/generators/json_voorhees/app_make_authorizations/templates/auth_file.rb.erb +51 -0
- data/lib/generators/json_voorhees/app_make_tests/USAGE +9 -0
- data/lib/generators/json_voorhees/app_make_tests/app_make_tests_generator.rb +51 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/factory.rb.erb +9 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/model.rb.erb +30 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/request.rb.erb +102 -0
- data/lib/generators/json_voorhees/app_make_tests/templates/routing.rb.erb +47 -0
- data/lib/generators/json_voorhees/engine_create_controller/USAGE +12 -0
- data/lib/generators/json_voorhees/engine_create_controller/engine_create_controller_generator.rb +40 -0
- data/lib/generators/json_voorhees/engine_create_controller/templates/controller_template.rb.erb +98 -0
- data/lib/generators/json_voorhees/engine_create_controller/templates/no_auth_controller_template.rb.erb +61 -0
- data/lib/generators/json_voorhees/engine_create_serializer/USAGE +9 -0
- data/lib/generators/json_voorhees/engine_create_serializer/engine_create_serializer_generator.rb +34 -0
- data/lib/generators/json_voorhees/engine_create_serializer/templates/serializer.rb.erb +23 -0
- data/lib/generators/json_voorhees/setup_app/USAGE +9 -0
- data/lib/generators/json_voorhees/setup_app/setup_app_generator.rb +207 -0
- data/lib/generators/json_voorhees/setup_app/templates/api_controller_no_arcadex.rb +2 -0
- data/lib/generators/json_voorhees/setup_app/templates/api_controller_with_arcadex.rb +26 -0
- data/lib/generators/json_voorhees/setup_app/templates/app_index_controller.rb +4 -0
- data/lib/generators/json_voorhees/setup_app/templates/hidden_rspec.rb +3 -0
- data/lib/generators/json_voorhees/setup_app/templates/json_helpers.rb +7 -0
- data/lib/generators/json_voorhees/setup_app/templates/rspec_factory_girl.rb +16 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/include_authorization.rb +3 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/specs/factory_girl.rb +14 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/specs/model_specs.rb +59 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/specs/request_specs.rb +154 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/specs/route_specs.rb +77 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/user_authorizations.rb +82 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/user_controller.rb +124 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/user_model.rb +26 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/user_routes.rb +24 -0
- data/lib/generators/json_voorhees/setup_app/templates/user/user_serializer.rb +39 -0
- data/lib/generators/json_voorhees/setup_app/templates/views/admin_no_user +6 -0
- data/lib/generators/json_voorhees/setup_app/templates/views/admin_with_user +9 -0
- data/lib/generators/json_voorhees/setup_app/templates/views/app +0 -0
- data/lib/generators/json_voorhees/setup_app/templates/views/app_index +9 -0
- data/lib/generators/json_voorhees/setup_app/templates/views/application +19 -0
- data/lib/generators/json_voorhees/setup_engine/USAGE +8 -0
- data/lib/generators/json_voorhees/setup_engine/setup_engine_generator.rb +81 -0
- data/lib/generators/json_voorhees/setup_engine/templates/api_controller.rb.erb +5 -0
- data/lib/generators/json_voorhees/setup_engine/templates/application_controller.rb.erb +4 -0
- data/lib/json_voorhees/engine.rb +5 -0
- data/lib/json_voorhees/version.rb +3 -0
- data/lib/json_voorhees.rb +4 -0
- data/lib/tasks/json_voorhees_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +82 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/json_voorhees_test.rb +7 -0
- data/test/lib/generators/json_voorhees/engine_serializer_generator_test.rb +16 -0
- data/test/test_app/Gemfile +42 -0
- data/test/test_app/Gemfile.lock +132 -0
- data/test/test_app/README.rdoc +28 -0
- data/test/test_app/Rakefile +6 -0
- data/test/test_app/app/assets/javascripts/application.js +16 -0
- data/test/test_app/app/assets/stylesheets/application.css +15 -0
- data/test/test_app/app/controllers/application_controller.rb +5 -0
- data/test/test_app/app/helpers/application_helper.rb +2 -0
- data/test/test_app/app/views/layouts/application.html.erb +14 -0
- data/test/test_app/bin/bundle +3 -0
- data/test/test_app/bin/rails +8 -0
- data/test/test_app/bin/rake +8 -0
- data/test/test_app/bin/spring +18 -0
- data/test/test_app/config/application.rb +23 -0
- data/test/test_app/config/boot.rb +4 -0
- data/test/test_app/config/database.yml +25 -0
- data/test/test_app/config/environment.rb +5 -0
- data/test/test_app/config/environments/development.rb +37 -0
- data/test/test_app/config/environments/production.rb +82 -0
- data/test/test_app/config/environments/test.rb +39 -0
- data/test/test_app/config/initializers/assets.rb +8 -0
- data/test/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/test_app/config/initializers/cookies_serializer.rb +3 -0
- data/test/test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/test_app/config/initializers/inflections.rb +16 -0
- data/test/test_app/config/initializers/mime_types.rb +4 -0
- data/test/test_app/config/initializers/session_store.rb +3 -0
- data/test/test_app/config/initializers/wrap_parameters.rb +14 -0
- data/test/test_app/config/locales/en.yml +23 -0
- data/test/test_app/config/routes.rb +56 -0
- data/test/test_app/config/secrets.yml +22 -0
- data/test/test_app/config.ru +4 -0
- data/test/test_app/db/development.sqlite3 +0 -0
- data/test/test_app/db/schema.rb +16 -0
- data/test/test_app/db/seeds.rb +7 -0
- data/test/test_app/log/development.log +1517 -0
- data/test/test_app/log/production.log +68 -0
- data/test/test_app/log/test.log +10482 -0
- data/test/test_app/public/404.html +67 -0
- data/test/test_app/public/422.html +67 -0
- data/test/test_app/public/500.html +66 -0
- data/test/test_app/public/favicon.ico +0 -0
- data/test/test_app/public/robots.txt +5 -0
- data/test/test_app/test/test_helper.rb +10 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/055b16b21481c5603eab51f88bce614e +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/2c8821d40541c62f65d0a77d6d737a59 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/381d73d62d2e34310ff5e02a60e2e6b5 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/6cfd8687a851913292b638daebcf0c3b +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/72539eb249ff535aa9679adf93578a3a +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/7288979cc8fd497d915d19732930197f +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/af6f30b38676f9ac87b6c15260d702d6 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/c1e06c98ebb85a26421cf34d75787365 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/c636869dd0df678775f14b9e86cb147d +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/test_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/test_engine/Gemfile +17 -0
- data/test/test_engine/Gemfile.lock +128 -0
- data/test/test_engine/MIT-LICENSE +20 -0
- data/test/test_engine/README.md +1 -0
- data/test/test_engine/Rakefile +34 -0
- data/test/test_engine/app/assets/javascripts/test_engine/application.js +13 -0
- data/test/test_engine/app/assets/stylesheets/test_engine/application.css +15 -0
- data/test/test_engine/app/controllers/test_engine/api/v1/application_controller.rb +5 -0
- data/test/test_engine/app/controllers/test_engine/application_controller.rb +4 -0
- data/test/test_engine/app/helpers/test_engine/application_helper.rb +4 -0
- data/test/test_engine/app/views/layouts/test_engine/default/application.html.erb +14 -0
- data/test/test_engine/bin/rails +12 -0
- data/test/test_engine/config/routes.rb +23 -0
- data/test/test_engine/lib/tasks/test_engine_tasks.rake +4 -0
- data/test/test_engine/lib/test_engine/engine.rb +5 -0
- data/test/test_engine/lib/test_engine/version.rb +3 -0
- data/test/test_engine/lib/test_engine.rb +4 -0
- data/test/test_engine/test/dummy/README.rdoc +28 -0
- data/test/test_engine/test/dummy/Rakefile +6 -0
- data/test/test_engine/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/test_engine/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/test_engine/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/test_engine/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/test_engine/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/test_engine/test/dummy/bin/bundle +3 -0
- data/test/test_engine/test/dummy/bin/rails +4 -0
- data/test/test_engine/test/dummy/bin/rake +4 -0
- data/test/test_engine/test/dummy/config/application.rb +23 -0
- data/test/test_engine/test/dummy/config/boot.rb +5 -0
- data/test/test_engine/test/dummy/config/database.yml +25 -0
- data/test/test_engine/test/dummy/config/environment.rb +5 -0
- data/test/test_engine/test/dummy/config/environments/development.rb +37 -0
- data/test/test_engine/test/dummy/config/environments/production.rb +82 -0
- data/test/test_engine/test/dummy/config/environments/test.rb +39 -0
- data/test/test_engine/test/dummy/config/initializers/assets.rb +8 -0
- data/test/test_engine/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/test_engine/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/test_engine/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/test_engine/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/test_engine/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/test_engine/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/test_engine/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/test_engine/test/dummy/config/locales/en.yml +23 -0
- data/test/test_engine/test/dummy/config/routes.rb +4 -0
- data/test/test_engine/test/dummy/config/secrets.yml +22 -0
- data/test/test_engine/test/dummy/config.ru +4 -0
- data/test/test_engine/test/dummy/log/development.log +0 -0
- data/test/test_engine/test/dummy/public/404.html +67 -0
- data/test/test_engine/test/dummy/public/422.html +67 -0
- data/test/test_engine/test/dummy/public/500.html +66 -0
- data/test/test_engine/test/dummy/public/favicon.ico +0 -0
- data/test/test_engine/test/integration/navigation_test.rb +10 -0
- data/test/test_engine/test/test_engine_test.rb +7 -0
- data/test/test_engine/test/test_helper.rb +15 -0
- data/test/test_engine/test_engine.gemspec +31 -0
- data/test/test_helper.rb +15 -0
- metadata +434 -0
@@ -0,0 +1,1517 @@
|
|
1
|
+
[1m[36m (426.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (120.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
5
|
+
Migrating to CreatePeopleUsers (20140903225832)
|
6
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
7
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903225832"]]
|
9
|
+
[1m[35m (100.6ms)[0m commit transaction
|
10
|
+
Migrating to CreateArcadexTokens (20140903225833)
|
11
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.9ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903225833"]]
|
14
|
+
[1m[35m (136.5ms)[0m commit transaction
|
15
|
+
Migrating to AddIndexToToken (20140903225834)
|
16
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
18
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903225834"]]
|
19
|
+
[1m[35m (94.9ms)[0m commit transaction
|
20
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
21
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
30
|
+
Migrating to CreatePeopleUsers (20140903232410)
|
31
|
+
[1m[35m (0.1ms)[0m begin transaction
|
32
|
+
[1m[36m (0.5ms)[0m [1mCREATE 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) [0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
35
|
+
[1m[36m (125.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
36
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
37
|
+
[1m[36m (99.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
38
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
39
|
+
Migrating to CreatePeopleUsers (20140903233321)
|
40
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
41
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903233321"]]
|
43
|
+
[1m[35m (125.1ms)[0m commit transaction
|
44
|
+
Migrating to CreateArcadexTokens (20140903233322)
|
45
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
46
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903233322"]]
|
48
|
+
[1m[35m (146.5ms)[0m commit transaction
|
49
|
+
Migrating to AddIndexToToken (20140903233323)
|
50
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
51
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
52
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903233323"]]
|
53
|
+
[1m[35m (147.5ms)[0m commit transaction
|
54
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
55
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
64
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (130.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
73
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
74
|
+
[1m[36m (120.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
75
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
76
|
+
Migrating to CreatePeopleUsers (20140903234520)
|
77
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
78
|
+
[1m[35m (1.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903234520"]]
|
80
|
+
[1m[35m (144.8ms)[0m commit transaction
|
81
|
+
Migrating to CreateArcadexTokens (20140903234521)
|
82
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
83
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903234521"]]
|
85
|
+
[1m[35m (126.0ms)[0m commit transaction
|
86
|
+
Migrating to AddIndexToToken (20140903234522)
|
87
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
88
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
89
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903234522"]]
|
90
|
+
[1m[35m (126.0ms)[0m commit transaction
|
91
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
92
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (140.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
101
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
102
|
+
[1m[36m (143.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
103
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
104
|
+
Migrating to CreatePeopleUsers (20140903235736)
|
105
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
106
|
+
[1m[35m (1.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903235736"]]
|
108
|
+
[1m[35m (101.7ms)[0m commit transaction
|
109
|
+
Migrating to CreateArcadexTokens (20140903235737)
|
110
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
111
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903235737"]]
|
113
|
+
[1m[35m (101.9ms)[0m commit transaction
|
114
|
+
Migrating to AddIndexToToken (20140903235738)
|
115
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
116
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
117
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140903235738"]]
|
118
|
+
[1m[35m (136.2ms)[0m commit transaction
|
119
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
120
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[36m (258.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
244
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
245
|
+
[1m[36m (142.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
246
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
247
|
+
Migrating to CreatePeopleUsers (20140904011523)
|
248
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
249
|
+
[1m[35m (1.3ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904011523"]]
|
251
|
+
[1m[35m (143.2ms)[0m commit transaction
|
252
|
+
Migrating to CreateArcadexTokens (20140904011524)
|
253
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
254
|
+
[1m[35m (1.3ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904011524"]]
|
256
|
+
[1m[35m (136.7ms)[0m commit transaction
|
257
|
+
Migrating to AddIndexToToken (20140904011525)
|
258
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
259
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
260
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904011525"]]
|
261
|
+
[1m[35m (125.6ms)[0m commit transaction
|
262
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
263
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (143.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
272
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
273
|
+
[1m[36m (142.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
274
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
275
|
+
Migrating to CreatePeopleUsers (20140904011800)
|
276
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
277
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904011800"]]
|
279
|
+
[1m[35m (144.3ms)[0m commit transaction
|
280
|
+
Migrating to CreateArcadexTokens (20140904011801)
|
281
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
282
|
+
[1m[35m (1.0ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904011801"]]
|
284
|
+
[1m[35m (136.8ms)[0m commit transaction
|
285
|
+
Migrating to AddIndexToToken (20140904011802)
|
286
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
287
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
288
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904011802"]]
|
289
|
+
[1m[35m (124.4ms)[0m commit transaction
|
290
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
291
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (231.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
300
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
301
|
+
[1m[36m (142.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
302
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
303
|
+
Migrating to CreatePeopleUsers (20140904012614)
|
304
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
305
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904012614"]]
|
307
|
+
[1m[35m (172.0ms)[0m commit transaction
|
308
|
+
Migrating to CreateArcadexTokens (20140904012615)
|
309
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
310
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904012615"]]
|
312
|
+
[1m[35m (185.2ms)[0m commit transaction
|
313
|
+
Migrating to AddIndexToToken (20140904012616)
|
314
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
315
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
316
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904012616"]]
|
317
|
+
[1m[35m (246.8ms)[0m commit transaction
|
318
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
319
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m 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
|
+
[1m[36mPeople::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users"[0m
|
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
|
+
[1m[35mPeople::User Load (0.2ms)[0m 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
|
+
[1m[36mPeople::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users"[0m
|
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
|
+
[1m[35mPeople::User Load (0.2ms)[0m 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
|
+
[1m[36mArcadex::Token Load (0.2ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens"[0m
|
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
|
+
[1m[36m (119.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
451
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
452
|
+
[1m[36m (131.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
453
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
454
|
+
Migrating to CreatePeopleUsers (20140904013305)
|
455
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
456
|
+
[1m[35m (0.9ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904013305"]]
|
458
|
+
[1m[35m (135.5ms)[0m commit transaction
|
459
|
+
Migrating to CreateArcadexTokens (20140904013306)
|
460
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
461
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904013306"]]
|
463
|
+
[1m[35m (196.2ms)[0m commit transaction
|
464
|
+
Migrating to AddIndexToToken (20140904013307)
|
465
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
466
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
467
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904013307"]]
|
468
|
+
[1m[35m (130.0ms)[0m commit transaction
|
469
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
470
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (274.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
479
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
480
|
+
[1m[36m (142.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
481
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
482
|
+
Migrating to CreatePeopleUsers (20140904013524)
|
483
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
484
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904013524"]]
|
486
|
+
[1m[35m (150.5ms)[0m commit transaction
|
487
|
+
Migrating to CreateArcadexTokens (20140904013525)
|
488
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
489
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904013525"]]
|
491
|
+
[1m[35m (179.8ms)[0m commit transaction
|
492
|
+
Migrating to AddIndexToToken (20140904013526)
|
493
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
494
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
495
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904013526"]]
|
496
|
+
[1m[35m (157.7ms)[0m commit transaction
|
497
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
498
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[35mPeople::User Load (0.2ms)[0m 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
|
+
[1m[36mPeople::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users"[0m
|
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
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m 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
|
+
[1m[36mArcadex::Token Load (0.3ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens"[0m
|
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
|
+
[1m[36m (141.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
644
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
645
|
+
[1m[36m (143.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
646
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
647
|
+
Migrating to CreatePeopleUsers (20140904040857)
|
648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
649
|
+
[1m[35m (2.4ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904040857"]]
|
651
|
+
[1m[35m (141.5ms)[0m commit transaction
|
652
|
+
Migrating to CreateArcadexTokens (20140904040858)
|
653
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
654
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904040858"]]
|
656
|
+
[1m[35m (136.1ms)[0m commit transaction
|
657
|
+
Migrating to AddIndexToToken (20140904040859)
|
658
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
659
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
660
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904040859"]]
|
661
|
+
[1m[35m (163.1ms)[0m commit transaction
|
662
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
663
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
672
|
+
Migrating to CreatePeopleUsers (20140904042139)
|
673
|
+
[1m[35m (0.1ms)[0m begin transaction
|
674
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
677
|
+
[1m[36m (244.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
678
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
679
|
+
[1m[36m (142.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
680
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
681
|
+
Migrating to CreatePeopleUsers (20140904042252)
|
682
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
683
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042252"]]
|
685
|
+
[1m[35m (145.4ms)[0m commit transaction
|
686
|
+
Migrating to CreateArcadexTokens (20140904042253)
|
687
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
688
|
+
[1m[35m (1.1ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042253"]]
|
690
|
+
[1m[35m (137.2ms)[0m commit transaction
|
691
|
+
Migrating to AddIndexToToken (20140904042254)
|
692
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
693
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
694
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042254"]]
|
695
|
+
[1m[35m (138.7ms)[0m commit transaction
|
696
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
697
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (117.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
706
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
707
|
+
[1m[36m (142.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
708
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
709
|
+
Migrating to CreatePeopleUsers (20140904042534)
|
710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
711
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042534"]]
|
713
|
+
[1m[35m (140.8ms)[0m commit transaction
|
714
|
+
Migrating to CreateArcadexTokens (20140904042535)
|
715
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
716
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042535"]]
|
718
|
+
[1m[35m (140.7ms)[0m commit transaction
|
719
|
+
Migrating to AddIndexToToken (20140904042536)
|
720
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
721
|
+
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
722
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042536"]]
|
723
|
+
[1m[35m (191.7ms)[0m commit transaction
|
724
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
725
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (177.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
734
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
735
|
+
[1m[36m (143.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
736
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
737
|
+
Migrating to CreatePeopleUsers (20140904042854)
|
738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
739
|
+
[1m[35m (1.1ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042854"]]
|
741
|
+
[1m[35m (139.6ms)[0m commit transaction
|
742
|
+
Migrating to CreateArcadexTokens (20140904042855)
|
743
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
744
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042855"]]
|
746
|
+
[1m[35m (139.7ms)[0m commit transaction
|
747
|
+
Migrating to AddIndexToToken (20140904042856)
|
748
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
749
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
750
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904042856"]]
|
751
|
+
[1m[35m (163.9ms)[0m commit transaction
|
752
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
753
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (144.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
762
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
763
|
+
[1m[36m (145.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
764
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
765
|
+
Migrating to CreatePeopleUsers (20140904043218)
|
766
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
767
|
+
[1m[35m (0.8ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904043218"]]
|
769
|
+
[1m[35m (162.5ms)[0m commit transaction
|
770
|
+
Migrating to CreateArcadexTokens (20140904043219)
|
771
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
772
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904043219"]]
|
774
|
+
[1m[35m (141.2ms)[0m commit transaction
|
775
|
+
Migrating to AddIndexToToken (20140904043220)
|
776
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
777
|
+
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
778
|
+
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904043220"]]
|
779
|
+
[1m[35m (222.7ms)[0m commit transaction
|
780
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
781
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[36m (151.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
830
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
831
|
+
[1m[36m (143.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
832
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
833
|
+
Migrating to CreatePeopleUsers (20140904044327)
|
834
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
835
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904044327"]]
|
837
|
+
[1m[35m (184.9ms)[0m commit transaction
|
838
|
+
Migrating to CreateArcadexTokens (20140904044328)
|
839
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
840
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904044328"]]
|
842
|
+
[1m[35m (179.9ms)[0m commit transaction
|
843
|
+
Migrating to AddIndexToToken (20140904044329)
|
844
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
845
|
+
[1m[35m (1.8ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
846
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904044329"]]
|
847
|
+
[1m[35m (156.7ms)[0m commit transaction
|
848
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
849
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m 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
|
+
[1m[36mPeople::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users"[0m
|
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
|
+
[1m[35mPeople::User Load (0.2ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
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
|
+
[1m[35mArcadex::Token Load (0.2ms)[0m 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
|
+
[1m[36mArcadex::Token Load (0.5ms)[0m [1mSELECT "arcadex_tokens".* FROM "arcadex_tokens" WHERE "arcadex_tokens"."auth_token" IS NULL LIMIT 1[0m
|
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
|
+
[1m[35mPeople::User Load (0.2ms)[0m 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
|
+
[1m[36mPeople::User Load (0.2ms)[0m [1mSELECT "people_users".* FROM "people_users"[0m
|
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
|
+
[1m[35mPeople::User Load (0.2ms)[0m 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
|
+
[1m[36m (133.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1326
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1327
|
+
[1m[36m (131.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1328
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1329
|
+
Migrating to CreatePeopleUsers (20140904051247)
|
1330
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1331
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051247"]]
|
1333
|
+
[1m[35m (193.5ms)[0m commit transaction
|
1334
|
+
Migrating to CreateArcadexTokens (20140904051248)
|
1335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1336
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051248"]]
|
1338
|
+
[1m[35m (184.9ms)[0m commit transaction
|
1339
|
+
Migrating to AddIndexToToken (20140904051249)
|
1340
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1341
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1342
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051249"]]
|
1343
|
+
[1m[35m (229.8ms)[0m commit transaction
|
1344
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1345
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (144.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1354
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1355
|
+
[1m[36m (142.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1356
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1357
|
+
Migrating to CreatePeopleUsers (20140904051655)
|
1358
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1359
|
+
[1m[35m (1.1ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051655"]]
|
1361
|
+
[1m[35m (159.4ms)[0m commit transaction
|
1362
|
+
Migrating to CreateArcadexTokens (20140904051656)
|
1363
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1364
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051656"]]
|
1366
|
+
[1m[35m (179.7ms)[0m commit transaction
|
1367
|
+
Migrating to AddIndexToToken (20140904051657)
|
1368
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1369
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1370
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051657"]]
|
1371
|
+
[1m[35m (158.3ms)[0m commit transaction
|
1372
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1373
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (137.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1382
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
1383
|
+
[1m[36m (142.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1384
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1385
|
+
Migrating to CreatePeopleUsers (20140904051919)
|
1386
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1387
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051919"]]
|
1389
|
+
[1m[35m (155.6ms)[0m commit transaction
|
1390
|
+
Migrating to CreateArcadexTokens (20140904051920)
|
1391
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1392
|
+
[1m[35m (2.4ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051920"]]
|
1394
|
+
[1m[35m (178.2ms)[0m commit transaction
|
1395
|
+
Migrating to AddIndexToToken (20140904051921)
|
1396
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1397
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1398
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904051921"]]
|
1399
|
+
[1m[35m (157.9ms)[0m commit transaction
|
1400
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1401
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (145.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1410
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1411
|
+
[1m[36m (143.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1412
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1413
|
+
Migrating to CreatePeopleUsers (20140904052053)
|
1414
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1415
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904052053"]]
|
1417
|
+
[1m[35m (147.8ms)[0m commit transaction
|
1418
|
+
Migrating to CreateArcadexTokens (20140904052054)
|
1419
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1420
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904052054"]]
|
1422
|
+
[1m[35m (173.4ms)[0m commit transaction
|
1423
|
+
Migrating to AddIndexToToken (20140904052055)
|
1424
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1425
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1426
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904052055"]]
|
1427
|
+
[1m[35m (158.0ms)[0m commit transaction
|
1428
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1429
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (140.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1438
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1439
|
+
[1m[36m (152.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1440
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.8ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1441
|
+
Migrating to CreatePeopleUsers (20140904234125)
|
1442
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1443
|
+
[1m[35m (1.5ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904234125"]]
|
1445
|
+
[1m[35m (171.6ms)[0m commit transaction
|
1446
|
+
Migrating to CreateArcadexTokens (20140904234126)
|
1447
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1448
|
+
[1m[35m (1.4ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904234126"]]
|
1450
|
+
[1m[35m (179.9ms)[0m commit transaction
|
1451
|
+
Migrating to AddIndexToToken (20140904234127)
|
1452
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1453
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1454
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140904234127"]]
|
1455
|
+
[1m[35m (168.9ms)[0m commit transaction
|
1456
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1457
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (157.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1466
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
1467
|
+
[1m[36m (175.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1468
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.5ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1469
|
+
Migrating to CreatePeopleUsers (20140905010142)
|
1470
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1471
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905010142"]]
|
1473
|
+
[1m[35m (148.7ms)[0m commit transaction
|
1474
|
+
Migrating to CreateArcadexTokens (20140905010143)
|
1475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1476
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905010143"]]
|
1478
|
+
[1m[35m (218.2ms)[0m commit transaction
|
1479
|
+
Migrating to AddIndexToToken (20140905010144)
|
1480
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1481
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_arcadex_tokens_on_auth_token" ON "arcadex_tokens" ("auth_token")
|
1482
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140905010144"]]
|
1483
|
+
[1m[35m (159.0ms)[0m commit transaction
|
1484
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1485
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1494
|
+
Migrating to CreateSchoolTeachers (20140905011102)
|
1495
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1496
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "school_teachers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post" integer, "created_at" datetime, "updated_at" datetime) [0m
|
1497
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140905011102"]]
|
1498
|
+
[1m[36m (171.8ms)[0m [1mcommit transaction[0m
|
1499
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1500
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
1508
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1509
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1510
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|