permitter 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +302 -0
- data/Rakefile +32 -0
- data/lib/generators/permitter/permission/USAGE +5 -0
- data/lib/generators/permitter/permission/permission_generator.rb +16 -0
- data/lib/generators/permitter/permission/templates/permission.rb +22 -0
- data/lib/generators/permitter/permission/templates/permission_spec.rb +17 -0
- data/lib/permitter.rb +4 -0
- data/lib/permitter/controller_additions.rb +43 -0
- data/lib/permitter/exceptions.rb +17 -0
- data/lib/permitter/matchers.rb +11 -0
- data/lib/permitter/model_additions.rb +30 -0
- data/lib/permitter/permission.rb +72 -0
- data/lib/permitter/version.rb +3 -0
- data/spec/README.rdoc +21 -0
- data/spec/controllers/projects_controller_spec.rb +243 -0
- data/spec/controllers/users_controller_spec.rb +77 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +19 -0
- data/spec/dummy/app/controllers/projects_controller.rb +49 -0
- data/spec/dummy/app/controllers/users_controller.rb +17 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/permission.rb +26 -0
- data/spec/dummy/app/models/project.rb +3 -0
- data/spec/dummy/app/models/user.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/projects/edit.html.erb +0 -0
- data/spec/dummy/app/views/projects/index.html.erb +0 -0
- data/spec/dummy/app/views/projects/new.html.erb +0 -0
- data/spec/dummy/app/views/projects/show.html.erb +0 -0
- data/spec/dummy/app/views/users/index.html.erb +0 -0
- data/spec/dummy/app/views/users/show.html.erb +0 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +59 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20131205175023_create_projects.rb +10 -0
- data/spec/dummy/db/migrate/20131205175100_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20131210152022_add_columns_to_projects.rb +5 -0
- data/spec/dummy/db/schema.rb +31 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +825 -0
- data/spec/dummy/log/test.log +44662 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories/project.rb +6 -0
- data/spec/factories/user.rb +10 -0
- data/spec/models/permission_spec.rb +72 -0
- data/spec/permitter/controller_additions_spec.rb +44 -0
- data/spec/permitter/exceptions_spec.rb +36 -0
- data/spec/permitter/matchers_spec.rb +9 -0
- data/spec/permitter/model_additions_spec.rb +138 -0
- data/spec/permitter/permission_spec.rb +84 -0
- data/spec/spec_helper.rb +32 -0
- metadata +278 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = 'ef39aa9d0d6c731b2edfe9ffabd47dc3e4255e3756d801df7863e18d254a4a34e7aab237108e13f2ae29e9db90557dcacf2f3c9e174f67db3a665b7348b253fc'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,59 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
resources :projects
|
3
|
+
resources :users, only: [:index, :show]
|
4
|
+
|
5
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
6
|
+
# See how all your routes lay out with "rake routes".
|
7
|
+
|
8
|
+
# You can have the root of your site routed with "root"
|
9
|
+
# root 'welcome#index'
|
10
|
+
|
11
|
+
# Example of regular route:
|
12
|
+
# get 'products/:id' => 'catalog#view'
|
13
|
+
|
14
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
15
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
16
|
+
|
17
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
18
|
+
# resources :products
|
19
|
+
|
20
|
+
# Example resource route with options:
|
21
|
+
# resources :products do
|
22
|
+
# member do
|
23
|
+
# get 'short'
|
24
|
+
# post 'toggle'
|
25
|
+
# end
|
26
|
+
#
|
27
|
+
# collection do
|
28
|
+
# get 'sold'
|
29
|
+
# end
|
30
|
+
# end
|
31
|
+
|
32
|
+
# Example resource route with sub-resources:
|
33
|
+
# resources :products do
|
34
|
+
# resources :comments, :sales
|
35
|
+
# resource :seller
|
36
|
+
# end
|
37
|
+
|
38
|
+
# Example resource route with more complex sub-resources:
|
39
|
+
# resources :products do
|
40
|
+
# resources :comments
|
41
|
+
# resources :sales do
|
42
|
+
# get 'recent', on: :collection
|
43
|
+
# end
|
44
|
+
# end
|
45
|
+
|
46
|
+
# Example resource route with concerns:
|
47
|
+
# concern :toggleable do
|
48
|
+
# post 'toggle'
|
49
|
+
# end
|
50
|
+
# resources :posts, concerns: :toggleable
|
51
|
+
# resources :photos, concerns: :toggleable
|
52
|
+
|
53
|
+
# Example resource route within a namespace:
|
54
|
+
# namespace :admin do
|
55
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
56
|
+
# # (app/controllers/admin/products_controller.rb)
|
57
|
+
# resources :products
|
58
|
+
# end
|
59
|
+
end
|
Binary file
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20131210152022) do
|
15
|
+
|
16
|
+
create_table "projects", force: true do |t|
|
17
|
+
t.integer "user_id"
|
18
|
+
t.string "title"
|
19
|
+
t.datetime "created_at"
|
20
|
+
t.datetime "updated_at"
|
21
|
+
t.boolean "sticky"
|
22
|
+
end
|
23
|
+
|
24
|
+
create_table "users", force: true do |t|
|
25
|
+
t.string "username"
|
26
|
+
t.boolean "admin"
|
27
|
+
t.datetime "created_at"
|
28
|
+
t.datetime "updated_at"
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
Binary file
|
@@ -0,0 +1,825 @@
|
|
1
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4
|
+
Migrating to CreateProjects (20131205175023)
|
5
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
7
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
8
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
9
|
+
Migrating to CreateUsers (20131205175100)
|
10
|
+
[1m[35m (0.1ms)[0m begin transaction
|
11
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
12
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
13
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
14
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
15
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
16
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
17
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
18
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
19
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
20
|
+
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
21
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
22
|
+
[1m[35m (1.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
23
|
+
[1m[36m (1.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
24
|
+
Processing by ProjectsController#index as HTML
|
25
|
+
Completed 500 Internal Server Error in 2ms
|
26
|
+
Processing by ProjectsController#index as HTML
|
27
|
+
Completed 500 Internal Server Error in 1ms
|
28
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
29
|
+
[1m[35mSQL (6.6ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:11:53 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:11:53 UTC +00:00]]
|
30
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
31
|
+
[1m[35m (0.1ms)[0m begin transaction
|
32
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:11:53 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:11:53 UTC +00:00]]
|
33
|
+
[1m[35m (0.8ms)[0m commit transaction
|
34
|
+
Processing by ProjectsController#index as HTML
|
35
|
+
Completed 500 Internal Server Error in 1ms
|
36
|
+
Processing by ProjectsController#index as HTML
|
37
|
+
Completed 500 Internal Server Error in 2ms
|
38
|
+
Processing by ProjectsController#index as HTML
|
39
|
+
Completed 500 Internal Server Error in 1ms
|
40
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
41
|
+
[1m[35mSQL (4.8ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:15:00 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:15:00 UTC +00:00]]
|
42
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
43
|
+
[1m[35m (0.1ms)[0m begin transaction
|
44
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:15:00 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:15:00 UTC +00:00]]
|
45
|
+
[1m[35m (0.7ms)[0m commit transaction
|
46
|
+
Processing by ProjectsController#index as HTML
|
47
|
+
Completed 500 Internal Server Error in 1ms
|
48
|
+
Processing by ProjectsController#index as HTML
|
49
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
50
|
+
Redirected to http://test.host/
|
51
|
+
Completed 302 Found in 15ms (ActiveRecord: 2.5ms)
|
52
|
+
Processing by ProjectsController#index as HTML
|
53
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
54
|
+
Redirected to http://test.host/
|
55
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
56
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
+
[1m[35mSQL (5.2ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:18:04 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:18:04 UTC +00:00]]
|
58
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
59
|
+
[1m[35m (0.1ms)[0m begin transaction
|
60
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:18:04 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:18:04 UTC +00:00]]
|
61
|
+
[1m[35m (0.7ms)[0m commit transaction
|
62
|
+
Processing by ProjectsController#index as HTML
|
63
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
64
|
+
Redirected to http://test.host/
|
65
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
66
|
+
Processing by ProjectsController#index as HTML
|
67
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
68
|
+
Redirected to http://test.host/
|
69
|
+
Completed 302 Found in 18ms (ActiveRecord: 3.2ms)
|
70
|
+
Processing by ProjectsController#index as HTML
|
71
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
72
|
+
Redirected to http://test.host/
|
73
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
74
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
75
|
+
[1m[35mSQL (6.5ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:21:11 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:21:11 UTC +00:00]]
|
76
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
77
|
+
[1m[35m (0.1ms)[0m begin transaction
|
78
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:21:11 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:21:11 UTC +00:00]]
|
79
|
+
[1m[35m (0.7ms)[0m commit transaction
|
80
|
+
Processing by ProjectsController#index as HTML
|
81
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
82
|
+
Redirected to http://test.host/
|
83
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
84
|
+
Processing by ProjectsController#index as HTML
|
85
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
86
|
+
Redirected to http://test.host/
|
87
|
+
Completed 302 Found in 13ms (ActiveRecord: 2.6ms)
|
88
|
+
[1m[35m (0.1ms)[0m begin transaction
|
89
|
+
[1m[36mSQL (6.2ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:22:28 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:22:28 UTC +00:00]]
|
90
|
+
[1m[35m (0.9ms)[0m commit transaction
|
91
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
92
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:22:28 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:22:28 UTC +00:00]]
|
93
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
94
|
+
Processing by ProjectsController#index as HTML
|
95
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
96
|
+
Redirected to http://test.host/
|
97
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
98
|
+
Processing by ProjectsController#index as HTML
|
99
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
100
|
+
Redirected to http://test.host/
|
101
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
103
|
+
[1m[35mSQL (7.0ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:23:50 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:23:50 UTC +00:00]]
|
104
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
105
|
+
[1m[35m (0.1ms)[0m begin transaction
|
106
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:23:50 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:23:50 UTC +00:00]]
|
107
|
+
[1m[35m (0.8ms)[0m commit transaction
|
108
|
+
Processing by ProjectsController#index as HTML
|
109
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
110
|
+
Redirected to http://test.host/
|
111
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.9ms)
|
112
|
+
Processing by ProjectsController#index as HTML
|
113
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
114
|
+
Redirected to http://test.host/
|
115
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
116
|
+
Processing by ProjectsController#index as HTML
|
117
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
118
|
+
Redirected to http://test.host/
|
119
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
120
|
+
Processing by ProjectsController#index as HTML
|
121
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
122
|
+
Redirected to http://test.host/
|
123
|
+
Completed 302 Found in 15ms (ActiveRecord: 4.7ms)
|
124
|
+
Processing by ProjectsController#index as HTML
|
125
|
+
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
126
|
+
Redirected to http://test.host/
|
127
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
129
|
+
[1m[35mSQL (5.6ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:28:05 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:28:05 UTC +00:00]]
|
130
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
131
|
+
[1m[35m (0.1ms)[0m begin transaction
|
132
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:28:05 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:28:05 UTC +00:00]]
|
133
|
+
[1m[35m (0.8ms)[0m commit transaction
|
134
|
+
Processing by ProjectsController#index as HTML
|
135
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
136
|
+
Redirected to http://test.host/
|
137
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
138
|
+
Processing by ProjectsController#index as HTML
|
139
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
140
|
+
Redirected to http://test.host/projects
|
141
|
+
Completed 302 Found in 13ms (ActiveRecord: 2.4ms)
|
142
|
+
Processing by ProjectsController#index as HTML
|
143
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
144
|
+
Redirected to http://test.host/projects
|
145
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
147
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:28:17 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:28:17 UTC +00:00]]
|
148
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
149
|
+
[1m[35m (0.1ms)[0m begin transaction
|
150
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:28:17 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:28:17 UTC +00:00]]
|
151
|
+
[1m[35m (0.8ms)[0m commit transaction
|
152
|
+
Processing by ProjectsController#index as HTML
|
153
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
154
|
+
Redirected to http://test.host/projects
|
155
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
156
|
+
Processing by ProjectsController#index as HTML
|
157
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
158
|
+
Redirected to http://test.host/projects
|
159
|
+
Completed 302 Found in 17ms (ActiveRecord: 2.3ms)
|
160
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
161
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
162
|
+
[1m[36m (4.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
163
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
164
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
165
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
166
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
167
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
168
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
169
|
+
[1m[35m (0.1ms)[0m begin transaction
|
170
|
+
[1m[36mSQL (5.5ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:30:04 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:30:04 UTC +00:00]]
|
171
|
+
[1m[35m (0.9ms)[0m commit transaction
|
172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
173
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:30:04 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:30:04 UTC +00:00]]
|
174
|
+
[1m[36m (2.0ms)[0m [1mcommit transaction[0m
|
175
|
+
Processing by ProjectsController#index as HTML
|
176
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
177
|
+
Redirected to http://test.host/projects
|
178
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
179
|
+
Processing by ProjectsController#index as HTML
|
180
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
181
|
+
Redirected to http://test.host/projects
|
182
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
183
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
184
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:30:10 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:30:10 UTC +00:00]]
|
185
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
186
|
+
[1m[35m (0.1ms)[0m begin transaction
|
187
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:30:10 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:30:10 UTC +00:00]]
|
188
|
+
[1m[35m (0.8ms)[0m commit transaction
|
189
|
+
Processing by ProjectsController#index as HTML
|
190
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
191
|
+
Redirected to http://test.host/projects
|
192
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.6ms)
|
193
|
+
Processing by ProjectsController#index as HTML
|
194
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
195
|
+
Redirected to http://test.host/projects
|
196
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
|
197
|
+
Processing by ProjectsController#index as HTML
|
198
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
199
|
+
Redirected to http://test.host/projects
|
200
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
202
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:31:53 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:31:53 UTC +00:00]]
|
203
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
204
|
+
[1m[35m (0.1ms)[0m begin transaction
|
205
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:31:53 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:31:53 UTC +00:00]]
|
206
|
+
[1m[35m (0.7ms)[0m commit transaction
|
207
|
+
Processing by ProjectsController#index as HTML
|
208
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
209
|
+
Completed 200 OK in 9ms (ActiveRecord: 0.7ms)
|
210
|
+
Processing by ProjectsController#index as HTML
|
211
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
212
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.2ms)
|
213
|
+
Processing by ProjectsController#index as HTML
|
214
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
215
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.2ms)
|
216
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
217
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:34:12 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:34:12 UTC +00:00]]
|
218
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
219
|
+
[1m[35m (0.1ms)[0m begin transaction
|
220
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:34:12 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:34:12 UTC +00:00]]
|
221
|
+
[1m[35m (0.9ms)[0m commit transaction
|
222
|
+
Processing by ProjectsController#index as HTML
|
223
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
224
|
+
Completed 200 OK in 13ms (ActiveRecord: 0.6ms)
|
225
|
+
Processing by ProjectsController#index as HTML
|
226
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
227
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.3ms)
|
228
|
+
Processing by ProjectsController#index as HTML
|
229
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
230
|
+
Completed 200 OK in 2ms (ActiveRecord: 0.4ms)
|
231
|
+
Processing by ProjectsController#index as HTML
|
232
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
233
|
+
Completed 200 OK in 10ms (ActiveRecord: 1.7ms)
|
234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
235
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:38:25 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:38:25 UTC +00:00]]
|
236
|
+
[1m[35m (0.8ms)[0m commit transaction
|
237
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
238
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:38:25 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:38:25 UTC +00:00]]
|
239
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
240
|
+
Processing by ProjectsController#index as HTML
|
241
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
242
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.2ms)
|
243
|
+
Processing by ProjectsController#index as HTML
|
244
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
245
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.2ms)
|
246
|
+
Processing by ProjectsController#index as HTML
|
247
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
248
|
+
Completed 500 Internal Server Error in 11ms
|
249
|
+
Processing by ProjectsController#index as HTML
|
250
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
251
|
+
Completed 500 Internal Server Error in 1ms
|
252
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
253
|
+
[1m[35mSQL (4.4ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:39:20 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:39:20 UTC +00:00]]
|
254
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
255
|
+
[1m[35m (0.1ms)[0m begin transaction
|
256
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:39:20 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:39:20 UTC +00:00]]
|
257
|
+
[1m[35m (0.8ms)[0m commit transaction
|
258
|
+
Processing by ProjectsController#index as HTML
|
259
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
260
|
+
Completed 500 Internal Server Error in 2ms
|
261
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
262
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:41:18 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:41:18 UTC +00:00]]
|
263
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
264
|
+
[1m[35m (0.1ms)[0m begin transaction
|
265
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:41:18 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:41:18 UTC +00:00]]
|
266
|
+
[1m[35m (0.8ms)[0m commit transaction
|
267
|
+
Processing by ProjectsController#index as HTML
|
268
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
269
|
+
Completed 500 Internal Server Error in 10ms
|
270
|
+
Processing by ProjectsController#index as HTML
|
271
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
272
|
+
Completed 500 Internal Server Error in 1ms
|
273
|
+
Processing by ProjectsController#index as HTML
|
274
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
275
|
+
Completed 500 Internal Server Error in 1ms
|
276
|
+
Processing by ProjectsController#index as HTML
|
277
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
278
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
279
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
280
|
+
Completed 500 Internal Server Error in 149298ms
|
281
|
+
Processing by ProjectsController#index as HTML
|
282
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
283
|
+
Completed 500 Internal Server Error in 8209ms
|
284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
285
|
+
[1m[35mSQL (5.7ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:44:14 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:44:14 UTC +00:00]]
|
286
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
287
|
+
[1m[35m (0.1ms)[0m begin transaction
|
288
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:44:14 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:44:14 UTC +00:00]]
|
289
|
+
[1m[35m (0.8ms)[0m commit transaction
|
290
|
+
Processing by ProjectsController#index as HTML
|
291
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
292
|
+
Completed 500 Internal Server Error in 1771ms
|
293
|
+
Processing by ProjectsController#index as HTML
|
294
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
295
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
296
|
+
Rendered projects/index.html.erb within layouts/application (0.5ms)
|
297
|
+
Completed 200 OK in 34703ms (Views: 67.2ms | ActiveRecord: 2.5ms)
|
298
|
+
Processing by ProjectsController#index as HTML
|
299
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
300
|
+
Completed 200 OK in 1848ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
301
|
+
[1m[35m (0.1ms)[0m begin transaction
|
302
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:45:03 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:45:03 UTC +00:00]]
|
303
|
+
[1m[35m (0.8ms)[0m commit transaction
|
304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
305
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:45:03 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:45:03 UTC +00:00]]
|
306
|
+
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
307
|
+
Processing by ProjectsController#index as HTML
|
308
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
309
|
+
Completed 200 OK in 2028ms (Views: 8.0ms | ActiveRecord: 0.2ms)
|
310
|
+
[1m[36mProject Load (0.4ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
311
|
+
Processing by ProjectsController#index as HTML
|
312
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
313
|
+
Completed 500 Internal Server Error in 11ms
|
314
|
+
Processing by ProjectsController#index as HTML
|
315
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
316
|
+
Completed 500 Internal Server Error in 1ms
|
317
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
318
|
+
[1m[35mSQL (3.9ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:45:56 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:45:56 UTC +00:00]]
|
319
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
320
|
+
[1m[35m (0.1ms)[0m begin transaction
|
321
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:45:56 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:45:56 UTC +00:00]]
|
322
|
+
[1m[35m (0.8ms)[0m commit transaction
|
323
|
+
Processing by ProjectsController#index as HTML
|
324
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
325
|
+
Completed 500 Internal Server Error in 1ms
|
326
|
+
Processing by ProjectsController#index as HTML
|
327
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
328
|
+
Rendered projects/index.html.erb within layouts/application (0.5ms)
|
329
|
+
Completed 200 OK in 23623ms (Views: 10.8ms | ActiveRecord: 1.8ms)
|
330
|
+
Processing by ProjectsController#index as HTML
|
331
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
332
|
+
Completed 200 OK in 9750ms (Views: 2.8ms | ActiveRecord: 0.3ms)
|
333
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
334
|
+
[1m[35mSQL (5.6ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:49:59 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:49:59 UTC +00:00]]
|
335
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
336
|
+
[1m[35m (0.1ms)[0m begin transaction
|
337
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:49:59 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:49:59 UTC +00:00]]
|
338
|
+
[1m[35m (0.8ms)[0m commit transaction
|
339
|
+
Processing by ProjectsController#index as HTML
|
340
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
341
|
+
Completed 200 OK in 3842ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
342
|
+
[1m[35mProject Load (0.4ms)[0m SELECT "projects".* FROM "projects"
|
343
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
344
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
345
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
346
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
347
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
348
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
349
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
350
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
351
|
+
[1m[36m (1.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
352
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
353
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:51:08 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:51:08 UTC +00:00]]
|
354
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
355
|
+
[1m[35m (0.1ms)[0m begin transaction
|
356
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:51:08 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:51:08 UTC +00:00]]
|
357
|
+
[1m[35m (0.8ms)[0m commit transaction
|
358
|
+
Processing by ProjectsController#index as HTML
|
359
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
360
|
+
Completed 500 Internal Server Error in 9ms
|
361
|
+
Processing by ProjectsController#index as HTML
|
362
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
363
|
+
Completed 500 Internal Server Error in 1ms
|
364
|
+
Processing by ProjectsController#index as HTML
|
365
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
366
|
+
Completed 500 Internal Server Error in 1ms
|
367
|
+
Processing by ProjectsController#index as HTML
|
368
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
369
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
370
|
+
Completed 200 OK in 28ms (Views: 10.1ms | ActiveRecord: 2.7ms)
|
371
|
+
[1m[35m (0.1ms)[0m begin transaction
|
372
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:51:22 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:51:22 UTC +00:00]]
|
373
|
+
[1m[35m (0.8ms)[0m commit transaction
|
374
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
375
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:51:22 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:51:22 UTC +00:00]]
|
376
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
377
|
+
Processing by ProjectsController#index as HTML
|
378
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
379
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
380
|
+
[1m[36mProject Load (0.4ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
381
|
+
Processing by ProjectsController#index as HTML
|
382
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
383
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
|
384
|
+
Processing by ProjectsController#index as HTML
|
385
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
386
|
+
Completed 500 Internal Server Error in 10ms
|
387
|
+
Processing by ProjectsController#index as HTML
|
388
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
389
|
+
Completed 500 Internal Server Error in 2ms
|
390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
391
|
+
[1m[35mSQL (5.2ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:51:57 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:51:57 UTC +00:00]]
|
392
|
+
[1m[36m (8.1ms)[0m [1mcommit transaction[0m
|
393
|
+
[1m[35m (0.1ms)[0m begin transaction
|
394
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:51:57 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:51:57 UTC +00:00]]
|
395
|
+
[1m[35m (0.9ms)[0m commit transaction
|
396
|
+
Processing by ProjectsController#index as HTML
|
397
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
398
|
+
Completed 500 Internal Server Error in 1ms
|
399
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
400
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:52:02 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:52:02 UTC +00:00]]
|
401
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
402
|
+
[1m[35m (0.1ms)[0m begin transaction
|
403
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:52:02 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:52:02 UTC +00:00]]
|
404
|
+
[1m[35m (1.1ms)[0m commit transaction
|
405
|
+
Processing by ProjectsController#index as HTML
|
406
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
407
|
+
Completed 500 Internal Server Error in 9ms
|
408
|
+
Processing by ProjectsController#index as HTML
|
409
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
410
|
+
Completed 500 Internal Server Error in 1ms
|
411
|
+
Processing by ProjectsController#index as HTML
|
412
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
413
|
+
Completed 500 Internal Server Error in 1ms
|
414
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
415
|
+
[1m[35mSQL (4.3ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:52:07 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:52:07 UTC +00:00]]
|
416
|
+
[1m[36m (4.0ms)[0m [1mcommit transaction[0m
|
417
|
+
[1m[35m (0.1ms)[0m begin transaction
|
418
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:52:07 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:52:07 UTC +00:00]]
|
419
|
+
[1m[35m (0.8ms)[0m commit transaction
|
420
|
+
Processing by ProjectsController#index as HTML
|
421
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
422
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
423
|
+
Completed 200 OK in 18ms (Views: 7.6ms | ActiveRecord: 0.6ms)
|
424
|
+
[1m[35mProject Load (0.5ms)[0m SELECT "projects".* FROM "projects"
|
425
|
+
Processing by ProjectsController#index as HTML
|
426
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
427
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
428
|
+
Processing by ProjectsController#index as HTML
|
429
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
430
|
+
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
431
|
+
Processing by ProjectsController#index as HTML
|
432
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
433
|
+
Rendered projects/index.html.erb within layouts/application (0.5ms)
|
434
|
+
Completed 200 OK in 25ms (Views: 11.4ms | ActiveRecord: 1.7ms)
|
435
|
+
[1m[35m (0.1ms)[0m begin transaction
|
436
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:54:04 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:54:04 UTC +00:00]]
|
437
|
+
[1m[35m (0.9ms)[0m commit transaction
|
438
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
439
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:54:04 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:54:04 UTC +00:00]]
|
440
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
441
|
+
Processing by ProjectsController#index as HTML
|
442
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
443
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
|
444
|
+
[1m[36mProject Load (0.4ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
445
|
+
Processing by ProjectsController#index as HTML
|
446
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
447
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
448
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
449
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
450
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
451
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
452
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
453
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
454
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
455
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
456
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
457
|
+
Processing by ProjectsController#index as HTML
|
458
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
459
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
460
|
+
Completed 200 OK in 35ms (Views: 16.9ms | ActiveRecord: 2.0ms)
|
461
|
+
[1m[35m (0.1ms)[0m begin transaction
|
462
|
+
[1m[36mSQL (4.7ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 19:54:23 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:54:23 UTC +00:00]]
|
463
|
+
[1m[35m (0.8ms)[0m commit transaction
|
464
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
465
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 19:54:23 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 19:54:23 UTC +00:00]]
|
466
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
467
|
+
Processing by ProjectsController#index as HTML
|
468
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
469
|
+
Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.3ms)
|
470
|
+
[1m[36mProject Load (0.4ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
471
|
+
Processing by ProjectsController#index as HTML
|
472
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
473
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
474
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
475
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
476
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
477
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
478
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
479
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
480
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
481
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
482
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
483
|
+
Processing by ProjectsController#index as HTML
|
484
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
485
|
+
Completed 500 Internal Server Error in 26ms
|
486
|
+
Processing by ProjectsController#index as HTML
|
487
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
488
|
+
Completed 500 Internal Server Error in 2ms
|
489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
490
|
+
[1m[35mSQL (5.5ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 20:05:53 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 20:05:53 UTC +00:00]]
|
491
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
492
|
+
[1m[35m (0.1ms)[0m begin transaction
|
493
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:05:53 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 20:05:53 UTC +00:00]]
|
494
|
+
[1m[35m (0.7ms)[0m commit transaction
|
495
|
+
Processing by ProjectsController#index as HTML
|
496
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
497
|
+
Completed 500 Internal Server Error in 2ms
|
498
|
+
Processing by ProjectsController#index as HTML
|
499
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
500
|
+
Rendered projects/index.html.erb within layouts/application (0.5ms)
|
501
|
+
Completed 200 OK in 34ms (Views: 10.0ms | ActiveRecord: 2.7ms)
|
502
|
+
Processing by ProjectsController#index as HTML
|
503
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
504
|
+
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
505
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
506
|
+
[1m[35mSQL (5.0ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 20:06:29 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 20:06:29 UTC +00:00]]
|
507
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
508
|
+
[1m[35m (0.1ms)[0m begin transaction
|
509
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:06:29 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 20:06:29 UTC +00:00]]
|
510
|
+
[1m[35m (0.7ms)[0m commit transaction
|
511
|
+
Processing by ProjectsController#index as HTML
|
512
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
513
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
514
|
+
[1m[35mProject Load (0.6ms)[0m SELECT "projects".* FROM "projects"
|
515
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
516
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
517
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
518
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
519
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
520
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
521
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
522
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
523
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
524
|
+
Processing by ProjectsController#index as HTML
|
525
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
526
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
527
|
+
Completed 200 OK in 73ms (Views: 9.4ms | ActiveRecord: 48.8ms)
|
528
|
+
Processing by ProjectsController#index as HTML
|
529
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
530
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
531
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
532
|
+
[1m[35mSQL (5.3ms)[0m INSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Thu, 05 Dec 2013 20:07:18 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 20:07:18 UTC +00:00]]
|
533
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
534
|
+
[1m[35m (0.1ms)[0m begin transaction
|
535
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:07:19 UTC +00:00], ["updated_at", Thu, 05 Dec 2013 20:07:19 UTC +00:00]]
|
536
|
+
[1m[35m (0.8ms)[0m commit transaction
|
537
|
+
Processing by ProjectsController#index as HTML
|
538
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
539
|
+
Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.3ms)
|
540
|
+
[1m[35mProject Load (0.5ms)[0m SELECT "projects".* FROM "projects"
|
541
|
+
Processing by ProjectsController#index as HTML
|
542
|
+
[1m[36mUser Load (0.7ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
543
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
544
|
+
Completed 200 OK in 36ms (Views: 13.6ms | ActiveRecord: 2.7ms)
|
545
|
+
Processing by ProjectsController#index as HTML
|
546
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
547
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
549
|
+
[1m[35mSQL (6.0ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:17:06 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:17:06 UTC +00:00]]
|
550
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
551
|
+
[1m[35m (0.1ms)[0m begin transaction
|
552
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:17:06 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:17:06 UTC +00:00]]
|
553
|
+
[1m[35m (0.8ms)[0m commit transaction
|
554
|
+
Processing by ProjectsController#index as HTML
|
555
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
556
|
+
Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.3ms)
|
557
|
+
[1m[35mProject Load (0.5ms)[0m SELECT "projects".* FROM "projects"
|
558
|
+
Processing by ProjectsController#index as HTML
|
559
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
560
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
561
|
+
Completed 200 OK in 27ms (Views: 10.2ms | ActiveRecord: 2.5ms)
|
562
|
+
[1m[35m (0.1ms)[0m begin transaction
|
563
|
+
[1m[36mSQL (4.8ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:17:22 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:17:22 UTC +00:00]]
|
564
|
+
[1m[35m (1.1ms)[0m commit transaction
|
565
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
566
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:17:22 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:17:22 UTC +00:00]]
|
567
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
568
|
+
Processing by ProjectsController#index as HTML
|
569
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
570
|
+
Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 0.3ms)
|
571
|
+
[1m[36mProject Load (0.5ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
572
|
+
Processing by ProjectsController#index as HTML
|
573
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
574
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.3ms)
|
575
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
576
|
+
[1m[35mSQL (5.7ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:17:34 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:17:34 UTC +00:00]]
|
577
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
578
|
+
[1m[35m (0.1ms)[0m begin transaction
|
579
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:17:34 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:17:34 UTC +00:00]]
|
580
|
+
[1m[35m (0.9ms)[0m commit transaction
|
581
|
+
Processing by ProjectsController#index as HTML
|
582
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
583
|
+
Rendered projects/index.html.erb within layouts/application (0.3ms)
|
584
|
+
Completed 200 OK in 19ms (Views: 8.7ms | ActiveRecord: 0.6ms)
|
585
|
+
[1m[35mProject Load (0.4ms)[0m SELECT "projects".* FROM "projects"
|
586
|
+
Processing by ProjectsController#index as HTML
|
587
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
588
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
|
589
|
+
Processing by ProjectsController#index as HTML
|
590
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
591
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.3ms)
|
592
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
593
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
594
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
595
|
+
Migrating to CreateProjects (20131205175023)
|
596
|
+
[1m[35m (0.1ms)[0m begin transaction
|
597
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
598
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
599
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
600
|
+
Migrating to CreateUsers (20131205175100)
|
601
|
+
[1m[35m (0.1ms)[0m begin transaction
|
602
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
603
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
604
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
605
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
606
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
607
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
608
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
609
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
610
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
611
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
612
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
613
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
614
|
+
[1m[35mSQL (4.8ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:18:40 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:18:40 UTC +00:00]]
|
615
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
616
|
+
[1m[35m (0.1ms)[0m begin transaction
|
617
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:18:40 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:18:40 UTC +00:00]]
|
618
|
+
[1m[35m (0.8ms)[0m commit transaction
|
619
|
+
Processing by ProjectsController#index as HTML
|
620
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
621
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
622
|
+
Completed 200 OK in 19ms (Views: 8.4ms | ActiveRecord: 0.7ms)
|
623
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
624
|
+
Processing by ProjectsController#index as HTML
|
625
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
626
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
627
|
+
Processing by ProjectsController#index as HTML
|
628
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
629
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.3ms)
|
630
|
+
Processing by ProjectsController#index as HTML
|
631
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
632
|
+
Rendered projects/index.html.erb within layouts/application (0.5ms)
|
633
|
+
Completed 200 OK in 24ms (Views: 9.4ms | ActiveRecord: 1.7ms)
|
634
|
+
Processing by ProjectsController#index as HTML
|
635
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
636
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
638
|
+
[1m[35mSQL (3.8ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:18:46 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:18:46 UTC +00:00]]
|
639
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
640
|
+
[1m[35m (0.1ms)[0m begin transaction
|
641
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:18:46 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:18:46 UTC +00:00]]
|
642
|
+
[1m[35m (0.8ms)[0m commit transaction
|
643
|
+
Processing by ProjectsController#index as HTML
|
644
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
645
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
|
646
|
+
[1m[35mProject Load (0.3ms)[0m SELECT "projects".* FROM "projects"
|
647
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
648
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
649
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
650
|
+
Migrating to CreateProjects (20131205175023)
|
651
|
+
[1m[35m (0.1ms)[0m begin transaction
|
652
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
653
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
654
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
655
|
+
Migrating to CreateUsers (20131205175100)
|
656
|
+
[1m[35m (0.1ms)[0m begin transaction
|
657
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
658
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
659
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
660
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
661
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
662
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
663
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
664
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
665
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
666
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
667
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
668
|
+
Processing by ProjectsController#index as HTML
|
669
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
670
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
671
|
+
Completed 200 OK in 30ms (Views: 12.2ms | ActiveRecord: 2.4ms)
|
672
|
+
[1m[35m (0.2ms)[0m begin transaction
|
673
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:20:42 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:20:42 UTC +00:00]]
|
674
|
+
[1m[35m (2.6ms)[0m commit transaction
|
675
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
676
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:20:42 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:20:42 UTC +00:00]]
|
677
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
678
|
+
Processing by ProjectsController#index as HTML
|
679
|
+
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
680
|
+
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.6ms)
|
681
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
682
|
+
Processing by ProjectsController#index as HTML
|
683
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
684
|
+
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.3ms)
|
685
|
+
Processing by ProjectsController#index as HTML
|
686
|
+
[1m[36mUser Load (0.5ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
687
|
+
Rendered projects/index.html.erb within layouts/application (0.4ms)
|
688
|
+
Completed 200 OK in 25ms (Views: 7.8ms | ActiveRecord: 3.1ms)
|
689
|
+
Processing by ProjectsController#index as HTML
|
690
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
691
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
692
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
693
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 05 Dec 2013 20:20:47 UTC +00:00], ["title", "ti1tle"], ["updated_at", Thu, 05 Dec 2013 20:20:47 UTC +00:00]]
|
694
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
695
|
+
[1m[35m (0.1ms)[0m begin transaction
|
696
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "projects" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 05 Dec 2013 20:20:47 UTC +00:00], ["title", "ti2tle"], ["updated_at", Thu, 05 Dec 2013 20:20:47 UTC +00:00]]
|
697
|
+
[1m[35m (3.0ms)[0m commit transaction
|
698
|
+
Processing by ProjectsController#index as HTML
|
699
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
700
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.3ms)
|
701
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
702
|
+
[1m[36m (0.2ms)[0m [1mTRUNCATE TABLE projects;[0m
|
703
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
704
|
+
[1m[35m (0.2ms)[0m TRUNCATE TABLE projects;
|
705
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
706
|
+
[1m[36m (0.2ms)[0m [1mTRUNCATE TABLE projects;[0m
|
707
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
708
|
+
[1m[35m (0.2ms)[0m TRUNCATE TABLE projects;
|
709
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
710
|
+
[1m[36m (0.2ms)[0m [1mTRUNCATE TABLE projects;[0m
|
711
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
712
|
+
[1m[35m (0.1ms)[0m TRUNCATE TABLE projects;
|
713
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
714
|
+
[1m[36m (0.1ms)[0m [1mTRUNCATE TABLE projects;[0m
|
715
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
716
|
+
[1m[35m (0.1ms)[0m TRUNCATE TABLE projects;
|
717
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
718
|
+
[1m[36m (0.1ms)[0m [1mTRUNCATE TABLE projects;[0m
|
719
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
720
|
+
[1m[35m (0.1ms)[0m TRUNCATE TABLE projects;
|
721
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
722
|
+
[1m[36m (0.1ms)[0m [1mTRUNCATE TABLE projects;[0m
|
723
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
724
|
+
[1m[35m (0.1ms)[0m TRUNCATE TABLE projects;
|
725
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
726
|
+
[1m[36m (0.2ms)[0m [1mTRUNCATE TABLE projects;[0m
|
727
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
728
|
+
[1m[35m (0.2ms)[0m TRUNCATE TABLE projects;
|
729
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
730
|
+
[1m[36m (0.2ms)[0m [1mTRUNCATE TABLE projects;[0m
|
731
|
+
SQLite3::SQLException: near "TRUNCATE": syntax error: TRUNCATE TABLE projects;
|
732
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
733
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
734
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
735
|
+
Migrating to CreateProjects (20131205175023)
|
736
|
+
[1m[35m (0.1ms)[0m begin transaction
|
737
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
738
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
739
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
740
|
+
Migrating to CreateUsers (20131205175100)
|
741
|
+
[1m[35m (0.1ms)[0m begin transaction
|
742
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
743
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
744
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
745
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
746
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
747
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
748
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
749
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
750
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
751
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
752
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
753
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
754
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
755
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
756
|
+
Migrating to CreateProjects (20131205175023)
|
757
|
+
[1m[35m (0.1ms)[0m begin transaction
|
758
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
759
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
760
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
761
|
+
Migrating to CreateUsers (20131205175100)
|
762
|
+
[1m[35m (0.1ms)[0m begin transaction
|
763
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
764
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
765
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
766
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
767
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
768
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
769
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
770
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
771
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
772
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
773
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
774
|
+
[1m[36mProject Load (1.9ms)[0m [1mSELECT "projects".* FROM "projects"[0m
|
775
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
776
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
777
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
778
|
+
Migrating to CreateProjects (20131205175023)
|
779
|
+
[1m[35m (0.1ms)[0m begin transaction
|
780
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
781
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
782
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
783
|
+
Migrating to CreateUsers (20131205175100)
|
784
|
+
[1m[35m (0.1ms)[0m begin transaction
|
785
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
786
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
787
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
788
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
789
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
790
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
791
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
792
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
793
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
794
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
795
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
796
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
797
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
798
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
799
|
+
Migrating to CreateProjects (20131205175023)
|
800
|
+
[1m[35m (0.1ms)[0m begin transaction
|
801
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
802
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175023"]]
|
803
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
804
|
+
Migrating to CreateUsers (20131205175100)
|
805
|
+
[1m[35m (0.1ms)[0m begin transaction
|
806
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime) [0m
|
807
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131205175100"]]
|
808
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
809
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
810
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
811
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "admin" boolean, "created_at" datetime, "updated_at" datetime)
|
812
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
813
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
814
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
815
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131205175100')
|
816
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131205175023')[0m
|
817
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
818
|
+
Migrating to AddColumnsToProjects (20131210152022)
|
819
|
+
[1m[35m (0.1ms)[0m begin transaction
|
820
|
+
[1m[36m (2.0ms)[0m [1mALTER TABLE "projects" ADD "sticky" boolean[0m
|
821
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131210152022"]]
|
822
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
823
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
824
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
825
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|