authorizable 0.9.0 → 0.9.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 +4 -4
- data/Gemfile +1 -3
- data/Gemfile.lock +4 -10
- data/authorizable.gemspec +1 -1
- data/lib/authorizable/version.rb +1 -1
- data/spec/support/rails_app/db/development.sqlite3 +0 -0
- data/spec/support/rails_app/log/development.log +574 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c276bce2e29bbd6d628d99c2b2879b58cb7a3564
|
|
4
|
+
data.tar.gz: 77df7393397f5b6826c43e56f6eb71c2f006439d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca98ab5fed7c15c5541945aef38334d4d91810465f0d9cc3d456b76f2dff8a0982487f3550b2a72d215642eb711354dcb0f15e50ce1057e8e56463fcbeb61d44
|
|
7
|
+
data.tar.gz: 00e9f30c1f4280e4a13547a588f2538341f4a6db00c32bce5ba1b50b3a1ddc2d4a75a639bf8a9045b8b1c5986ec5cdb90bf968dfb475a45d9bbc49b2df829fb5
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
|
-
GIT
|
|
2
|
-
remote: https://github.com/codeclimate/ruby-test-reporter.git
|
|
3
|
-
revision: 7eeff8c596b1b540cb7ff004b93053265e4d8be5
|
|
4
|
-
branch: check_git_dir
|
|
5
|
-
specs:
|
|
6
|
-
codeclimate-test-reporter (0.4.4)
|
|
7
|
-
simplecov (>= 0.7.1, < 1.0.0)
|
|
8
|
-
|
|
9
1
|
PATH
|
|
10
2
|
remote: .
|
|
11
3
|
specs:
|
|
12
|
-
authorizable (0.9.
|
|
4
|
+
authorizable (0.9.1)
|
|
13
5
|
activesupport (>= 3.0.0)
|
|
14
6
|
i18n
|
|
15
7
|
|
|
@@ -58,6 +50,8 @@ GEM
|
|
|
58
50
|
columnize (~> 0.8)
|
|
59
51
|
debugger-linecache (~> 1.2)
|
|
60
52
|
slop (~> 3.6)
|
|
53
|
+
codeclimate-test-reporter (0.4.5)
|
|
54
|
+
simplecov (>= 0.7.1, < 1.0.0)
|
|
61
55
|
coderay (1.1.0)
|
|
62
56
|
columnize (0.9.0)
|
|
63
57
|
debugger-linecache (1.2.0)
|
|
@@ -169,7 +163,7 @@ DEPENDENCIES
|
|
|
169
163
|
authorizable!
|
|
170
164
|
awesome_print
|
|
171
165
|
bundler
|
|
172
|
-
codeclimate-test-reporter
|
|
166
|
+
codeclimate-test-reporter
|
|
173
167
|
factory_girl_rails (~> 4.4)
|
|
174
168
|
pry-byebug
|
|
175
169
|
rails (>= 4)
|
data/authorizable.gemspec
CHANGED
|
@@ -35,6 +35,6 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
s.add_development_dependency "rspec-rails"
|
|
36
36
|
s.add_development_dependency "sqlite3"
|
|
37
37
|
s.add_development_dependency "pry-byebug"
|
|
38
|
-
|
|
38
|
+
s.add_development_dependency "codeclimate-test-reporter"
|
|
39
39
|
|
|
40
40
|
end
|
data/lib/authorizable/version.rb
CHANGED
|
Binary file
|
|
@@ -26294,3 +26294,577 @@ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
|
|
26294
26294
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26295
26295
|
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 47], ["created_at", "2015-01-07 01:27:50.955410"], ["updated_at", "2015-01-07 01:27:50.955410"]]
|
|
26296
26296
|
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
|
26297
|
+
[1m[36m (5.1ms)[0m [1mDROP TABLE "collaborations"[0m
|
|
26298
|
+
[1m[35m (5.8ms)[0m CREATE TABLE "collaborations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "event_id" integer, "title" varchar, "permissions" text, "deleted_at" datetime, "created_at" datetime, "updated_at" datetime)
|
|
26299
|
+
[1m[36m (4.7ms)[0m [1mDROP TABLE "discounts"[0m
|
|
26300
|
+
[1m[35m (5.5ms)[0m CREATE TABLE "discounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "event_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
26301
|
+
[1m[36m (4.5ms)[0m [1mDROP TABLE "events"[0m
|
|
26302
|
+
[1m[35m (4.6ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
26303
|
+
[1m[36m (4.8ms)[0m [1mDROP TABLE "users"[0m
|
|
26304
|
+
[1m[35m (5.4ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
26305
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
26306
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26307
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.395549"], ["updated_at", "2015-01-08 01:03:52.395549"]]
|
|
26308
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26309
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26310
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.410556"], ["updated_at", "2015-01-08 01:03:52.410556"]]
|
|
26311
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
26312
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26313
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 2], ["created_at", "2015-01-08 01:03:52.421146"], ["updated_at", "2015-01-08 01:03:52.421146"]]
|
|
26314
|
+
[1m[35m (5.8ms)[0m commit transaction
|
|
26315
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26316
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.432213"], ["updated_at", "2015-01-08 01:03:52.432213"]]
|
|
26317
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
|
26318
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26319
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 3], ["created_at", "2015-01-08 01:03:52.438186"], ["updated_at", "2015-01-08 01:03:52.438186"]]
|
|
26320
|
+
[1m[35m (5.2ms)[0m commit transaction
|
|
26321
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26322
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "discounts" ("name", "event_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Some Discount"], ["event_id", 2], ["created_at", "2015-01-08 01:03:52.445144"], ["updated_at", "2015-01-08 01:03:52.445144"]]
|
|
26323
|
+
[1m[36m (5.5ms)[0m [1mcommit transaction[0m
|
|
26324
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26325
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.460275"], ["updated_at", "2015-01-08 01:03:52.460275"]]
|
|
26326
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26327
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26328
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.467192"], ["updated_at", "2015-01-08 01:03:52.467192"]]
|
|
26329
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26330
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26331
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.474773"], ["updated_at", "2015-01-08 01:03:52.474773"]]
|
|
26332
|
+
[1m[35m (5.3ms)[0m commit transaction
|
|
26333
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26334
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.481469"], ["updated_at", "2015-01-08 01:03:52.481469"]]
|
|
26335
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26336
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26337
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.489244"], ["updated_at", "2015-01-08 01:03:52.489244"]]
|
|
26338
|
+
[1m[35m (5.6ms)[0m commit transaction
|
|
26339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26340
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.496140"], ["updated_at", "2015-01-08 01:03:52.496140"]]
|
|
26341
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
|
26342
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26343
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.502292"], ["updated_at", "2015-01-08 01:03:52.502292"]]
|
|
26344
|
+
[1m[35m (5.3ms)[0m commit transaction
|
|
26345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26346
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.508788"], ["updated_at", "2015-01-08 01:03:52.508788"]]
|
|
26347
|
+
[1m[36m (4.6ms)[0m [1mcommit transaction[0m
|
|
26348
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26349
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.515202"], ["updated_at", "2015-01-08 01:03:52.515202"]]
|
|
26350
|
+
[1m[35m (4.4ms)[0m commit transaction
|
|
26351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26352
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.521537"], ["updated_at", "2015-01-08 01:03:52.521537"]]
|
|
26353
|
+
[1m[36m (5.2ms)[0m [1mcommit transaction[0m
|
|
26354
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26355
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.528083"], ["updated_at", "2015-01-08 01:03:52.528083"]]
|
|
26356
|
+
[1m[35m (4.5ms)[0m commit transaction
|
|
26357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26358
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 13], ["created_at", "2015-01-08 01:03:52.534371"], ["updated_at", "2015-01-08 01:03:52.534371"]]
|
|
26359
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26360
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26361
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.541756"], ["updated_at", "2015-01-08 01:03:52.541756"]]
|
|
26362
|
+
[1m[35m (5.3ms)[0m commit transaction
|
|
26363
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26364
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 15], ["created_at", "2015-01-08 01:03:52.548986"], ["updated_at", "2015-01-08 01:03:52.548986"]]
|
|
26365
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
|
26366
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26367
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.556391"], ["updated_at", "2015-01-08 01:03:52.556391"]]
|
|
26368
|
+
[1m[35m (4.4ms)[0m commit transaction
|
|
26369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26370
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.562136"], ["updated_at", "2015-01-08 01:03:52.562136"]]
|
|
26371
|
+
[1m[36m (5.1ms)[0m [1mcommit transaction[0m
|
|
26372
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26373
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.568532"], ["updated_at", "2015-01-08 01:03:52.568532"]]
|
|
26374
|
+
[1m[35m (4.4ms)[0m commit transaction
|
|
26375
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26376
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 16], ["created_at", "2015-01-08 01:03:52.574835"], ["updated_at", "2015-01-08 01:03:52.574835"]]
|
|
26377
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
|
26378
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26379
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.581369"], ["updated_at", "2015-01-08 01:03:52.581369"]]
|
|
26380
|
+
[1m[35m (5.5ms)[0m commit transaction
|
|
26381
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26382
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.588333"], ["updated_at", "2015-01-08 01:03:52.588333"]]
|
|
26383
|
+
[1m[36m (6.1ms)[0m [1mcommit transaction[0m
|
|
26384
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26385
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.595796"], ["updated_at", "2015-01-08 01:03:52.595796"]]
|
|
26386
|
+
[1m[35m (4.0ms)[0m commit transaction
|
|
26387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26388
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 19], ["created_at", "2015-01-08 01:03:52.601499"], ["updated_at", "2015-01-08 01:03:52.601499"]]
|
|
26389
|
+
[1m[36m (5.2ms)[0m [1mcommit transaction[0m
|
|
26390
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26391
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 6], ["permissions", "{}"], ["user_id", 20], ["created_at", "2015-01-08 01:03:52.622366"], ["updated_at", "2015-01-08 01:03:52.622366"]]
|
|
26392
|
+
[1m[35m (5.1ms)[0m commit transaction
|
|
26393
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26394
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26395
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26396
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.630557"], ["updated_at", "2015-01-08 01:03:52.630557"]]
|
|
26397
|
+
[1m[36m (5.8ms)[0m [1mcommit transaction[0m
|
|
26398
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26399
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.637775"], ["updated_at", "2015-01-08 01:03:52.637775"]]
|
|
26400
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26401
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26402
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.644088"], ["updated_at", "2015-01-08 01:03:52.644088"]]
|
|
26403
|
+
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
|
26404
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26405
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 22], ["created_at", "2015-01-08 01:03:52.650317"], ["updated_at", "2015-01-08 01:03:52.650317"]]
|
|
26406
|
+
[1m[35m (5.1ms)[0m commit transaction
|
|
26407
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26408
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.657510"], ["updated_at", "2015-01-08 01:03:52.657510"]]
|
|
26409
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
|
26410
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26411
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.664524"], ["updated_at", "2015-01-08 01:03:52.664524"]]
|
|
26412
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26413
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26414
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.671258"], ["updated_at", "2015-01-08 01:03:52.671258"]]
|
|
26415
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26416
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26417
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 27], ["created_at", "2015-01-08 01:03:52.677940"], ["updated_at", "2015-01-08 01:03:52.677940"]]
|
|
26418
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26420
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.684461"], ["updated_at", "2015-01-08 01:03:52.684461"]]
|
|
26421
|
+
[1m[36m (4.4ms)[0m [1mcommit transaction[0m
|
|
26422
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26423
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 8], ["permissions", "{}"], ["user_id", 28], ["created_at", "2015-01-08 01:03:52.691460"], ["updated_at", "2015-01-08 01:03:52.691460"]]
|
|
26424
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26426
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26427
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26428
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.706749"], ["updated_at", "2015-01-08 01:03:52.706749"]]
|
|
26429
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
|
26430
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26431
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 29], ["created_at", "2015-01-08 01:03:52.713998"], ["updated_at", "2015-01-08 01:03:52.713998"]]
|
|
26432
|
+
[1m[35m (5.1ms)[0m commit transaction
|
|
26433
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26434
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.720647"], ["updated_at", "2015-01-08 01:03:52.720647"]]
|
|
26435
|
+
[1m[36m (5.9ms)[0m [1mcommit transaction[0m
|
|
26436
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26437
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 9], ["permissions", "{}"], ["user_id", 30], ["created_at", "2015-01-08 01:03:52.729369"], ["updated_at", "2015-01-08 01:03:52.729369"]]
|
|
26438
|
+
[1m[35m (4.9ms)[0m commit transaction
|
|
26439
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26440
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26441
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26442
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.737727"], ["updated_at", "2015-01-08 01:03:52.737727"]]
|
|
26443
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
26444
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26445
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 31], ["created_at", "2015-01-08 01:03:52.744900"], ["updated_at", "2015-01-08 01:03:52.744900"]]
|
|
26446
|
+
[1m[35m (5.2ms)[0m commit transaction
|
|
26447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26448
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.751542"], ["updated_at", "2015-01-08 01:03:52.751542"]]
|
|
26449
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26450
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26451
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 10], ["permissions", "{}"], ["user_id", 32], ["created_at", "2015-01-08 01:03:52.759077"], ["updated_at", "2015-01-08 01:03:52.759077"]]
|
|
26452
|
+
[1m[35m (4.4ms)[0m commit transaction
|
|
26453
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26454
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26455
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26456
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.778870"], ["updated_at", "2015-01-08 01:03:52.778870"]]
|
|
26457
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26458
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26459
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 33], ["created_at", "2015-01-08 01:03:52.786400"], ["updated_at", "2015-01-08 01:03:52.786400"]]
|
|
26460
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26462
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.793381"], ["updated_at", "2015-01-08 01:03:52.793381"]]
|
|
26463
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26464
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26465
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 11], ["permissions", "{}"], ["user_id", 34], ["created_at", "2015-01-08 01:03:52.801815"], ["updated_at", "2015-01-08 01:03:52.801815"]]
|
|
26466
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26467
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26468
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26470
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.809859"], ["updated_at", "2015-01-08 01:03:52.809859"]]
|
|
26471
|
+
[1m[36m (6.4ms)[0m [1mcommit transaction[0m
|
|
26472
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26473
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 35], ["created_at", "2015-01-08 01:03:52.817964"], ["updated_at", "2015-01-08 01:03:52.817964"]]
|
|
26474
|
+
[1m[35m (5.7ms)[0m commit transaction
|
|
26475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26476
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.825184"], ["updated_at", "2015-01-08 01:03:52.825184"]]
|
|
26477
|
+
[1m[36m (10.0ms)[0m [1mcommit transaction[0m
|
|
26478
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26479
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 12], ["permissions", "{}"], ["user_id", 36], ["created_at", "2015-01-08 01:03:52.837957"], ["updated_at", "2015-01-08 01:03:52.837957"]]
|
|
26480
|
+
[1m[35m (5.3ms)[0m commit transaction
|
|
26481
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26482
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26483
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26484
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.845959"], ["updated_at", "2015-01-08 01:03:52.845959"]]
|
|
26485
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26486
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26487
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 37], ["created_at", "2015-01-08 01:03:52.852655"], ["updated_at", "2015-01-08 01:03:52.852655"]]
|
|
26488
|
+
[1m[35m (5.5ms)[0m commit transaction
|
|
26489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26490
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.859607"], ["updated_at", "2015-01-08 01:03:52.859607"]]
|
|
26491
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26492
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26493
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 13], ["permissions", "{}"], ["user_id", 38], ["created_at", "2015-01-08 01:03:52.867220"], ["updated_at", "2015-01-08 01:03:52.867220"]]
|
|
26494
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26495
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26496
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26497
|
+
Processing by EventsController#index as HTML
|
|
26498
|
+
Rendered events/index.html.erb within layouts/application (0.3ms)
|
|
26499
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
26500
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26501
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.889259"], ["updated_at", "2015-01-08 01:03:52.889259"]]
|
|
26502
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
|
26503
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26504
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.896613"], ["updated_at", "2015-01-08 01:03:52.896613"]]
|
|
26505
|
+
[1m[35m (4.3ms)[0m commit transaction
|
|
26506
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26507
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 40], ["created_at", "2015-01-08 01:03:52.902453"], ["updated_at", "2015-01-08 01:03:52.902453"]]
|
|
26508
|
+
[1m[36m (5.7ms)[0m [1mcommit transaction[0m
|
|
26509
|
+
Processing by EventsController#destroy as HTML
|
|
26510
|
+
Parameters: {"id"=>"14"}
|
|
26511
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 14]]
|
|
26512
|
+
Redirected to http://test.host/events/14
|
|
26513
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26514
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.1ms)
|
|
26515
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26516
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.921012"], ["updated_at", "2015-01-08 01:03:52.921012"]]
|
|
26517
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26518
|
+
Processing by EventsController#create as HTML
|
|
26519
|
+
Redirected to http://test.host/events
|
|
26520
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26521
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
26522
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26523
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.931224"], ["updated_at", "2015-01-08 01:03:52.931224"]]
|
|
26524
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26525
|
+
Processing by EventsController#new as HTML
|
|
26526
|
+
Redirected to http://test.host/events
|
|
26527
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26528
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
26529
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26530
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.940426"], ["updated_at", "2015-01-08 01:03:52.940426"]]
|
|
26531
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26532
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26533
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.947491"], ["updated_at", "2015-01-08 01:03:52.947491"]]
|
|
26534
|
+
[1m[35m (4.7ms)[0m commit transaction
|
|
26535
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26536
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 44], ["created_at", "2015-01-08 01:03:52.953736"], ["updated_at", "2015-01-08 01:03:52.953736"]]
|
|
26537
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26538
|
+
Processing by EventsController#edit as HTML
|
|
26539
|
+
Parameters: {"id"=>"15"}
|
|
26540
|
+
[1m[35mEvent Load (0.0ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 15]]
|
|
26541
|
+
Redirected to http://test.host/events/15
|
|
26542
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26543
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
26544
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26545
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.964113"], ["updated_at", "2015-01-08 01:03:52.964113"]]
|
|
26546
|
+
[1m[36m (4.3ms)[0m [1mcommit transaction[0m
|
|
26547
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26548
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:52.970784"], ["updated_at", "2015-01-08 01:03:52.970784"]]
|
|
26549
|
+
[1m[35m (5.2ms)[0m commit transaction
|
|
26550
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26551
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 46], ["created_at", "2015-01-08 01:03:52.977481"], ["updated_at", "2015-01-08 01:03:52.977481"]]
|
|
26552
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
26553
|
+
Processing by EventsController#update as HTML
|
|
26554
|
+
Parameters: {"id"=>"16"}
|
|
26555
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 16]]
|
|
26556
|
+
Redirected to http://test.host/events/16
|
|
26557
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26558
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
|
26559
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26560
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:52.988112"], ["updated_at", "2015-01-08 01:03:52.988112"]]
|
|
26561
|
+
[1m[36m (8.3ms)[0m [1mcommit transaction[0m
|
|
26562
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26563
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:03:53.000831"], ["updated_at", "2015-01-08 01:03:53.000831"]]
|
|
26564
|
+
[1m[35m (4.9ms)[0m commit transaction
|
|
26565
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26566
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 48], ["created_at", "2015-01-08 01:03:53.007280"], ["updated_at", "2015-01-08 01:03:53.007280"]]
|
|
26567
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
|
26568
|
+
Processing by EventsController#edit as JSON
|
|
26569
|
+
Parameters: {"id"=>"17"}
|
|
26570
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 17]]
|
|
26571
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26572
|
+
Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
|
|
26573
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26574
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:03:53.016395"], ["updated_at", "2015-01-08 01:03:53.016395"]]
|
|
26575
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26576
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26577
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 49], ["created_at", "2015-01-08 01:03:53.023325"], ["updated_at", "2015-01-08 01:03:53.023325"]]
|
|
26578
|
+
[1m[35m (4.5ms)[0m commit transaction
|
|
26579
|
+
Processing by EventsController#edit as HTML
|
|
26580
|
+
Parameters: {"id"=>"18"}
|
|
26581
|
+
[1m[36mEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1[0m [["id", 18]]
|
|
26582
|
+
Rendered events/edit.html.erb within layouts/application (0.2ms)
|
|
26583
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
|
26584
|
+
[1m[36m (4.1ms)[0m [1mDROP TABLE "collaborations"[0m
|
|
26585
|
+
[1m[35m (5.0ms)[0m CREATE TABLE "collaborations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "event_id" integer, "title" varchar, "permissions" text, "deleted_at" datetime, "created_at" datetime, "updated_at" datetime)
|
|
26586
|
+
[1m[36m (5.4ms)[0m [1mDROP TABLE "discounts"[0m
|
|
26587
|
+
[1m[35m (4.4ms)[0m CREATE TABLE "discounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "event_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
26588
|
+
[1m[36m (5.0ms)[0m [1mDROP TABLE "events"[0m
|
|
26589
|
+
[1m[35m (5.6ms)[0m CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
26590
|
+
[1m[36m (5.3ms)[0m [1mDROP TABLE "users"[0m
|
|
26591
|
+
[1m[35m (4.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
26592
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
26593
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26594
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.555323"], ["updated_at", "2015-01-08 01:04:17.555323"]]
|
|
26595
|
+
[1m[35m (5.3ms)[0m commit transaction
|
|
26596
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26597
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.570128"], ["updated_at", "2015-01-08 01:04:17.570128"]]
|
|
26598
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26599
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26600
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 2], ["created_at", "2015-01-08 01:04:17.580275"], ["updated_at", "2015-01-08 01:04:17.580275"]]
|
|
26601
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26602
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26603
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.591118"], ["updated_at", "2015-01-08 01:04:17.591118"]]
|
|
26604
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26605
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26606
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 3], ["created_at", "2015-01-08 01:04:17.597539"], ["updated_at", "2015-01-08 01:04:17.597539"]]
|
|
26607
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26608
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26609
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "discounts" ("name", "event_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Some Discount"], ["event_id", 2], ["created_at", "2015-01-08 01:04:17.604843"], ["updated_at", "2015-01-08 01:04:17.604843"]]
|
|
26610
|
+
[1m[36m (4.6ms)[0m [1mcommit transaction[0m
|
|
26611
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26612
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.611244"], ["updated_at", "2015-01-08 01:04:17.611244"]]
|
|
26613
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26615
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.618344"], ["updated_at", "2015-01-08 01:04:17.618344"]]
|
|
26616
|
+
[1m[36m (13.9ms)[0m [1mcommit transaction[0m
|
|
26617
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26618
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.634158"], ["updated_at", "2015-01-08 01:04:17.634158"]]
|
|
26619
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26620
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26621
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.641084"], ["updated_at", "2015-01-08 01:04:17.641084"]]
|
|
26622
|
+
[1m[36m (14.4ms)[0m [1mcommit transaction[0m
|
|
26623
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26624
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.657123"], ["updated_at", "2015-01-08 01:04:17.657123"]]
|
|
26625
|
+
[1m[35m (18.3ms)[0m commit transaction
|
|
26626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26627
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 6], ["created_at", "2015-01-08 01:04:17.677517"], ["updated_at", "2015-01-08 01:04:17.677517"]]
|
|
26628
|
+
[1m[36m (14.8ms)[0m [1mcommit transaction[0m
|
|
26629
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26630
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.694181"], ["updated_at", "2015-01-08 01:04:17.694181"]]
|
|
26631
|
+
[1m[35m (6.1ms)[0m commit transaction
|
|
26632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26633
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.701862"], ["updated_at", "2015-01-08 01:04:17.701862"]]
|
|
26634
|
+
[1m[36m (22.8ms)[0m [1mcommit transaction[0m
|
|
26635
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26636
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.726206"], ["updated_at", "2015-01-08 01:04:17.726206"]]
|
|
26637
|
+
[1m[35m (13.8ms)[0m commit transaction
|
|
26638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26639
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 9], ["created_at", "2015-01-08 01:04:17.742026"], ["updated_at", "2015-01-08 01:04:17.742026"]]
|
|
26640
|
+
[1m[36m (13.9ms)[0m [1mcommit transaction[0m
|
|
26641
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26642
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 4], ["permissions", "{}"], ["user_id", 10], ["created_at", "2015-01-08 01:04:17.770211"], ["updated_at", "2015-01-08 01:04:17.770211"]]
|
|
26643
|
+
[1m[35m (18.4ms)[0m commit transaction
|
|
26644
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26645
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26646
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26647
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.791853"], ["updated_at", "2015-01-08 01:04:17.791853"]]
|
|
26648
|
+
[1m[36m (12.0ms)[0m [1mcommit transaction[0m
|
|
26649
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26650
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.805436"], ["updated_at", "2015-01-08 01:04:17.805436"]]
|
|
26651
|
+
[1m[35m (4.9ms)[0m commit transaction
|
|
26652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26653
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.811883"], ["updated_at", "2015-01-08 01:04:17.811883"]]
|
|
26654
|
+
[1m[36m (14.3ms)[0m [1mcommit transaction[0m
|
|
26655
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26656
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 12], ["created_at", "2015-01-08 01:04:17.828350"], ["updated_at", "2015-01-08 01:04:17.828350"]]
|
|
26657
|
+
[1m[35m (12.8ms)[0m commit transaction
|
|
26658
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26659
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.843380"], ["updated_at", "2015-01-08 01:04:17.843380"]]
|
|
26660
|
+
[1m[36m (16.9ms)[0m [1mcommit transaction[0m
|
|
26661
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26662
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.861859"], ["updated_at", "2015-01-08 01:04:17.861859"]]
|
|
26663
|
+
[1m[35m (14.3ms)[0m commit transaction
|
|
26664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26665
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.878021"], ["updated_at", "2015-01-08 01:04:17.878021"]]
|
|
26666
|
+
[1m[36m (5.7ms)[0m [1mcommit transaction[0m
|
|
26667
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26668
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.885299"], ["updated_at", "2015-01-08 01:04:17.885299"]]
|
|
26669
|
+
[1m[35m (5.8ms)[0m commit transaction
|
|
26670
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26671
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.893333"], ["updated_at", "2015-01-08 01:04:17.893333"]]
|
|
26672
|
+
[1m[36m (12.1ms)[0m [1mcommit transaction[0m
|
|
26673
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26674
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.906813"], ["updated_at", "2015-01-08 01:04:17.906813"]]
|
|
26675
|
+
[1m[35m (5.5ms)[0m commit transaction
|
|
26676
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26677
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.914179"], ["updated_at", "2015-01-08 01:04:17.914179"]]
|
|
26678
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26679
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26680
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.920493"], ["updated_at", "2015-01-08 01:04:17.920493"]]
|
|
26681
|
+
[1m[35m (4.4ms)[0m commit transaction
|
|
26682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26683
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.926845"], ["updated_at", "2015-01-08 01:04:17.926845"]]
|
|
26684
|
+
[1m[36m (12.4ms)[0m [1mcommit transaction[0m
|
|
26685
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26686
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:17.941135"], ["updated_at", "2015-01-08 01:04:17.941135"]]
|
|
26687
|
+
[1m[35m (14.4ms)[0m commit transaction
|
|
26688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26689
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.957284"], ["updated_at", "2015-01-08 01:04:17.957284"]]
|
|
26690
|
+
[1m[36m (14.4ms)[0m [1mcommit transaction[0m
|
|
26691
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26692
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 24], ["created_at", "2015-01-08 01:04:17.973491"], ["updated_at", "2015-01-08 01:04:17.973491"]]
|
|
26693
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26694
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26695
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.980731"], ["updated_at", "2015-01-08 01:04:17.980731"]]
|
|
26696
|
+
[1m[36m (5.0ms)[0m [1mcommit transaction[0m
|
|
26697
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26698
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 26], ["created_at", "2015-01-08 01:04:17.987820"], ["updated_at", "2015-01-08 01:04:17.987820"]]
|
|
26699
|
+
[1m[35m (4.7ms)[0m commit transaction
|
|
26700
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26701
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:17.995671"], ["updated_at", "2015-01-08 01:04:17.995671"]]
|
|
26702
|
+
[1m[36m (4.3ms)[0m [1mcommit transaction[0m
|
|
26703
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26704
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 27], ["created_at", "2015-01-08 01:04:18.002133"], ["updated_at", "2015-01-08 01:04:18.002133"]]
|
|
26705
|
+
[1m[35m (5.1ms)[0m commit transaction
|
|
26706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26707
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.008796"], ["updated_at", "2015-01-08 01:04:18.008796"]]
|
|
26708
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26709
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26710
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 8], ["permissions", "{}"], ["user_id", 28], ["created_at", "2015-01-08 01:04:18.017714"], ["updated_at", "2015-01-08 01:04:18.017714"]]
|
|
26711
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26712
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26713
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26714
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26715
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.027165"], ["updated_at", "2015-01-08 01:04:18.027165"]]
|
|
26716
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26717
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26718
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 29], ["created_at", "2015-01-08 01:04:18.034005"], ["updated_at", "2015-01-08 01:04:18.034005"]]
|
|
26719
|
+
[1m[35m (5.0ms)[0m commit transaction
|
|
26720
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26721
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.040519"], ["updated_at", "2015-01-08 01:04:18.040519"]]
|
|
26722
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26723
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26724
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 9], ["permissions", "{}"], ["user_id", 30], ["created_at", "2015-01-08 01:04:18.048127"], ["updated_at", "2015-01-08 01:04:18.048127"]]
|
|
26725
|
+
[1m[35m (4.7ms)[0m commit transaction
|
|
26726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26727
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26728
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26729
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.055719"], ["updated_at", "2015-01-08 01:04:18.055719"]]
|
|
26730
|
+
[1m[36m (4.3ms)[0m [1mcommit transaction[0m
|
|
26731
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26732
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 31], ["created_at", "2015-01-08 01:04:18.061896"], ["updated_at", "2015-01-08 01:04:18.061896"]]
|
|
26733
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26734
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26735
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.068680"], ["updated_at", "2015-01-08 01:04:18.068680"]]
|
|
26736
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
26737
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26738
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 10], ["permissions", "{}"], ["user_id", 32], ["created_at", "2015-01-08 01:04:18.077394"], ["updated_at", "2015-01-08 01:04:18.077394"]]
|
|
26739
|
+
[1m[35m (4.6ms)[0m commit transaction
|
|
26740
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26741
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26743
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.084858"], ["updated_at", "2015-01-08 01:04:18.084858"]]
|
|
26744
|
+
[1m[36m (5.1ms)[0m [1mcommit transaction[0m
|
|
26745
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26746
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 33], ["created_at", "2015-01-08 01:04:18.091787"], ["updated_at", "2015-01-08 01:04:18.091787"]]
|
|
26747
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26748
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26749
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.097904"], ["updated_at", "2015-01-08 01:04:18.097904"]]
|
|
26750
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
|
26751
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26752
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 11], ["permissions", "{}"], ["user_id", 34], ["created_at", "2015-01-08 01:04:18.106096"], ["updated_at", "2015-01-08 01:04:18.106096"]]
|
|
26753
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26754
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26755
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26757
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.119605"], ["updated_at", "2015-01-08 01:04:18.119605"]]
|
|
26758
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26759
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26760
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 35], ["created_at", "2015-01-08 01:04:18.126667"], ["updated_at", "2015-01-08 01:04:18.126667"]]
|
|
26761
|
+
[1m[35m (5.2ms)[0m commit transaction
|
|
26762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26763
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.133524"], ["updated_at", "2015-01-08 01:04:18.133524"]]
|
|
26764
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
|
26765
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26766
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 12], ["permissions", "{}"], ["user_id", 36], ["created_at", "2015-01-08 01:04:18.153006"], ["updated_at", "2015-01-08 01:04:18.153006"]]
|
|
26767
|
+
[1m[35m (4.8ms)[0m commit transaction
|
|
26768
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26769
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26770
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26771
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.160797"], ["updated_at", "2015-01-08 01:04:18.160797"]]
|
|
26772
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
26773
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26774
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 37], ["created_at", "2015-01-08 01:04:18.168112"], ["updated_at", "2015-01-08 01:04:18.168112"]]
|
|
26775
|
+
[1m[35m (4.7ms)[0m commit transaction
|
|
26776
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26777
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.174397"], ["updated_at", "2015-01-08 01:04:18.174397"]]
|
|
26778
|
+
[1m[36m (5.3ms)[0m [1mcommit transaction[0m
|
|
26779
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26780
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "collaborations" ("event_id", "permissions", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["event_id", 13], ["permissions", "{}"], ["user_id", 38], ["created_at", "2015-01-08 01:04:18.182401"], ["updated_at", "2015-01-08 01:04:18.182401"]]
|
|
26781
|
+
[1m[35m (18.5ms)[0m commit transaction
|
|
26782
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26783
|
+
[1m[35m (0.0ms)[0m commit transaction
|
|
26784
|
+
Processing by EventsController#index as HTML
|
|
26785
|
+
Rendered events/index.html.erb within layouts/application (0.2ms)
|
|
26786
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
|
26787
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26788
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.222580"], ["updated_at", "2015-01-08 01:04:18.222580"]]
|
|
26789
|
+
[1m[36m (5.4ms)[0m [1mcommit transaction[0m
|
|
26790
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26791
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:18.230694"], ["updated_at", "2015-01-08 01:04:18.230694"]]
|
|
26792
|
+
[1m[35m (6.1ms)[0m commit transaction
|
|
26793
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26794
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 40], ["created_at", "2015-01-08 01:04:18.238426"], ["updated_at", "2015-01-08 01:04:18.238426"]]
|
|
26795
|
+
[1m[36m (5.2ms)[0m [1mcommit transaction[0m
|
|
26796
|
+
Processing by EventsController#destroy as HTML
|
|
26797
|
+
Parameters: {"id"=>"14"}
|
|
26798
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 14]]
|
|
26799
|
+
Redirected to http://test.host/events/14
|
|
26800
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26801
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.1ms)
|
|
26802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26803
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.255062"], ["updated_at", "2015-01-08 01:04:18.255062"]]
|
|
26804
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26805
|
+
Processing by EventsController#create as HTML
|
|
26806
|
+
Redirected to http://test.host/events
|
|
26807
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26808
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
26809
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26810
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:18.264967"], ["updated_at", "2015-01-08 01:04:18.264967"]]
|
|
26811
|
+
[1m[35m (4.4ms)[0m commit transaction
|
|
26812
|
+
Processing by EventsController#new as HTML
|
|
26813
|
+
Redirected to http://test.host/events
|
|
26814
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26815
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
26816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26817
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.273878"], ["updated_at", "2015-01-08 01:04:18.273878"]]
|
|
26818
|
+
[1m[36m (5.6ms)[0m [1mcommit transaction[0m
|
|
26819
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26820
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:18.281770"], ["updated_at", "2015-01-08 01:04:18.281770"]]
|
|
26821
|
+
[1m[35m (4.7ms)[0m commit transaction
|
|
26822
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26823
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 44], ["created_at", "2015-01-08 01:04:18.287907"], ["updated_at", "2015-01-08 01:04:18.287907"]]
|
|
26824
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
|
26825
|
+
Processing by EventsController#edit as HTML
|
|
26826
|
+
Parameters: {"id"=>"15"}
|
|
26827
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 15]]
|
|
26828
|
+
Redirected to http://test.host/events/15
|
|
26829
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26830
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
|
26831
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26832
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.297715"], ["updated_at", "2015-01-08 01:04:18.297715"]]
|
|
26833
|
+
[1m[36m (5.8ms)[0m [1mcommit transaction[0m
|
|
26834
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26835
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:18.306083"], ["updated_at", "2015-01-08 01:04:18.306083"]]
|
|
26836
|
+
[1m[35m (5.4ms)[0m commit transaction
|
|
26837
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26838
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 46], ["created_at", "2015-01-08 01:04:18.312949"], ["updated_at", "2015-01-08 01:04:18.312949"]]
|
|
26839
|
+
[1m[36m (4.0ms)[0m [1mcommit transaction[0m
|
|
26840
|
+
Processing by EventsController#update as HTML
|
|
26841
|
+
Parameters: {"id"=>"16"}
|
|
26842
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 16]]
|
|
26843
|
+
Redirected to http://test.host/events/16
|
|
26844
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26845
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
|
26846
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26847
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.321811"], ["updated_at", "2015-01-08 01:04:18.321811"]]
|
|
26848
|
+
[1m[36m (5.1ms)[0m [1mcommit transaction[0m
|
|
26849
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
26850
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2015-01-08 01:04:18.329276"], ["updated_at", "2015-01-08 01:04:18.329276"]]
|
|
26851
|
+
[1m[35m (5.6ms)[0m commit transaction
|
|
26852
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26853
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Test Event"], ["user_id", 48], ["created_at", "2015-01-08 01:04:18.336314"], ["updated_at", "2015-01-08 01:04:18.336314"]]
|
|
26854
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
|
26855
|
+
Processing by EventsController#edit as JSON
|
|
26856
|
+
Parameters: {"id"=>"17"}
|
|
26857
|
+
[1m[35mEvent Load (0.1ms)[0m SELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1 [["id", 17]]
|
|
26858
|
+
Filter chain halted as :authorizable_authorized? rendered or redirected
|
|
26859
|
+
Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
|
|
26860
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26861
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-01-08 01:04:18.346134"], ["updated_at", "2015-01-08 01:04:18.346134"]]
|
|
26862
|
+
[1m[36m (6.0ms)[0m [1mcommit transaction[0m
|
|
26863
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
26864
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Test Event"], ["user_id", 49], ["created_at", "2015-01-08 01:04:18.354037"], ["updated_at", "2015-01-08 01:04:18.354037"]]
|
|
26865
|
+
[1m[35m (5.3ms)[0m commit transaction
|
|
26866
|
+
Processing by EventsController#edit as HTML
|
|
26867
|
+
Parameters: {"id"=>"18"}
|
|
26868
|
+
[1m[36mEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."id" = ? LIMIT 1[0m [["id", 18]]
|
|
26869
|
+
Rendered events/edit.html.erb within layouts/application (0.2ms)
|
|
26870
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: authorizable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- L. Preston Sego III
|
|
@@ -150,6 +150,20 @@ dependencies:
|
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: codeclimate-test-reporter
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - ">="
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
153
167
|
description: A gem for rails giving vast flexibility in authorization management.
|
|
154
168
|
email: LPSego3+dev@gmail.com
|
|
155
169
|
executables: []
|
|
@@ -271,7 +285,7 @@ rubyforge_project:
|
|
|
271
285
|
rubygems_version: 2.4.3
|
|
272
286
|
signing_key:
|
|
273
287
|
specification_version: 4
|
|
274
|
-
summary: Authorizable-0.9.
|
|
288
|
+
summary: Authorizable-0.9.1
|
|
275
289
|
test_files:
|
|
276
290
|
- spec/integration/controller_spec.rb
|
|
277
291
|
- spec/integration/model_spec.rb
|