got_fixed 0.0.6 → 0.1.0
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/app/controllers/got_fixed/issues_controller.rb +1 -3
- data/app/jobs/got_fixed/notify_user_of_closed_issue_job.rb +11 -0
- data/app/models/got_fixed/user.rb +5 -3
- data/config/initializers/got_fixed.rb +1 -0
- data/lib/generators/got_fixed/install/templates/got_fixed.yml +5 -0
- data/lib/got_fixed/version.rb +1 -1
- data/spec/dummy/config/got_fixed.yml +3 -0
- data/spec/dummy/log/development.log +196 -0
- data/spec/dummy/log/test.log +2762 -0
- metadata +3 -3
- data/app/controllers/got_fixed/application_controller.rb +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7cfcd586b0b6b11b166d53360848d5e6db97688
|
4
|
+
data.tar.gz: 8b6723d02dd53eb11ffe87890b11b56bf21abf34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 604390620701c3bd04313d38d5391dbe8c4bca8c8bbf77d01b7d52fe2995f0b58a7524b1c049b894e6f80bc88531991ad8f05cada12772045e2152144d1ba3fd
|
7
|
+
data.tar.gz: 2d5082034efef2a9c060ca09bf26b86162e86087f1bd11670fd144224afed990067dec2c5d04d50715be099a2239d522878a93165e9004e546f21d1ce753dc18
|
@@ -1,7 +1,5 @@
|
|
1
|
-
require_dependency "got_fixed/application_controller"
|
2
|
-
|
3
1
|
module GotFixed
|
4
|
-
class IssuesController < ApplicationController
|
2
|
+
class IssuesController < ::ApplicationController
|
5
3
|
# before_action :set_issue, only: [:destroy]
|
6
4
|
before_action :check_hub_signature!, :only => :github_webhook
|
7
5
|
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module GotFixed
|
2
|
+
class NotifyUserOfClosedIssueJob
|
3
|
+
@queue = GotFixed.config[:resque][:queue]
|
4
|
+
|
5
|
+
def self.perform(user_id, issue_id)
|
6
|
+
user = User.find(user_id)
|
7
|
+
issue = Issue.find(issue_id)
|
8
|
+
UserMailer.issue_got_fixed_email(user, issue).deliver
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -17,9 +17,11 @@ module GotFixed
|
|
17
17
|
has_and_belongs_to_many :issues
|
18
18
|
|
19
19
|
def send_notification(issue)
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
if Module.const_defined?(:Resque) && Resque.respond_to?(:enqueue)
|
21
|
+
Resque.enqueue(NotifyUserOfClosedIssueJob, self.id, issue.id)
|
22
|
+
else
|
23
|
+
NotifyUserOfClosedIssueJob.perform(self.id, issue.id)
|
24
|
+
end
|
23
25
|
end
|
24
26
|
end
|
25
27
|
end
|
@@ -3,6 +3,11 @@ user_mailer:
|
|
3
3
|
from: '"GotFixed Notifications" <noreply@example.org>'
|
4
4
|
subject_template: "[Fixed] %{title}"
|
5
5
|
|
6
|
+
# You should use Resque to send emails to user. Just make sure the "resque"
|
7
|
+
# gem is in your Gemfile, and uncomment the following.
|
8
|
+
# resque:
|
9
|
+
# queue: mail # Queue used by the GotFixed::NotifyUserOfClosedIssueJob
|
10
|
+
|
6
11
|
# Github repositories exposed on the got_fixed dashboard.
|
7
12
|
# - For private repos, create a personal access token here: https://github.com/settings/applications
|
8
13
|
# - The webhook secret is something you can generate by hand. It is something you share with
|
data/lib/got_fixed/version.rb
CHANGED
@@ -3279,3 +3279,199 @@ Migrating to UniqueUserEmails (20130929180909)
|
|
3279
3279
|
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3280
3280
|
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3281
3281
|
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3282
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3283
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3284
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3285
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3286
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3287
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3288
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3289
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3290
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3291
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3292
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3293
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3294
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3295
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3296
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3297
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3298
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3299
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3300
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3301
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3302
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3303
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3304
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3305
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3306
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3307
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3308
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3309
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3310
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3311
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3312
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3313
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3314
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3315
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3316
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3317
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3318
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3319
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3320
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3321
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3322
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3323
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3324
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3325
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3326
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3327
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3328
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3329
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3330
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3331
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3332
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3333
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3334
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3335
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3336
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3337
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3338
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3339
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3340
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3341
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3342
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3343
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3344
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3345
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3346
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3347
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3348
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3349
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3350
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3351
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3352
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3353
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3354
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3355
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3356
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3357
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3358
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3359
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
3360
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3361
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3362
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3363
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3364
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3365
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3366
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3367
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3368
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3369
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3370
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3371
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3372
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3373
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3374
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3375
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3376
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3377
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3378
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3379
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3380
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3381
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3382
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3383
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3384
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3385
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3386
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3387
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3388
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3389
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3390
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3391
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3392
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3393
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3394
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3395
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3396
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3397
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3398
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3399
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3400
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3401
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3402
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3403
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3404
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3405
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3406
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3407
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3408
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3409
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3410
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3411
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3412
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3413
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3414
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3415
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3416
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3417
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3418
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3419
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3420
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3421
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3422
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3423
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3424
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3425
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3426
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3427
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3428
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3429
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3430
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3431
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3432
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3433
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3434
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3435
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3436
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3437
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3438
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3439
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3440
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3441
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3442
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3443
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3444
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3445
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3446
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3447
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3448
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3449
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3450
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3451
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3452
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3453
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3454
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3455
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3456
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3457
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3458
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3459
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3460
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3461
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3462
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3463
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
3464
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "got_fixed_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "closed" boolean, "created_at" datetime, "updated_at" datetime, "number" integer, "vendor_id" varchar(255), "vendor" varchar(255)) [0m
|
3465
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
|
3466
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
3467
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
|
3468
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) [0m
|
3469
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3470
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
3471
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
3472
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130929180909')[0m
|
3473
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
|
3474
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130913195152')[0m
|
3475
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
|
3476
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130924121816')[0m
|
3477
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
|
data/spec/dummy/log/test.log
CHANGED
@@ -15526,3 +15526,2765 @@ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
|
|
15526
15526
|
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15527
15527
|
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15528
15528
|
[1m[35m (0.7ms)[0m rollback transaction
|
15529
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
15530
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15531
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15532
|
+
[1m[35mSQL (2.7ms)[0m INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["title", "MyString"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15533
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15534
|
+
Processing by GotFixed::IssuesController#index as HTML
|
15535
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/issues/index.html.erb (0.3ms)
|
15536
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
15537
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
|
15538
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
15539
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15540
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
15541
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
15542
|
+
[1m[36mGotFixed::Issue Load (0.3ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
15543
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15544
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
15545
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", true], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
15546
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15547
|
+
Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.1ms)
|
15548
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
15549
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
15550
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15551
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15552
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15553
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15554
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15555
|
+
[1m[36mGotFixed::User Load (0.7ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15556
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
15557
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
15558
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
15559
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
15560
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15561
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15562
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15563
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
15564
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15565
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15566
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15567
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15568
|
+
Completed 200 OK in 21ms (Views: 3.1ms | ActiveRecord: 1.2ms)
|
15569
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15570
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15571
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
15572
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15573
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15574
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15575
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15576
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15577
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15579
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
15580
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15581
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15582
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
15583
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
15584
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15585
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
15586
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
15587
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15588
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
15589
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15591
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15592
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15593
|
+
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.6ms)
|
15594
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15595
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15596
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
15597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15598
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15599
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15600
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15602
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15603
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15604
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
15605
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15606
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15607
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15608
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
15609
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15610
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15611
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15612
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15613
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
15614
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
15615
|
+
[1m[36mGotFixed::User Load (0.2ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15616
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
15617
|
+
[1m[36mGotFixed::User Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
15618
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.3ms)
|
15619
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15620
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15621
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
15622
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15623
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15624
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15625
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15627
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15628
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15629
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15630
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15633
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15635
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15636
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15637
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15639
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15640
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15643
|
+
[1m[35mGotFixed::User Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
|
15644
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
15645
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15646
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1[0m
|
15647
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15649
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15650
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15651
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15652
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15653
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15654
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15655
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
15656
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
15657
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15658
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1[0m
|
15659
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15660
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15661
|
+
[1m[35mGotFixed::Issue Load (0.3ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
15662
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
15663
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15664
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
15665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15667
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15668
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15669
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15670
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15671
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15672
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15673
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15674
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15675
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15676
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
15677
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15678
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15679
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15680
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15681
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15682
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15683
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
|
15684
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15685
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15687
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
15688
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15690
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15691
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15692
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15693
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15694
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15695
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15696
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15697
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
15698
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15699
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15700
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15701
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15702
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15703
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15704
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1[0m
|
15705
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15706
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15708
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
15709
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15710
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15711
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
|
15712
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15713
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15714
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15715
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
|
15716
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15717
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15718
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1[0m
|
15719
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15720
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15721
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15722
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)[0m
|
15723
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15724
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15725
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
|
15726
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15727
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15728
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15729
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
|
15730
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15732
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1[0m
|
15733
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15734
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15736
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)[0m
|
15737
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15738
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15739
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
|
15740
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15741
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15742
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15743
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
|
15744
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15745
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15746
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1[0m
|
15747
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15748
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15749
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15750
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)[0m
|
15751
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15752
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15753
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
|
15754
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15755
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15756
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15757
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
|
15758
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15760
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1[0m
|
15761
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15762
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15763
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15764
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)[0m
|
15765
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15766
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15767
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
|
15768
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15769
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15770
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15771
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
|
15772
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15773
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15774
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15775
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15776
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15777
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15778
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
|
15779
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15780
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15781
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
15782
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15783
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15784
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
15785
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15786
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15787
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["title", "MyString"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15788
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15789
|
+
Processing by GotFixed::IssuesController#index as HTML
|
15790
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/issues/index.html.erb (0.6ms)
|
15791
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
15792
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
|
15793
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
15794
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15795
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
15796
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
15797
|
+
[1m[36mGotFixed::Issue Load (0.3ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
15798
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15799
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
15800
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", true], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
15801
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15802
|
+
Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
15803
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
15804
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
15805
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15806
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15807
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15808
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15809
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15810
|
+
[1m[36mGotFixed::User Load (0.2ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15811
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
15812
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
15813
|
+
[1m[35mGotFixed::User Load (0.2ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
15814
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
15815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15816
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15817
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15818
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
15819
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15821
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15822
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15823
|
+
Completed 200 OK in 26ms (Views: 4.9ms | ActiveRecord: 1.2ms)
|
15824
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15825
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15826
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
15827
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15828
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15829
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15830
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15831
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15832
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15833
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15834
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
15835
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15836
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15837
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
15838
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
15839
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15840
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
15841
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
15842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15843
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
15844
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15846
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15848
|
+
Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.6ms)
|
15849
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15850
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15851
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
15852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15853
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15854
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15855
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15856
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15857
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15858
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15859
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
15860
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15861
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15862
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15863
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
15864
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15865
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15866
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15867
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15868
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
15869
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
15870
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
15871
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
15872
|
+
[1m[36mGotFixed::User Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
15873
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
|
15874
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
15875
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
15876
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
15877
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15878
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15879
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15880
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15882
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15884
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15885
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15886
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15887
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15888
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15889
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15890
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15891
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15892
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15894
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15895
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15896
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15897
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15898
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15899
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15900
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15901
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15902
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15903
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
15904
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15905
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15906
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15907
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15908
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15909
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15910
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
|
15911
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15912
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15913
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15914
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
15915
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15916
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15917
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15918
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15919
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15920
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
15921
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15922
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
15923
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15924
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
15925
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15926
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15927
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
15928
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["vendor_id", "iWnj89"]]
|
15929
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15930
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15931
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1[0m
|
15932
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15933
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15934
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15935
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
15936
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15937
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15938
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
|
15939
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15940
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15941
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15942
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
|
15943
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15944
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15945
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1[0m
|
15946
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15947
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15948
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15949
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)[0m
|
15950
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15951
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15952
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
|
15953
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15954
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15955
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15956
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
|
15957
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15958
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15959
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1[0m
|
15960
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15961
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15962
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15963
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)[0m
|
15964
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15965
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15966
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
|
15967
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15968
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15969
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15970
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
|
15971
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15973
|
+
[1m[36mGotFixed::User Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1[0m
|
15974
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15975
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15976
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15977
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)[0m
|
15978
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15979
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15980
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
|
15981
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15982
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15984
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
|
15985
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15986
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15987
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1[0m
|
15988
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15989
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15990
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15991
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)[0m
|
15992
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15993
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15994
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
|
15995
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
15996
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15997
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15998
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
|
15999
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16000
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16001
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16002
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16003
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16004
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16005
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
|
16006
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16007
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
16008
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
16009
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16010
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16011
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16012
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16013
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16014
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
16015
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16016
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16017
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
16018
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16019
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16020
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
|
16021
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16022
|
+
[1m[35m (0.0ms)[0m begin transaction
|
16023
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1[0m
|
16024
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16025
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16026
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
|
16027
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16028
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16029
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16030
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16031
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:27:45 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:27:45 UTC +00:00]]
|
16032
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16033
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16034
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16035
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
16036
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
16037
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16038
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16039
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
16040
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16041
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16042
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16043
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16044
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16045
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16046
|
+
[1m[35mSQL (3.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16047
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16048
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16049
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1[0m
|
16050
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16051
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16052
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16053
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16054
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16055
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16056
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
|
16057
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16058
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16059
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16060
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
|
16061
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16062
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16063
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1[0m
|
16064
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16066
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16067
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)[0m
|
16068
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16069
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16070
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
|
16071
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16072
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16073
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16074
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
|
16075
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16076
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16077
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1[0m
|
16078
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16079
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16080
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16081
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)[0m
|
16082
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16084
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
|
16085
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16086
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16088
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
|
16089
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16090
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16091
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1[0m
|
16092
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16093
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16094
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16095
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)[0m
|
16096
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16097
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16098
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
|
16099
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16100
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16102
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
|
16103
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16105
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1[0m
|
16106
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16108
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16109
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)[0m
|
16110
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16111
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16112
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
|
16113
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16114
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16115
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16116
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
|
16117
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16118
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16119
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16120
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16121
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16122
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16123
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16124
|
+
[1m[35mGotFixed::User Load (0.2ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16125
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
16126
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16127
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (1.9ms)
|
16128
|
+
|
16129
|
+
Sent mail to email1@factory.com (14.7ms)
|
16130
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16131
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16132
|
+
To: email1@factory.com
|
16133
|
+
Message-ID: <524d39a87920e_327c3fc1fd0546d89908e@Cb.local.mail>
|
16134
|
+
Subject: [Fixed] A very bad issue...
|
16135
|
+
Mime-Version: 1.0
|
16136
|
+
Content-Type: text/plain;
|
16137
|
+
charset=UTF-8
|
16138
|
+
Content-Transfer-Encoding: 7bit
|
16139
|
+
|
16140
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16141
|
+
|
16142
|
+
The following variables are available: @issue and @user.
|
16143
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 2]]
|
16144
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16145
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16146
|
+
|
16147
|
+
Sent mail to email2@factory.com (8.2ms)
|
16148
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16149
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16150
|
+
To: email2@factory.com
|
16151
|
+
Message-ID: <524d39a87e27d_327c3fc1fd0546d899130@Cb.local.mail>
|
16152
|
+
Subject: [Fixed] A very bad issue...
|
16153
|
+
Mime-Version: 1.0
|
16154
|
+
Content-Type: text/plain;
|
16155
|
+
charset=UTF-8
|
16156
|
+
Content-Transfer-Encoding: 7bit
|
16157
|
+
|
16158
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16159
|
+
|
16160
|
+
The following variables are available: @issue and @user.
|
16161
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 3]]
|
16162
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16163
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16164
|
+
|
16165
|
+
Sent mail to email3@factory.com (8.3ms)
|
16166
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16167
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16168
|
+
To: email3@factory.com
|
16169
|
+
Message-ID: <524d39a882b5a_327c3fc1fd0546d89921e@Cb.local.mail>
|
16170
|
+
Subject: [Fixed] A very bad issue...
|
16171
|
+
Mime-Version: 1.0
|
16172
|
+
Content-Type: text/plain;
|
16173
|
+
charset=UTF-8
|
16174
|
+
Content-Transfer-Encoding: 7bit
|
16175
|
+
|
16176
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16177
|
+
|
16178
|
+
The following variables are available: @issue and @user.
|
16179
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 4]]
|
16180
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16181
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.0ms)
|
16182
|
+
|
16183
|
+
Sent mail to email4@factory.com (8.0ms)
|
16184
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16185
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16186
|
+
To: email4@factory.com
|
16187
|
+
Message-ID: <524d39a8873ce_327c3fc1fd0546d899388@Cb.local.mail>
|
16188
|
+
Subject: [Fixed] A very bad issue...
|
16189
|
+
Mime-Version: 1.0
|
16190
|
+
Content-Type: text/plain;
|
16191
|
+
charset=UTF-8
|
16192
|
+
Content-Transfer-Encoding: 7bit
|
16193
|
+
|
16194
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16195
|
+
|
16196
|
+
The following variables are available: @issue and @user.
|
16197
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 5]]
|
16198
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16199
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.0ms)
|
16200
|
+
|
16201
|
+
Sent mail to email5@factory.com (8.0ms)
|
16202
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16203
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16204
|
+
To: email5@factory.com
|
16205
|
+
Message-ID: <524d39a88bc3a_327c3fc1fd0546d8994a4@Cb.local.mail>
|
16206
|
+
Subject: [Fixed] A very bad issue...
|
16207
|
+
Mime-Version: 1.0
|
16208
|
+
Content-Type: text/plain;
|
16209
|
+
charset=UTF-8
|
16210
|
+
Content-Transfer-Encoding: 7bit
|
16211
|
+
|
16212
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16213
|
+
|
16214
|
+
The following variables are available: @issue and @user.
|
16215
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 6]]
|
16216
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16217
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16218
|
+
|
16219
|
+
Sent mail to email6@factory.com (7.9ms)
|
16220
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16221
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16222
|
+
To: email6@factory.com
|
16223
|
+
Message-ID: <524d39a890382_327c3fc1fd0546d89952c@Cb.local.mail>
|
16224
|
+
Subject: [Fixed] A very bad issue...
|
16225
|
+
Mime-Version: 1.0
|
16226
|
+
Content-Type: text/plain;
|
16227
|
+
charset=UTF-8
|
16228
|
+
Content-Transfer-Encoding: 7bit
|
16229
|
+
|
16230
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16231
|
+
|
16232
|
+
The following variables are available: @issue and @user.
|
16233
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 7]]
|
16234
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16235
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16236
|
+
|
16237
|
+
Sent mail to email7@factory.com (8.1ms)
|
16238
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16239
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16240
|
+
To: email7@factory.com
|
16241
|
+
Message-ID: <524d39a894a5a_327c3fc1fd0546d8996b1@Cb.local.mail>
|
16242
|
+
Subject: [Fixed] A very bad issue...
|
16243
|
+
Mime-Version: 1.0
|
16244
|
+
Content-Type: text/plain;
|
16245
|
+
charset=UTF-8
|
16246
|
+
Content-Transfer-Encoding: 7bit
|
16247
|
+
|
16248
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16249
|
+
|
16250
|
+
The following variables are available: @issue and @user.
|
16251
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 8]]
|
16252
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16253
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.0ms)
|
16254
|
+
|
16255
|
+
Sent mail to email8@factory.com (7.9ms)
|
16256
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16257
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16258
|
+
To: email8@factory.com
|
16259
|
+
Message-ID: <524d39a89923a_327c3fc1fd0546d8997ad@Cb.local.mail>
|
16260
|
+
Subject: [Fixed] A very bad issue...
|
16261
|
+
Mime-Version: 1.0
|
16262
|
+
Content-Type: text/plain;
|
16263
|
+
charset=UTF-8
|
16264
|
+
Content-Transfer-Encoding: 7bit
|
16265
|
+
|
16266
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16267
|
+
|
16268
|
+
The following variables are available: @issue and @user.
|
16269
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 9]]
|
16270
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16271
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.0ms)
|
16272
|
+
|
16273
|
+
Sent mail to email9@factory.com (7.9ms)
|
16274
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16275
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16276
|
+
To: email9@factory.com
|
16277
|
+
Message-ID: <524d39a89d72a_327c3fc1fd0546d89987f@Cb.local.mail>
|
16278
|
+
Subject: [Fixed] A very bad issue...
|
16279
|
+
Mime-Version: 1.0
|
16280
|
+
Content-Type: text/plain;
|
16281
|
+
charset=UTF-8
|
16282
|
+
Content-Transfer-Encoding: 7bit
|
16283
|
+
|
16284
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16285
|
+
|
16286
|
+
The following variables are available: @issue and @user.
|
16287
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 10]]
|
16288
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16289
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.0ms)
|
16290
|
+
|
16291
|
+
Sent mail to email10@factory.com (7.6ms)
|
16292
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16293
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16294
|
+
To: email10@factory.com
|
16295
|
+
Message-ID: <524d39a8a1d31_327c3fc1fd0546d899921@Cb.local.mail>
|
16296
|
+
Subject: [Fixed] A very bad issue...
|
16297
|
+
Mime-Version: 1.0
|
16298
|
+
Content-Type: text/plain;
|
16299
|
+
charset=UTF-8
|
16300
|
+
Content-Transfer-Encoding: 7bit
|
16301
|
+
|
16302
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16303
|
+
|
16304
|
+
The following variables are available: @issue and @user.
|
16305
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16306
|
+
[1m[35m (2.1ms)[0m rollback transaction
|
16307
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16308
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16309
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16310
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16311
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16312
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16313
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1[0m
|
16314
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16315
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16316
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16317
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16318
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16319
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16320
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16321
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16323
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16324
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16325
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16326
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
|
16327
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
16328
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16329
|
+
|
16330
|
+
Sent mail to email11@factory.com (8.5ms)
|
16331
|
+
Date: Thu, 03 Oct 2013 11:32:24 +0200
|
16332
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16333
|
+
To: email11@factory.com
|
16334
|
+
Message-ID: <524d39a8a952f_327c3fc1fd0546d81000d9@Cb.local.mail>
|
16335
|
+
Subject: [Fixed] A very bad issue...
|
16336
|
+
Mime-Version: 1.0
|
16337
|
+
Content-Type: text/plain;
|
16338
|
+
charset=UTF-8
|
16339
|
+
Content-Transfer-Encoding: 7bit
|
16340
|
+
|
16341
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16342
|
+
|
16343
|
+
The following variables are available: @issue and @user.
|
16344
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16345
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
16346
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16347
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16348
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16349
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16350
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16351
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16352
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16353
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16354
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16355
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16356
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
16357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16358
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16360
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16362
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16363
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16364
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16365
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16366
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16368
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16369
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16370
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16371
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16372
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16373
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16374
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
|
16375
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
16376
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16377
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1[0m
|
16378
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16379
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16380
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
|
16381
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16382
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16383
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16384
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16385
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16386
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16387
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16388
|
+
[1m[35mGotFixed::User Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16389
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
16390
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
16391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16392
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16393
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16394
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16395
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16396
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16397
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16398
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16399
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16400
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16401
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16402
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
16403
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16404
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16405
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16406
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16407
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
16408
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
16409
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16410
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
16411
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
16412
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/issues/subscribe.js.erb (0.4ms)
|
16413
|
+
Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.3ms)
|
16414
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
16415
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16416
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
16417
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16418
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16419
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16420
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16421
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16422
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16423
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16424
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16425
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16426
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16427
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
16428
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
16429
|
+
[1m[36mGotFixed::User Load (0.2ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16430
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
16431
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
16432
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16433
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16434
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16435
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16436
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16437
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16438
|
+
Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 1.0ms)
|
16439
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
16440
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16441
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
16442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16443
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16444
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16445
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16446
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16447
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16448
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
16449
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
16450
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16451
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
16452
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16453
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16454
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16455
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
16456
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16457
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16458
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16459
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16460
|
+
Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.9ms)
|
16461
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1[0m [["id", 1]]
|
16462
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16463
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
16464
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16465
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
16466
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
16467
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
16468
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16469
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
16470
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", true], ["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
16471
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16472
|
+
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
16473
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
16474
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
16475
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16476
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16477
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16478
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00], ["title", "MyString"], ["updated_at", Thu, 03 Oct 2013 09:32:24 UTC +00:00]]
|
16479
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16480
|
+
Processing by GotFixed::IssuesController#index as HTML
|
16481
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
16482
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC[0m
|
16483
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
16484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16485
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16486
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16487
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
16488
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16489
|
+
[1m[35m (0.0ms)[0m begin transaction
|
16490
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
16491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16492
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
16493
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
16494
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16495
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16496
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
16497
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16498
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16499
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16500
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16501
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16502
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16503
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16504
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16505
|
+
[1m[35mSQL (2.8ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16506
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16507
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16508
|
+
[1m[36mGotFixed::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1[0m
|
16509
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16510
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16511
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16512
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16513
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16514
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16515
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16516
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16518
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16519
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16520
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16521
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
|
16522
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
16523
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (1.8ms)
|
16524
|
+
|
16525
|
+
Sent mail to email1@factory.com (58.6ms)
|
16526
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16527
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16528
|
+
To: email1@factory.com
|
16529
|
+
Message-ID: <524d39b2a5796_32d43fd0518546dc18459@Cb.local.mail>
|
16530
|
+
Subject: [Fixed] A very bad issue...
|
16531
|
+
Mime-Version: 1.0
|
16532
|
+
Content-Type: text/plain;
|
16533
|
+
charset=UTF-8
|
16534
|
+
Content-Transfer-Encoding: 7bit
|
16535
|
+
|
16536
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16537
|
+
|
16538
|
+
The following variables are available: @issue and @user.
|
16539
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16540
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
16541
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16542
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16543
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16544
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16545
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16546
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16547
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16548
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16549
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16550
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16551
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
16552
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16553
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16554
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16555
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16556
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16557
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16558
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1[0m
|
16559
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16560
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16562
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16563
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16564
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16565
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
|
16566
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16567
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16568
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16569
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
|
16570
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16572
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1[0m
|
16573
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16574
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16575
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16576
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)[0m
|
16577
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16579
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
|
16580
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16581
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16582
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16583
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
|
16584
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16585
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16586
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1[0m
|
16587
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16588
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16589
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16590
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)[0m
|
16591
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16592
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16593
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
|
16594
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16595
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16596
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16597
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
|
16598
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16599
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16600
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1[0m
|
16601
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16602
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16603
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16604
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)[0m
|
16605
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16606
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16607
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
|
16608
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16609
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16610
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16611
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
|
16612
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16613
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16614
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1[0m
|
16615
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16616
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16617
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16618
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)[0m
|
16619
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16620
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16621
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
|
16622
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16623
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16624
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16625
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
|
16626
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16628
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16629
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16630
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16631
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16632
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16633
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16634
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
16635
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16636
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16637
|
+
|
16638
|
+
Sent mail to email2@factory.com (7.9ms)
|
16639
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16640
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16641
|
+
To: email2@factory.com
|
16642
|
+
Message-ID: <524d39b2c1a53_32d43fd0518546dc185a1@Cb.local.mail>
|
16643
|
+
Subject: [Fixed] A very bad issue...
|
16644
|
+
Mime-Version: 1.0
|
16645
|
+
Content-Type: text/plain;
|
16646
|
+
charset=UTF-8
|
16647
|
+
Content-Transfer-Encoding: 7bit
|
16648
|
+
|
16649
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16650
|
+
|
16651
|
+
The following variables are available: @issue and @user.
|
16652
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 2]]
|
16653
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16654
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.0ms)
|
16655
|
+
|
16656
|
+
Sent mail to email3@factory.com (8.3ms)
|
16657
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16658
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16659
|
+
To: email3@factory.com
|
16660
|
+
Message-ID: <524d39b2c6008_32d43fd0518546dc18668@Cb.local.mail>
|
16661
|
+
Subject: [Fixed] A very bad issue...
|
16662
|
+
Mime-Version: 1.0
|
16663
|
+
Content-Type: text/plain;
|
16664
|
+
charset=UTF-8
|
16665
|
+
Content-Transfer-Encoding: 7bit
|
16666
|
+
|
16667
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16668
|
+
|
16669
|
+
The following variables are available: @issue and @user.
|
16670
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 3]]
|
16671
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16672
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16673
|
+
|
16674
|
+
Sent mail to email4@factory.com (8.1ms)
|
16675
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16676
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16677
|
+
To: email4@factory.com
|
16678
|
+
Message-ID: <524d39b2ca9a4_32d43fd0518546dc18772@Cb.local.mail>
|
16679
|
+
Subject: [Fixed] A very bad issue...
|
16680
|
+
Mime-Version: 1.0
|
16681
|
+
Content-Type: text/plain;
|
16682
|
+
charset=UTF-8
|
16683
|
+
Content-Transfer-Encoding: 7bit
|
16684
|
+
|
16685
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16686
|
+
|
16687
|
+
The following variables are available: @issue and @user.
|
16688
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 4]]
|
16689
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16690
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16691
|
+
|
16692
|
+
Sent mail to email5@factory.com (8.1ms)
|
16693
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16694
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16695
|
+
To: email5@factory.com
|
16696
|
+
Message-ID: <524d39b2cf2ba_32d43fd0518546dc188ee@Cb.local.mail>
|
16697
|
+
Subject: [Fixed] A very bad issue...
|
16698
|
+
Mime-Version: 1.0
|
16699
|
+
Content-Type: text/plain;
|
16700
|
+
charset=UTF-8
|
16701
|
+
Content-Transfer-Encoding: 7bit
|
16702
|
+
|
16703
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16704
|
+
|
16705
|
+
The following variables are available: @issue and @user.
|
16706
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 5]]
|
16707
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16708
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16709
|
+
|
16710
|
+
Sent mail to email6@factory.com (8.0ms)
|
16711
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16712
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16713
|
+
To: email6@factory.com
|
16714
|
+
Message-ID: <524d39b2d3e44_32d43fd0518546dc189e2@Cb.local.mail>
|
16715
|
+
Subject: [Fixed] A very bad issue...
|
16716
|
+
Mime-Version: 1.0
|
16717
|
+
Content-Type: text/plain;
|
16718
|
+
charset=UTF-8
|
16719
|
+
Content-Transfer-Encoding: 7bit
|
16720
|
+
|
16721
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16722
|
+
|
16723
|
+
The following variables are available: @issue and @user.
|
16724
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 6]]
|
16725
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16726
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16727
|
+
|
16728
|
+
Sent mail to email7@factory.com (7.9ms)
|
16729
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16730
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16731
|
+
To: email7@factory.com
|
16732
|
+
Message-ID: <524d39b2d8456_32d43fd0518546dc1901b@Cb.local.mail>
|
16733
|
+
Subject: [Fixed] A very bad issue...
|
16734
|
+
Mime-Version: 1.0
|
16735
|
+
Content-Type: text/plain;
|
16736
|
+
charset=UTF-8
|
16737
|
+
Content-Transfer-Encoding: 7bit
|
16738
|
+
|
16739
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16740
|
+
|
16741
|
+
The following variables are available: @issue and @user.
|
16742
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 7]]
|
16743
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16744
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16745
|
+
|
16746
|
+
Sent mail to email8@factory.com (7.7ms)
|
16747
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16748
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16749
|
+
To: email8@factory.com
|
16750
|
+
Message-ID: <524d39b2dca15_32d43fd0518546dc191bc@Cb.local.mail>
|
16751
|
+
Subject: [Fixed] A very bad issue...
|
16752
|
+
Mime-Version: 1.0
|
16753
|
+
Content-Type: text/plain;
|
16754
|
+
charset=UTF-8
|
16755
|
+
Content-Transfer-Encoding: 7bit
|
16756
|
+
|
16757
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16758
|
+
|
16759
|
+
The following variables are available: @issue and @user.
|
16760
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 8]]
|
16761
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16762
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16763
|
+
|
16764
|
+
Sent mail to email9@factory.com (7.7ms)
|
16765
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16766
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16767
|
+
To: email9@factory.com
|
16768
|
+
Message-ID: <524d39b2e0ee2_32d43fd0518546dc19227@Cb.local.mail>
|
16769
|
+
Subject: [Fixed] A very bad issue...
|
16770
|
+
Mime-Version: 1.0
|
16771
|
+
Content-Type: text/plain;
|
16772
|
+
charset=UTF-8
|
16773
|
+
Content-Transfer-Encoding: 7bit
|
16774
|
+
|
16775
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16776
|
+
|
16777
|
+
The following variables are available: @issue and @user.
|
16778
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 9]]
|
16779
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16780
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16781
|
+
|
16782
|
+
Sent mail to email10@factory.com (8.2ms)
|
16783
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16784
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16785
|
+
To: email10@factory.com
|
16786
|
+
Message-ID: <524d39b2e543d_32d43fd0518546dc193c0@Cb.local.mail>
|
16787
|
+
Subject: [Fixed] A very bad issue...
|
16788
|
+
Mime-Version: 1.0
|
16789
|
+
Content-Type: text/plain;
|
16790
|
+
charset=UTF-8
|
16791
|
+
Content-Transfer-Encoding: 7bit
|
16792
|
+
|
16793
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16794
|
+
|
16795
|
+
The following variables are available: @issue and @user.
|
16796
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 10]]
|
16797
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
16798
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
16799
|
+
|
16800
|
+
Sent mail to email11@factory.com (7.9ms)
|
16801
|
+
Date: Thu, 03 Oct 2013 11:32:34 +0200
|
16802
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
16803
|
+
To: email11@factory.com
|
16804
|
+
Message-ID: <524d39b2e9d67_32d43fd0518546dc1943b@Cb.local.mail>
|
16805
|
+
Subject: [Fixed] A very bad issue...
|
16806
|
+
Mime-Version: 1.0
|
16807
|
+
Content-Type: text/plain;
|
16808
|
+
charset=UTF-8
|
16809
|
+
Content-Transfer-Encoding: 7bit
|
16810
|
+
|
16811
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
16812
|
+
|
16813
|
+
The following variables are available: @issue and @user.
|
16814
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16815
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
16816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16817
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16818
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16819
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16820
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16821
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16822
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16823
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16824
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16825
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16827
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16828
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16829
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16830
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16831
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16832
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16833
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16834
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16835
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16836
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16837
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:34 UTC +00:00]]
|
16838
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16839
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16840
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16841
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
16842
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
16843
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16844
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1[0m
|
16845
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16846
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16847
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
|
16848
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16849
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16850
|
+
[1m[36mGotFixed::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1[0m
|
16851
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16853
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
16854
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
16855
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
16856
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16857
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
16858
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", true], ["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
16859
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16860
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.8ms)
|
16861
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
16862
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
16863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16864
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16865
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16866
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["title", "MyString"], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00]]
|
16867
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16868
|
+
Processing by GotFixed::IssuesController#index as HTML
|
16869
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
16870
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
|
16871
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
16872
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16873
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16874
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16875
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16876
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16877
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16878
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16879
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16880
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00]]
|
16881
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16882
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
16883
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
16884
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16885
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
16886
|
+
[1m[35mGotFixed::User Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1 [["issue_id", 1]]
|
16887
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16888
|
+
[1m[35m (0.2ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
16889
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16890
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16891
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16892
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16893
|
+
Completed 200 OK in 11ms (Views: 3.6ms | ActiveRecord: 0.9ms)
|
16894
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1[0m [["id", 1]]
|
16895
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16896
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
16897
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16898
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16899
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16900
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16901
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16902
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16903
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
16904
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
16905
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16906
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
16907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16908
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16909
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00]]
|
16910
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16911
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16912
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16913
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
16914
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16915
|
+
Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 1.0ms)
|
16916
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
16917
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16918
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
16919
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16920
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16921
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16922
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16923
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16924
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
16925
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16926
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16927
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 09:32:35 UTC +00:00]]
|
16928
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16929
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16930
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
16931
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16932
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16933
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16935
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
16936
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
16937
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
16938
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
16939
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
16940
|
+
Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
16941
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
16942
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
16943
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
16944
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
16945
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16946
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16947
|
+
[1m[35mGotFixed::User Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
|
16948
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16949
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16950
|
+
[1m[36mGotFixed::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1[0m
|
16951
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16952
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16953
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
|
16954
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16955
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16956
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16957
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16958
|
+
[1m[36mSQL (5.0ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
16959
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
16960
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16961
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
16962
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
16963
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
16964
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16965
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16966
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
16967
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor_id", "iWnj89"]]
|
16968
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16969
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
16970
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1[0m
|
16971
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
16972
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16973
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16974
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
16975
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16976
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16977
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
|
16978
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
16979
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16980
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
16981
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
|
16982
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16983
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16984
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1[0m
|
16985
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
16986
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16987
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16988
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)[0m
|
16989
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16990
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16991
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
|
16992
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
16993
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
16994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
16995
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
|
16996
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
16997
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
16998
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1[0m
|
16999
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17000
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17001
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17002
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)[0m
|
17003
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17004
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17005
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
|
17006
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17007
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17009
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
|
17010
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17011
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17012
|
+
[1m[36mGotFixed::User Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1[0m
|
17013
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17014
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17015
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17016
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)[0m
|
17017
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17018
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17019
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
|
17020
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17021
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17022
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17023
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
|
17024
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17025
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17026
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1[0m
|
17027
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17028
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17029
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17030
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)[0m
|
17031
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17033
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
|
17034
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17035
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17036
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17037
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
|
17038
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17039
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17040
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17041
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17042
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17043
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17044
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17045
|
+
[1m[35mGotFixed::User Load (0.2ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17046
|
+
[1m[36mGotFixed::User Load (0.2ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
17047
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17048
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (1.9ms)
|
17049
|
+
|
17050
|
+
Sent mail to email1@factory.com (14.9ms)
|
17051
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17052
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17053
|
+
To: email1@factory.com
|
17054
|
+
Message-ID: <524d6837953ac_6cef3fee754546d069c@Cb.local.mail>
|
17055
|
+
Subject: [Fixed] A very bad issue...
|
17056
|
+
Mime-Version: 1.0
|
17057
|
+
Content-Type: text/plain;
|
17058
|
+
charset=UTF-8
|
17059
|
+
Content-Transfer-Encoding: 7bit
|
17060
|
+
|
17061
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17062
|
+
|
17063
|
+
The following variables are available: @issue and @user.
|
17064
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 2]]
|
17065
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17066
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17067
|
+
|
17068
|
+
Sent mail to email2@factory.com (8.2ms)
|
17069
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17070
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17071
|
+
To: email2@factory.com
|
17072
|
+
Message-ID: <524d68379a004_6cef3fee754546d0774@Cb.local.mail>
|
17073
|
+
Subject: [Fixed] A very bad issue...
|
17074
|
+
Mime-Version: 1.0
|
17075
|
+
Content-Type: text/plain;
|
17076
|
+
charset=UTF-8
|
17077
|
+
Content-Transfer-Encoding: 7bit
|
17078
|
+
|
17079
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17080
|
+
|
17081
|
+
The following variables are available: @issue and @user.
|
17082
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 3]]
|
17083
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17084
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17085
|
+
|
17086
|
+
Sent mail to email3@factory.com (7.9ms)
|
17087
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17088
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17089
|
+
To: email3@factory.com
|
17090
|
+
Message-ID: <524d68379e770_6cef3fee754546d0885@Cb.local.mail>
|
17091
|
+
Subject: [Fixed] A very bad issue...
|
17092
|
+
Mime-Version: 1.0
|
17093
|
+
Content-Type: text/plain;
|
17094
|
+
charset=UTF-8
|
17095
|
+
Content-Transfer-Encoding: 7bit
|
17096
|
+
|
17097
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17098
|
+
|
17099
|
+
The following variables are available: @issue and @user.
|
17100
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 4]]
|
17101
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17102
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17103
|
+
|
17104
|
+
Sent mail to email4@factory.com (8.1ms)
|
17105
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17106
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17107
|
+
To: email4@factory.com
|
17108
|
+
Message-ID: <524d6837a30f4_6cef3fee754546d09b3@Cb.local.mail>
|
17109
|
+
Subject: [Fixed] A very bad issue...
|
17110
|
+
Mime-Version: 1.0
|
17111
|
+
Content-Type: text/plain;
|
17112
|
+
charset=UTF-8
|
17113
|
+
Content-Transfer-Encoding: 7bit
|
17114
|
+
|
17115
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17116
|
+
|
17117
|
+
The following variables are available: @issue and @user.
|
17118
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 5]]
|
17119
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17120
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17121
|
+
|
17122
|
+
Sent mail to email5@factory.com (8.2ms)
|
17123
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17124
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17125
|
+
To: email5@factory.com
|
17126
|
+
Message-ID: <524d6837a7e67_6cef3fee754546d0108a@Cb.local.mail>
|
17127
|
+
Subject: [Fixed] A very bad issue...
|
17128
|
+
Mime-Version: 1.0
|
17129
|
+
Content-Type: text/plain;
|
17130
|
+
charset=UTF-8
|
17131
|
+
Content-Transfer-Encoding: 7bit
|
17132
|
+
|
17133
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17134
|
+
|
17135
|
+
The following variables are available: @issue and @user.
|
17136
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 6]]
|
17137
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17138
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17139
|
+
|
17140
|
+
Sent mail to email6@factory.com (7.8ms)
|
17141
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17142
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17143
|
+
To: email6@factory.com
|
17144
|
+
Message-ID: <524d6837acb3a_6cef3fee754546d0114@Cb.local.mail>
|
17145
|
+
Subject: [Fixed] A very bad issue...
|
17146
|
+
Mime-Version: 1.0
|
17147
|
+
Content-Type: text/plain;
|
17148
|
+
charset=UTF-8
|
17149
|
+
Content-Transfer-Encoding: 7bit
|
17150
|
+
|
17151
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17152
|
+
|
17153
|
+
The following variables are available: @issue and @user.
|
17154
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 7]]
|
17155
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17156
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17157
|
+
|
17158
|
+
Sent mail to email7@factory.com (7.9ms)
|
17159
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17160
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17161
|
+
To: email7@factory.com
|
17162
|
+
Message-ID: <524d6837b10ef_6cef3fee754546d012c7@Cb.local.mail>
|
17163
|
+
Subject: [Fixed] A very bad issue...
|
17164
|
+
Mime-Version: 1.0
|
17165
|
+
Content-Type: text/plain;
|
17166
|
+
charset=UTF-8
|
17167
|
+
Content-Transfer-Encoding: 7bit
|
17168
|
+
|
17169
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17170
|
+
|
17171
|
+
The following variables are available: @issue and @user.
|
17172
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 8]]
|
17173
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17174
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17175
|
+
|
17176
|
+
Sent mail to email8@factory.com (7.7ms)
|
17177
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17178
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17179
|
+
To: email8@factory.com
|
17180
|
+
Message-ID: <524d6837b5824_6cef3fee754546d01397@Cb.local.mail>
|
17181
|
+
Subject: [Fixed] A very bad issue...
|
17182
|
+
Mime-Version: 1.0
|
17183
|
+
Content-Type: text/plain;
|
17184
|
+
charset=UTF-8
|
17185
|
+
Content-Transfer-Encoding: 7bit
|
17186
|
+
|
17187
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17188
|
+
|
17189
|
+
The following variables are available: @issue and @user.
|
17190
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 9]]
|
17191
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17192
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17193
|
+
|
17194
|
+
Sent mail to email9@factory.com (8.3ms)
|
17195
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17196
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17197
|
+
To: email9@factory.com
|
17198
|
+
Message-ID: <524d6837b9c77_6cef3fee754546d0149d@Cb.local.mail>
|
17199
|
+
Subject: [Fixed] A very bad issue...
|
17200
|
+
Mime-Version: 1.0
|
17201
|
+
Content-Type: text/plain;
|
17202
|
+
charset=UTF-8
|
17203
|
+
Content-Transfer-Encoding: 7bit
|
17204
|
+
|
17205
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17206
|
+
|
17207
|
+
The following variables are available: @issue and @user.
|
17208
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 10]]
|
17209
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17210
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17211
|
+
|
17212
|
+
Sent mail to email10@factory.com (11.9ms)
|
17213
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17214
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17215
|
+
To: email10@factory.com
|
17216
|
+
Message-ID: <524d6837be385_6cef3fee754546d0159@Cb.local.mail>
|
17217
|
+
Subject: [Fixed] A very bad issue...
|
17218
|
+
Mime-Version: 1.0
|
17219
|
+
Content-Type: text/plain;
|
17220
|
+
charset=UTF-8
|
17221
|
+
Content-Transfer-Encoding: 7bit
|
17222
|
+
|
17223
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17224
|
+
|
17225
|
+
The following variables are available: @issue and @user.
|
17226
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17227
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
17228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17230
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17231
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17232
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17233
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17234
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1[0m
|
17235
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17236
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17237
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17238
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17239
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17240
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17241
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17242
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17243
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17244
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17245
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17246
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17247
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
|
17248
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
17249
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17250
|
+
|
17251
|
+
Sent mail to email11@factory.com (8.0ms)
|
17252
|
+
Date: Thu, 03 Oct 2013 14:51:03 +0200
|
17253
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17254
|
+
To: email11@factory.com
|
17255
|
+
Message-ID: <524d6837c64df_6cef3fee754546d016e3@Cb.local.mail>
|
17256
|
+
Subject: [Fixed] A very bad issue...
|
17257
|
+
Mime-Version: 1.0
|
17258
|
+
Content-Type: text/plain;
|
17259
|
+
charset=UTF-8
|
17260
|
+
Content-Transfer-Encoding: 7bit
|
17261
|
+
|
17262
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17263
|
+
|
17264
|
+
The following variables are available: @issue and @user.
|
17265
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17266
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
17267
|
+
[1m[35m (0.2ms)[0m begin transaction
|
17268
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17269
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17270
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17271
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17272
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17273
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17274
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17275
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17276
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17277
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
17278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17279
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
17280
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
17281
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17282
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
17283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17285
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17287
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17289
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17290
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17291
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17292
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17293
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17295
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17296
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17297
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17298
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17299
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
17300
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17301
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17302
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17303
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17304
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17305
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17306
|
+
[1m[36mGotFixed::User Load (0.2ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17307
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
17308
|
+
[1m[36mGotFixed::User Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
17309
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/issues/subscribe.js.erb (0.4ms)
|
17310
|
+
Completed 200 OK in 10ms (Views: 4.9ms | ActiveRecord: 0.6ms)
|
17311
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17312
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17313
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
17314
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17315
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17316
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17317
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17318
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17319
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17320
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17321
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17322
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17323
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17324
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17325
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17326
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17327
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
17328
|
+
[1m[36mGotFixed::User Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
17329
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17330
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17331
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17332
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17333
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17334
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17335
|
+
Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.6ms)
|
17336
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17337
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17338
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
17339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17340
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17341
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17342
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17343
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17344
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17345
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17346
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17347
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17348
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
17349
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17350
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17351
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17352
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
17353
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17354
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17355
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17356
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17357
|
+
Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.9ms)
|
17358
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1[0m [["id", 1]]
|
17359
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17360
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
17361
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17362
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
17363
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
17364
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
17365
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17366
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
17367
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", true], ["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
17368
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17369
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
17370
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
17371
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
17372
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17373
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17374
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17375
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00], ["title", "MyString"], ["updated_at", Thu, 03 Oct 2013 12:51:03 UTC +00:00]]
|
17376
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17377
|
+
Processing by GotFixed::IssuesController#index as HTML
|
17378
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
17379
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC[0m
|
17380
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
17381
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17382
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17383
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17384
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17386
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17388
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17389
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17390
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17391
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17392
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17394
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17395
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17396
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17397
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
17398
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17399
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17400
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17401
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17402
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17403
|
+
[1m[36mGotFixed::User Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1[0m
|
17404
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17405
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17406
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17407
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17408
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17409
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17410
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17411
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17412
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17413
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17414
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17415
|
+
[1m[36mGotFixed::User Load (0.2ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17416
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
|
17417
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
17418
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (1.9ms)
|
17419
|
+
|
17420
|
+
Sent mail to email1@factory.com (14.8ms)
|
17421
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17422
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17423
|
+
To: email1@factory.com
|
17424
|
+
Message-ID: <52513af6620a4_5ddb3fcbf44546d846643@Cb.local.mail>
|
17425
|
+
Subject: [Fixed] A very bad issue...
|
17426
|
+
Mime-Version: 1.0
|
17427
|
+
Content-Type: text/plain;
|
17428
|
+
charset=UTF-8
|
17429
|
+
Content-Transfer-Encoding: 7bit
|
17430
|
+
|
17431
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17432
|
+
|
17433
|
+
The following variables are available: @issue and @user.
|
17434
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17435
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
17436
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17437
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17438
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17439
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17440
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17441
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17442
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17443
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17444
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17445
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17446
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
17447
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17448
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17449
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17450
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17451
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17452
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17453
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1[0m
|
17454
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17455
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17456
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17457
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17458
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17459
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17460
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
|
17461
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17462
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17463
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17464
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
|
17465
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17466
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17467
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1[0m
|
17468
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17469
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17470
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17471
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)[0m
|
17472
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17473
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17474
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
|
17475
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17476
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17477
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17478
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
|
17479
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17481
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1[0m
|
17482
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17483
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17484
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17485
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)[0m
|
17486
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17488
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
|
17489
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17490
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17491
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17492
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
|
17493
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17494
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17495
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1[0m
|
17496
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17497
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17498
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17499
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)[0m
|
17500
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17501
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17502
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
|
17503
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17504
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17505
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17506
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
|
17507
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17508
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17509
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1[0m
|
17510
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17511
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17512
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17513
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)[0m
|
17514
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17516
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
|
17517
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17518
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17519
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17520
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
|
17521
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17522
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17523
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17524
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17525
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17526
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17527
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17528
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17529
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
17530
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17531
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17532
|
+
|
17533
|
+
Sent mail to email2@factory.com (8.1ms)
|
17534
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17535
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17536
|
+
To: email2@factory.com
|
17537
|
+
Message-ID: <52513af67a53e_5ddb3fcbf44546d846740@Cb.local.mail>
|
17538
|
+
Subject: [Fixed] A very bad issue...
|
17539
|
+
Mime-Version: 1.0
|
17540
|
+
Content-Type: text/plain;
|
17541
|
+
charset=UTF-8
|
17542
|
+
Content-Transfer-Encoding: 7bit
|
17543
|
+
|
17544
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17545
|
+
|
17546
|
+
The following variables are available: @issue and @user.
|
17547
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 2]]
|
17548
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17549
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17550
|
+
|
17551
|
+
Sent mail to email3@factory.com (8.0ms)
|
17552
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17553
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17554
|
+
To: email3@factory.com
|
17555
|
+
Message-ID: <52513af67ecc7_5ddb3fcbf44546d84685@Cb.local.mail>
|
17556
|
+
Subject: [Fixed] A very bad issue...
|
17557
|
+
Mime-Version: 1.0
|
17558
|
+
Content-Type: text/plain;
|
17559
|
+
charset=UTF-8
|
17560
|
+
Content-Transfer-Encoding: 7bit
|
17561
|
+
|
17562
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17563
|
+
|
17564
|
+
The following variables are available: @issue and @user.
|
17565
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 3]]
|
17566
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17567
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17568
|
+
|
17569
|
+
Sent mail to email4@factory.com (13.0ms)
|
17570
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17571
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17572
|
+
To: email4@factory.com
|
17573
|
+
Message-ID: <52513af683a04_5ddb3fcbf44546d846967@Cb.local.mail>
|
17574
|
+
Subject: [Fixed] A very bad issue...
|
17575
|
+
Mime-Version: 1.0
|
17576
|
+
Content-Type: text/plain;
|
17577
|
+
charset=UTF-8
|
17578
|
+
Content-Transfer-Encoding: 7bit
|
17579
|
+
|
17580
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17581
|
+
|
17582
|
+
The following variables are available: @issue and @user.
|
17583
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 4]]
|
17584
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17585
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17586
|
+
|
17587
|
+
Sent mail to email5@factory.com (8.0ms)
|
17588
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17589
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17590
|
+
To: email5@factory.com
|
17591
|
+
Message-ID: <52513af689182_5ddb3fcbf44546d847029@Cb.local.mail>
|
17592
|
+
Subject: [Fixed] A very bad issue...
|
17593
|
+
Mime-Version: 1.0
|
17594
|
+
Content-Type: text/plain;
|
17595
|
+
charset=UTF-8
|
17596
|
+
Content-Transfer-Encoding: 7bit
|
17597
|
+
|
17598
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17599
|
+
|
17600
|
+
The following variables are available: @issue and @user.
|
17601
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 5]]
|
17602
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17603
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17604
|
+
|
17605
|
+
Sent mail to email6@factory.com (8.4ms)
|
17606
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17607
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17608
|
+
To: email6@factory.com
|
17609
|
+
Message-ID: <52513af68dbde_5ddb3fcbf44546d84711a@Cb.local.mail>
|
17610
|
+
Subject: [Fixed] A very bad issue...
|
17611
|
+
Mime-Version: 1.0
|
17612
|
+
Content-Type: text/plain;
|
17613
|
+
charset=UTF-8
|
17614
|
+
Content-Transfer-Encoding: 7bit
|
17615
|
+
|
17616
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17617
|
+
|
17618
|
+
The following variables are available: @issue and @user.
|
17619
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 6]]
|
17620
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17621
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17622
|
+
|
17623
|
+
Sent mail to email7@factory.com (8.0ms)
|
17624
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17625
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17626
|
+
To: email7@factory.com
|
17627
|
+
Message-ID: <52513af692814_5ddb3fcbf44546d847228@Cb.local.mail>
|
17628
|
+
Subject: [Fixed] A very bad issue...
|
17629
|
+
Mime-Version: 1.0
|
17630
|
+
Content-Type: text/plain;
|
17631
|
+
charset=UTF-8
|
17632
|
+
Content-Transfer-Encoding: 7bit
|
17633
|
+
|
17634
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17635
|
+
|
17636
|
+
The following variables are available: @issue and @user.
|
17637
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 7]]
|
17638
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17639
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17640
|
+
|
17641
|
+
Sent mail to email8@factory.com (8.2ms)
|
17642
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17643
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17644
|
+
To: email8@factory.com
|
17645
|
+
Message-ID: <52513af6971bf_5ddb3fcbf44546d84731e@Cb.local.mail>
|
17646
|
+
Subject: [Fixed] A very bad issue...
|
17647
|
+
Mime-Version: 1.0
|
17648
|
+
Content-Type: text/plain;
|
17649
|
+
charset=UTF-8
|
17650
|
+
Content-Transfer-Encoding: 7bit
|
17651
|
+
|
17652
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17653
|
+
|
17654
|
+
The following variables are available: @issue and @user.
|
17655
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 8]]
|
17656
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17657
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17658
|
+
|
17659
|
+
Sent mail to email9@factory.com (8.0ms)
|
17660
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17661
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17662
|
+
To: email9@factory.com
|
17663
|
+
Message-ID: <52513af69baf6_5ddb3fcbf44546d8474d1@Cb.local.mail>
|
17664
|
+
Subject: [Fixed] A very bad issue...
|
17665
|
+
Mime-Version: 1.0
|
17666
|
+
Content-Type: text/plain;
|
17667
|
+
charset=UTF-8
|
17668
|
+
Content-Transfer-Encoding: 7bit
|
17669
|
+
|
17670
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17671
|
+
|
17672
|
+
The following variables are available: @issue and @user.
|
17673
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 9]]
|
17674
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17675
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17676
|
+
|
17677
|
+
Sent mail to email10@factory.com (8.9ms)
|
17678
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17679
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17680
|
+
To: email10@factory.com
|
17681
|
+
Message-ID: <52513af6a06b3_5ddb3fcbf44546d8475a0@Cb.local.mail>
|
17682
|
+
Subject: [Fixed] A very bad issue...
|
17683
|
+
Mime-Version: 1.0
|
17684
|
+
Content-Type: text/plain;
|
17685
|
+
charset=UTF-8
|
17686
|
+
Content-Transfer-Encoding: 7bit
|
17687
|
+
|
17688
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17689
|
+
|
17690
|
+
The following variables are available: @issue and @user.
|
17691
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 10]]
|
17692
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
17693
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/user_mailer/issue_got_fixed_email.text.erb (0.1ms)
|
17694
|
+
|
17695
|
+
Sent mail to email11@factory.com (14.9ms)
|
17696
|
+
Date: Sun, 06 Oct 2013 12:27:02 +0200
|
17697
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
17698
|
+
To: email11@factory.com
|
17699
|
+
Message-ID: <52513af6a523d_5ddb3fcbf44546d847611@Cb.local.mail>
|
17700
|
+
Subject: [Fixed] A very bad issue...
|
17701
|
+
Mime-Version: 1.0
|
17702
|
+
Content-Type: text/plain;
|
17703
|
+
charset=UTF-8
|
17704
|
+
Content-Transfer-Encoding: 7bit
|
17705
|
+
|
17706
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
17707
|
+
|
17708
|
+
The following variables are available: @issue and @user.
|
17709
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17710
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
17711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17712
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17713
|
+
[1m[36mGotFixed::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17714
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17715
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17716
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
17717
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17718
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
17719
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
17720
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17721
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1[0m
|
17722
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17723
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17724
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
|
17725
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
17726
|
+
[1m[35m (0.0ms)[0m begin transaction
|
17727
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1[0m
|
17728
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17729
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17730
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
17731
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
17732
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
17733
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17734
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
17735
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", true], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
17736
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17737
|
+
Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
17738
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
17739
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
17740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17741
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17742
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17743
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["title", "MyString"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17744
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17745
|
+
Processing by GotFixed::IssuesController#index as HTML
|
17746
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
17747
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
|
17748
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
17749
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17750
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17751
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17752
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17753
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17754
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17756
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17757
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17758
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17759
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17760
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17761
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17762
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
17763
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1 [["issue_id", 1]]
|
17764
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17765
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
17766
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17768
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17769
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17770
|
+
Completed 200 OK in 8ms (Views: 3.3ms | ActiveRecord: 0.7ms)
|
17771
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1[0m [["id", 1]]
|
17772
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17773
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
17774
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17775
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17776
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17777
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17778
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17779
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17780
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17781
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17782
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17783
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
17784
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17785
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17786
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17787
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17788
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17789
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17790
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17791
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17792
|
+
Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 1.2ms)
|
17793
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17794
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17795
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
17796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17797
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17798
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17799
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17800
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17801
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17802
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17803
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17804
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:27:02 UTC +00:00]]
|
17805
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17806
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17807
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
17808
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17809
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17810
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17811
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17812
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17813
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17814
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17815
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
17816
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
17817
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
|
17818
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17819
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17820
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
17821
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17822
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17823
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17824
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17825
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17826
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17827
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17828
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17829
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17830
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17831
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17832
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17833
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17834
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17836
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17837
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17838
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17840
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17841
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17842
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
17843
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
17844
|
+
[1m[35m (0.0ms)[0m begin transaction
|
17845
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
17846
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17847
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17848
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17849
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
17850
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17851
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" IS NULL AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17852
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["title", "MyString"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17853
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17854
|
+
Processing by GotFixed::IssuesController#index as HTML
|
17855
|
+
Rendered /Users/Cb/perso/code/ssaunier/got_fixed/app/views/got_fixed/issues/index.html.erb within layouts/application (0.2ms)
|
17856
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
17857
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
|
17858
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
17859
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17860
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17861
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17862
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17863
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17864
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17865
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17866
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17867
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17868
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", "1"]]
|
17869
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17870
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17871
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17872
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17873
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17874
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17875
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17876
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17877
|
+
Completed 200 OK in 23ms (Views: 2.6ms | ActiveRecord: 1.5ms)
|
17878
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17879
|
+
[1m[36mGotFixed::User Load (0.0ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17880
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
17881
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17882
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17883
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17884
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17885
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17886
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17887
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17888
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17889
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17890
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17891
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17892
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
17893
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17894
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17895
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17896
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17897
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17898
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17899
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17900
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
17901
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
17902
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
|
17903
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17904
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17905
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
17906
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17908
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17909
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17910
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17911
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17912
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17913
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
|
17914
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17915
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17916
|
+
Processing by GotFixed::IssuesController#subscribe as JS
|
17917
|
+
Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
|
17918
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
17919
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
|
17920
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? AND "got_fixed_users"."id" = 1 LIMIT 1[0m [["issue_id", 1]]
|
17921
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17922
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)[0m
|
17923
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17924
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17925
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17926
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17927
|
+
Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.6ms)
|
17928
|
+
[1m[35mGotFixed::Issue Load (0.1ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
|
17929
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
17930
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
17931
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17932
|
+
Processing by GotFixed::IssuesController#github_webhook as HTML
|
17933
|
+
Parameters: {"issue"=>{"url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/labels{/name}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/comments", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/1/events", "html_url"=>"https://github.com/ssaunier/got_fixed/issues/1", "id"=>"19526518", "number"=>"1", "title"=>"Testing web hook with \"issues\" event enabled", "user"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://1.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "labels"=>[], "state"=>"closed", "assignee"=>nil, "milestone"=>nil, "comments"=>"0", "created_at"=>"2013-09-15T21:22:54Z", "updated_at"=>"2013-09-21T09:44:38Z", "closed_at"=>"2013-09-21T09:44:38Z", "pull_request"=>{"html_url"=>nil, "diff_url"=>nil, "patch_url"=>nil}, "body"=>"This issue is just a test."}, "repository"=>{"id"=>"12729467", "name"=>"got_fixed", "full_name"=>"ssaunier/got_fixed", "owner"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}, "private"=>false, "html_url"=>"https://github.com/ssaunier/got_fixed", "description"=>"Rails engine to extend your application with a dashboard of your user-reported issues (/!\\ WIP)", "fork"=>false, "url"=>"https://api.github.com/repos/ssaunier/got_fixed", "forks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/forks", "keys_url"=>"https://api.github.com/repos/ssaunier/got_fixed/keys{/key_id}", "collaborators_url"=>"https://api.github.com/repos/ssaunier/got_fixed/collaborators{/collaborator}", "teams_url"=>"https://api.github.com/repos/ssaunier/got_fixed/teams", "hooks_url"=>"https://api.github.com/repos/ssaunier/got_fixed/hooks", "issue_events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/events{/number}", "events_url"=>"https://api.github.com/repos/ssaunier/got_fixed/events", "assignees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/assignees{/user}", "branches_url"=>"https://api.github.com/repos/ssaunier/got_fixed/branches{/branch}", "tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/tags", "blobs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/blobs{/sha}", "git_tags_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/tags{/sha}", "git_refs_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/refs{/sha}", "trees_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/trees{/sha}", "statuses_url"=>"https://api.github.com/repos/ssaunier/got_fixed/statuses/{sha}", "languages_url"=>"https://api.github.com/repos/ssaunier/got_fixed/languages", "stargazers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/stargazers", "contributors_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contributors", "subscribers_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscribers", "subscription_url"=>"https://api.github.com/repos/ssaunier/got_fixed/subscription", "commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/commits{/sha}", "git_commits_url"=>"https://api.github.com/repos/ssaunier/got_fixed/git/commits{/sha}", "comments_url"=>"https://api.github.com/repos/ssaunier/got_fixed/comments{/number}", "issue_comment_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues/comments/{number}", "contents_url"=>"https://api.github.com/repos/ssaunier/got_fixed/contents/{+path}", "compare_url"=>"https://api.github.com/repos/ssaunier/got_fixed/compare/{base}...{head}", "merges_url"=>"https://api.github.com/repos/ssaunier/got_fixed/merges", "archive_url"=>"https://api.github.com/repos/ssaunier/got_fixed/{archive_format}{/ref}", "downloads_url"=>"https://api.github.com/repos/ssaunier/got_fixed/downloads", "issues_url"=>"https://api.github.com/repos/ssaunier/got_fixed/issues{/number}", "pulls_url"=>"https://api.github.com/repos/ssaunier/got_fixed/pulls{/number}", "milestones_url"=>"https://api.github.com/repos/ssaunier/got_fixed/milestones{/number}", "notifications_url"=>"https://api.github.com/repos/ssaunier/got_fixed/notifications{?since,all,participating}", "labels_url"=>"https://api.github.com/repos/ssaunier/got_fixed/labels{/name}", "created_at"=>"2013-09-10T12:55:36Z", "updated_at"=>"2013-09-21T08:26:53Z", "pushed_at"=>"2013-09-21T08:26:48Z", "git_url"=>"git://github.com/ssaunier/got_fixed.git", "ssh_url"=>"git@github.com:ssaunier/got_fixed.git", "clone_url"=>"https://github.com/ssaunier/got_fixed.git", "svn_url"=>"https://github.com/ssaunier/got_fixed", "homepage"=>"", "size"=>"436", "watchers_count"=>"1", "language"=>"Ruby", "has_issues"=>true, "has_downloads"=>true, "has_wiki"=>true, "forks_count"=>"0", "mirror_url"=>nil, "open_issues_count"=>"1", "forks"=>"0", "open_issues"=>"1", "watchers"=>"1", "master_branch"=>"master", "default_branch"=>"master"}, "sender"=>{"login"=>"ssaunier", "id"=>"414418", "avatar_url"=>"https://2.gravatar.com/avatar/223f2ffb700f5c4a7ac5f9119e02d84d?d=https%3A%2F%2Fidenticons.github.com%2F7ca0ad7acfe49cfbdf24c79e592aafd3.png", "gravatar_id"=>"223f2ffb700f5c4a7ac5f9119e02d84d", "url"=>"https://api.github.com/users/ssaunier", "html_url"=>"https://github.com/ssaunier", "followers_url"=>"https://api.github.com/users/ssaunier/followers", "following_url"=>"https://api.github.com/users/ssaunier/following{/other_user}", "gists_url"=>"https://api.github.com/users/ssaunier/gists{/gist_id}", "starred_url"=>"https://api.github.com/users/ssaunier/starred{/owner}{/repo}", "subscriptions_url"=>"https://api.github.com/users/ssaunier/subscriptions", "organizations_url"=>"https://api.github.com/users/ssaunier/orgs", "repos_url"=>"https://api.github.com/users/ssaunier/repos", "events_url"=>"https://api.github.com/users/ssaunier/events{/privacy}", "received_events_url"=>"https://api.github.com/users/ssaunier/received_events", "type"=>"User"}}
|
17934
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
17935
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17936
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
|
17937
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", true], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["title", "Testing web hook with \"issues\" event enabled"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor", "github"], ["vendor_id", "19526518"]]
|
17938
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17939
|
+
Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.8ms)
|
17940
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" = 'github') LIMIT 1[0m
|
17941
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
17942
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17943
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17945
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17947
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17948
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17949
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17951
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17952
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17953
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17954
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
17955
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17956
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17957
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17958
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17959
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
17960
|
+
[1m[36mGotFixed::Issue Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
17961
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["closed", false], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17962
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17963
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
17964
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17965
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17966
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17967
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
17968
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
17969
|
+
[1m[35m (0.1ms)[0m begin transaction
|
17970
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17971
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
17972
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor_id", "iWnj89"]]
|
17973
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17974
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17975
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
|
17976
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email1@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17977
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17978
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
17979
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
17980
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17981
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17982
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1[0m
|
17983
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email2@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17984
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17985
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17986
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)[0m
|
17987
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17988
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17989
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
|
17990
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email3@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17991
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
17992
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
17993
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
|
17994
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17995
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
17996
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1[0m
|
17997
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email4@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
17998
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
17999
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18000
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)[0m
|
18001
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
18002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18003
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
|
18004
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email5@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18005
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18007
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
|
18008
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18009
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18010
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1[0m
|
18011
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email6@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18012
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18013
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18014
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)[0m
|
18015
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18016
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18017
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
|
18018
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email7@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18019
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18020
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18021
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
|
18022
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18023
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18024
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1[0m
|
18025
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email8@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18026
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18027
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18028
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)[0m
|
18029
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18030
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18031
|
+
[1m[35mGotFixed::User Exists (0.0ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
|
18032
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email9@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18033
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18034
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18035
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
|
18036
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18037
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18038
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1[0m
|
18039
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email10@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18040
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18041
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18042
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)[0m
|
18043
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18045
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
18046
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18047
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18048
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
18049
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18050
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ?[0m [["issue_id", 1]]
|
18051
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
|
18052
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18053
|
+
|
18054
|
+
Sent mail to email1@factory.com (11.1ms)
|
18055
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18056
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18057
|
+
To: email1@factory.com
|
18058
|
+
Message-ID: <52513dbabcac6_6e9e3fdd0e0546d45831c@Cb.local.mail>
|
18059
|
+
Subject: [Fixed] A very bad issue...
|
18060
|
+
Mime-Version: 1.0
|
18061
|
+
Content-Type: text/plain;
|
18062
|
+
charset=UTF-8
|
18063
|
+
Content-Transfer-Encoding: 7bit
|
18064
|
+
|
18065
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18066
|
+
|
18067
|
+
The following variables are available: @issue and @user.
|
18068
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 2]]
|
18069
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18070
|
+
|
18071
|
+
Sent mail to email2@factory.com (8.3ms)
|
18072
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18073
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18074
|
+
To: email2@factory.com
|
18075
|
+
Message-ID: <52513dbac1888_6e9e3fdd0e0546d4584d0@Cb.local.mail>
|
18076
|
+
Subject: [Fixed] A very bad issue...
|
18077
|
+
Mime-Version: 1.0
|
18078
|
+
Content-Type: text/plain;
|
18079
|
+
charset=UTF-8
|
18080
|
+
Content-Transfer-Encoding: 7bit
|
18081
|
+
|
18082
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18083
|
+
|
18084
|
+
The following variables are available: @issue and @user.
|
18085
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 3]]
|
18086
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18087
|
+
|
18088
|
+
Sent mail to email3@factory.com (8.3ms)
|
18089
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18090
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18091
|
+
To: email3@factory.com
|
18092
|
+
Message-ID: <52513dbac61b6_6e9e3fdd0e0546d4585f6@Cb.local.mail>
|
18093
|
+
Subject: [Fixed] A very bad issue...
|
18094
|
+
Mime-Version: 1.0
|
18095
|
+
Content-Type: text/plain;
|
18096
|
+
charset=UTF-8
|
18097
|
+
Content-Transfer-Encoding: 7bit
|
18098
|
+
|
18099
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18100
|
+
|
18101
|
+
The following variables are available: @issue and @user.
|
18102
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 4]]
|
18103
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18104
|
+
|
18105
|
+
Sent mail to email4@factory.com (8.3ms)
|
18106
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18107
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18108
|
+
To: email4@factory.com
|
18109
|
+
Message-ID: <52513dbaca9bf_6e9e3fdd0e0546d458699@Cb.local.mail>
|
18110
|
+
Subject: [Fixed] A very bad issue...
|
18111
|
+
Mime-Version: 1.0
|
18112
|
+
Content-Type: text/plain;
|
18113
|
+
charset=UTF-8
|
18114
|
+
Content-Transfer-Encoding: 7bit
|
18115
|
+
|
18116
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18117
|
+
|
18118
|
+
The following variables are available: @issue and @user.
|
18119
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 5]]
|
18120
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18121
|
+
|
18122
|
+
Sent mail to email5@factory.com (8.0ms)
|
18123
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18124
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18125
|
+
To: email5@factory.com
|
18126
|
+
Message-ID: <52513dbacf3a3_6e9e3fdd0e0546d458787@Cb.local.mail>
|
18127
|
+
Subject: [Fixed] A very bad issue...
|
18128
|
+
Mime-Version: 1.0
|
18129
|
+
Content-Type: text/plain;
|
18130
|
+
charset=UTF-8
|
18131
|
+
Content-Transfer-Encoding: 7bit
|
18132
|
+
|
18133
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18134
|
+
|
18135
|
+
The following variables are available: @issue and @user.
|
18136
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 6]]
|
18137
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18138
|
+
|
18139
|
+
Sent mail to email6@factory.com (8.5ms)
|
18140
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18141
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18142
|
+
To: email6@factory.com
|
18143
|
+
Message-ID: <52513dbad3dd8_6e9e3fdd0e0546d45882a@Cb.local.mail>
|
18144
|
+
Subject: [Fixed] A very bad issue...
|
18145
|
+
Mime-Version: 1.0
|
18146
|
+
Content-Type: text/plain;
|
18147
|
+
charset=UTF-8
|
18148
|
+
Content-Transfer-Encoding: 7bit
|
18149
|
+
|
18150
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18151
|
+
|
18152
|
+
The following variables are available: @issue and @user.
|
18153
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 7]]
|
18154
|
+
[1m[36mGotFixed::Issue Load (0.1ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18155
|
+
|
18156
|
+
Sent mail to email7@factory.com (8.1ms)
|
18157
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18158
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18159
|
+
To: email7@factory.com
|
18160
|
+
Message-ID: <52513dbae1f22_6e9e3fdd0e0546d4589fe@Cb.local.mail>
|
18161
|
+
Subject: [Fixed] A very bad issue...
|
18162
|
+
Mime-Version: 1.0
|
18163
|
+
Content-Type: text/plain;
|
18164
|
+
charset=UTF-8
|
18165
|
+
Content-Transfer-Encoding: 7bit
|
18166
|
+
|
18167
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18168
|
+
|
18169
|
+
The following variables are available: @issue and @user.
|
18170
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 8]]
|
18171
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18172
|
+
|
18173
|
+
Sent mail to email8@factory.com (8.1ms)
|
18174
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18175
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18176
|
+
To: email8@factory.com
|
18177
|
+
Message-ID: <52513dbae6672_6e9e3fdd0e0546d459065@Cb.local.mail>
|
18178
|
+
Subject: [Fixed] A very bad issue...
|
18179
|
+
Mime-Version: 1.0
|
18180
|
+
Content-Type: text/plain;
|
18181
|
+
charset=UTF-8
|
18182
|
+
Content-Transfer-Encoding: 7bit
|
18183
|
+
|
18184
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18185
|
+
|
18186
|
+
The following variables are available: @issue and @user.
|
18187
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 9]]
|
18188
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18189
|
+
|
18190
|
+
Sent mail to email9@factory.com (8.5ms)
|
18191
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18192
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18193
|
+
To: email9@factory.com
|
18194
|
+
Message-ID: <52513dbaeaee7_6e9e3fdd0e0546d4591c3@Cb.local.mail>
|
18195
|
+
Subject: [Fixed] A very bad issue...
|
18196
|
+
Mime-Version: 1.0
|
18197
|
+
Content-Type: text/plain;
|
18198
|
+
charset=UTF-8
|
18199
|
+
Content-Transfer-Encoding: 7bit
|
18200
|
+
|
18201
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18202
|
+
|
18203
|
+
The following variables are available: @issue and @user.
|
18204
|
+
[1m[35mGotFixed::User Load (0.1ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 10]]
|
18205
|
+
[1m[36mGotFixed::Issue Load (0.0ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1[0m [["id", 1]]
|
18206
|
+
|
18207
|
+
Sent mail to email10@factory.com (8.2ms)
|
18208
|
+
Date: Sun, 06 Oct 2013 12:38:50 +0200
|
18209
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18210
|
+
To: email10@factory.com
|
18211
|
+
Message-ID: <52513dbaef902_6e9e3fdd0e0546d459296@Cb.local.mail>
|
18212
|
+
Subject: [Fixed] A very bad issue...
|
18213
|
+
Mime-Version: 1.0
|
18214
|
+
Content-Type: text/plain;
|
18215
|
+
charset=UTF-8
|
18216
|
+
Content-Transfer-Encoding: 7bit
|
18217
|
+
|
18218
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18219
|
+
|
18220
|
+
The following variables are available: @issue and @user.
|
18221
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
18222
|
+
[1m[36m (2.2ms)[0m [1mrollback transaction[0m
|
18223
|
+
[1m[35m (0.2ms)[0m begin transaction
|
18224
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
18225
|
+
[1m[35mGotFixed::Issue Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
18226
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "got_fixed_issues" ("closed", "created_at", "number", "title", "updated_at", "vendor_id") VALUES (?, ?, ?, ?, ?, ?)[0m [["closed", false], ["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["number", 7], ["title", "A very bad issue..."], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["vendor_id", "iWnj89"]]
|
18227
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
18228
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
18229
|
+
[1m[35mGotFixed::User Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
|
18230
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00], ["email", "email11@factory.com"], ["updated_at", Sun, 06 Oct 2013 10:38:50 UTC +00:00]]
|
18231
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
18232
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18233
|
+
[1m[35m (0.1ms)[0m INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
|
18234
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18236
|
+
[1m[36mGotFixed::Issue Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1[0m
|
18237
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
18238
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
18239
|
+
[1m[35mGotFixed::Issue Exists (0.1ms)[0m SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."id" != 1 AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
|
18240
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1[0m [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:38:51 UTC +00:00]]
|
18241
|
+
[1m[35mGotFixed::User Load (0.0ms)[0m SELECT "got_fixed_users".* FROM "got_fixed_users" INNER JOIN "got_fixed_issues_users" ON "got_fixed_users"."id" = "got_fixed_issues_users"."user_id" WHERE "got_fixed_issues_users"."issue_id" = ? [["issue_id", 1]]
|
18242
|
+
[1m[36mGotFixed::User Load (0.1ms)[0m [1mSELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1[0m [["id", 1]]
|
18243
|
+
[1m[35mGotFixed::Issue Load (0.0ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", 1]]
|
18244
|
+
|
18245
|
+
Sent mail to email11@factory.com (8.2ms)
|
18246
|
+
Date: Sun, 06 Oct 2013 12:38:51 +0200
|
18247
|
+
From: GotFixed Notifications <noreply@saunier.me>
|
18248
|
+
To: email11@factory.com
|
18249
|
+
Message-ID: <52513dbb40e9_6e9e3fdd0e0546d4593d6@Cb.local.mail>
|
18250
|
+
Subject: [Fixed] A very bad issue...
|
18251
|
+
Mime-Version: 1.0
|
18252
|
+
Content-Type: text/plain;
|
18253
|
+
charset=UTF-8
|
18254
|
+
Content-Transfer-Encoding: 7bit
|
18255
|
+
|
18256
|
+
Please create app/views/got_fixed/user_mailer/issue_got_fixed_email.{text,html}.erb in your app.
|
18257
|
+
|
18258
|
+
The following variables are available: @issue and @user.
|
18259
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18260
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
18261
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
18262
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18263
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18264
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18265
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18266
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18267
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18268
|
+
[1m[35mGotFixed::User Exists (0.2ms)[0m SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
|
18269
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
18270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18271
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1[0m
|
18272
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18273
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18274
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18275
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
18276
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", Sun, 06 Oct 2013 10:38:51 UTC +00:00], ["email", "foo@bar.com"], ["updated_at", Sun, 06 Oct 2013 10:38:51 UTC +00:00]]
|
18277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
18278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
18279
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1[0m
|
18280
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
18281
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
18282
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18283
|
+
[1m[36mGotFixed::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1[0m
|
18284
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18285
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18286
|
+
[1m[35mGotFixed::Issue Load (0.2ms)[0m SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '3910487' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1
|
18287
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
18288
|
+
[1m[35m (0.0ms)[0m begin transaction
|
18289
|
+
[1m[36mGotFixed::Issue Load (0.2ms)[0m [1mSELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."vendor_id" = '9255225' AND "got_fixed_issues"."vendor" = 'github' ORDER BY updated_at DESC LIMIT 1[0m
|
18290
|
+
[1m[35m (0.1ms)[0m rollback transaction
|