got_fixed 0.0.6 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ada062b659447a3ff52690bc8e5219a3f921d3f3
4
- data.tar.gz: 8c1e06e93d61970d3065bbd99cdd25557096296c
3
+ metadata.gz: a7cfcd586b0b6b11b166d53360848d5e6db97688
4
+ data.tar.gz: 8b6723d02dd53eb11ffe87890b11b56bf21abf34
5
5
  SHA512:
6
- metadata.gz: 20ea5d9ad7a6327e0529b948977e21efdb4695810f31203c538aba94ead50cb899f683e1464f7e7d285e90aefe724835a2c0deedee24d7cc954f5136b68799c7
7
- data.tar.gz: 0a4441b0e004f208f72a6f43e47be3e23712b37653c577db2bd0708cacd720082c8c74182c525284ed6bbcf3947237b3ab4f7ebc206d8c2f27365ffdbbd1f56a
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
- # TODO(ssaunier): async send (SMTP is slow !!)
21
- mail = UserMailer.issue_got_fixed_email(self, issue)
22
- mail.deliver
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
@@ -21,3 +21,4 @@ end
21
21
 
22
22
  GotFixed.config = symbolize(config)
23
23
  GotFixed.config[:github] ||= []
24
+ GotFixed.config[:resque] ||= {}
@@ -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
@@ -1,3 +1,3 @@
1
1
  module GotFixed
2
- VERSION = "0.0.6"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -1,3 +1,6 @@
1
+ resque:
2
+ queue: mail
3
+
1
4
  user_mailer:
2
5
  from: '"GotFixed Notifications" <noreply@saunier.me>'
3
6
  subject_template: "[Fixed] %{title}"
@@ -3279,3 +3279,199 @@ Migrating to UniqueUserEmails (20130929180909)
3279
3279
   (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3280
3280
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3281
3281
   (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3282
+  (1.4ms) CREATE 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)) 
3283
+  (1.2ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3284
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3285
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3286
+  (1.1ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3287
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3288
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3289
+  (0.1ms) SELECT version FROM "schema_migrations"
3290
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3291
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3292
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3293
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3294
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3295
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3296
+  (2.2ms) CREATE 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)) 
3297
+  (1.3ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3298
+  (1.0ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3299
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3300
+  (1.1ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3301
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3302
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3303
+  (0.1ms) SELECT version FROM "schema_migrations"
3304
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3305
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3306
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3307
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3308
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3309
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3310
+  (3.1ms) CREATE 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)) 
3311
+  (1.4ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3312
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3313
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3314
+  (1.1ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3315
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3316
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3317
+  (0.1ms) SELECT version FROM "schema_migrations"
3318
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3319
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3320
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3321
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3322
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3323
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3324
+  (2.2ms) CREATE 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)) 
3325
+  (1.2ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3326
+  (1.0ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3327
+  (1.1ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3328
+  (1.1ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3329
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3330
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3331
+  (0.1ms) SELECT version FROM "schema_migrations"
3332
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3333
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3334
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3335
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3336
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3337
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3338
+  (2.9ms) CREATE 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)) 
3339
+  (1.2ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3340
+  (1.1ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3341
+  (1.1ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3342
+  (1.0ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3343
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3344
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3345
+  (0.1ms) SELECT version FROM "schema_migrations"
3346
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3347
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3348
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3349
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3350
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3351
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3352
+  (2.4ms) CREATE 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)) 
3353
+  (1.3ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3354
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3355
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3356
+  (1.1ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3357
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3358
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3359
+  (0.2ms) SELECT version FROM "schema_migrations"
3360
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3361
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3362
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3363
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3364
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3365
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3366
+  (2.9ms) CREATE 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)) 
3367
+  (1.3ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3368
+  (1.1ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3369
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3370
+  (1.0ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3371
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3372
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3373
+  (0.1ms) SELECT version FROM "schema_migrations"
3374
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3375
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3376
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3377
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3378
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3379
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3380
+  (2.4ms) CREATE 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)) 
3381
+  (1.3ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3382
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3383
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3384
+  (1.0ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3385
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3386
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3387
+  (0.1ms) SELECT version FROM "schema_migrations"
3388
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3389
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3390
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3391
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3392
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3393
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3394
+  (1.4ms) CREATE 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)) 
3395
+  (1.3ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3396
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3397
+  (1.2ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3398
+  (0.9ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3399
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3400
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3401
+  (0.1ms) SELECT version FROM "schema_migrations"
3402
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3403
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3404
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3405
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3406
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3407
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3408
+  (2.8ms) CREATE 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)) 
3409
+  (1.3ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3410
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3411
+  (1.0ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3412
+  (1.0ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3413
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3414
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3415
+  (0.1ms) SELECT version FROM "schema_migrations"
3416
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3417
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3418
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3419
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3420
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3421
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3422
+  (1.3ms) CREATE 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)) 
3423
+  (1.2ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3424
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3425
+  (1.1ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3426
+  (1.0ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3427
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3428
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3429
+  (0.1ms) SELECT version FROM "schema_migrations"
3430
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3431
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3432
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3433
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3434
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3435
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3436
+  (2.0ms) CREATE 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)) 
3437
+  (1.4ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3438
+  (1.4ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3439
+  (1.2ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3440
+  (1.3ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3441
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3442
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3443
+  (0.1ms) SELECT version FROM "schema_migrations"
3444
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3445
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3446
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3447
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3448
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3449
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3450
+  (1.3ms) CREATE 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)) 
3451
+  (1.6ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3452
+  (1.2ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3453
+  (1.1ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3454
+  (1.2ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3455
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3456
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3457
+  (0.1ms) SELECT version FROM "schema_migrations"
3458
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3459
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3460
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3461
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3462
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3463
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
3464
+  (1.3ms) CREATE 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)) 
3465
+  (1.1ms) CREATE TABLE "got_fixed_issues_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer)
3466
+  (1.1ms) CREATE TABLE "got_fixed_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
3467
+  (1.1ms) CREATE UNIQUE INDEX "index_got_fixed_users_on_email" ON "got_fixed_users" ("email")
3468
+  (1.0ms) CREATE TABLE "users_issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "issue_id" integer) 
3469
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3470
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3471
+  (0.1ms) SELECT version FROM "schema_migrations"
3472
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130929180909')
3473
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130912175851')
3474
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130913195152')
3475
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130914085003')
3476
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924121816')
3477
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130924123004')
@@ -15526,3 +15526,2765 @@ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
15526
15526
  GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15527
15527
  GotFixed::User Load (0.0ms) 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]]
15528
15528
   (0.7ms) rollback transaction
15529
+  (0.3ms) begin transaction
15530
+  (0.1ms) SAVEPOINT active_record_1
15531
+ GotFixed::Issue Exists (0.1ms) 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
15532
+ SQL (2.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
15538
+  (1.1ms) rollback transaction
15539
+  (0.1ms) 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
+ GotFixed::Issue Load (0.3ms) 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
15543
+  (0.1ms) SAVEPOINT active_record_1
15544
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
15545
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15547
+ Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 1.1ms)
15548
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.6ms) rollback transaction
15550
+  (0.1ms) begin transaction
15551
+  (0.1ms) SAVEPOINT active_record_1
15552
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.4ms) 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"]]
15554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15555
+ GotFixed::User Load (0.7ms) 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]]
15556
+ Processing by GotFixed::IssuesController#subscribe as JS
15557
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
15558
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15559
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
15560
+  (0.0ms) SAVEPOINT active_record_1
15561
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15562
+ SQL (0.5ms) 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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15565
+  (0.0ms) SAVEPOINT active_record_1
15566
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15568
+ Completed 200 OK in 21ms (Views: 3.1ms | ActiveRecord: 1.2ms)
15569
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15570
+ GotFixed::User Load (0.0ms) 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]]
15571
+  (0.6ms) rollback transaction
15572
+  (0.1ms) begin transaction
15573
+  (0.1ms) SAVEPOINT active_record_1
15574
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15575
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15577
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
15579
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15580
+ SQL (0.3ms) 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]]
15581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15582
+ Processing by GotFixed::IssuesController#subscribe as JS
15583
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
15584
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15585
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
15586
+ GotFixed::User Exists (0.1ms) 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]]
15587
+  (0.0ms) SAVEPOINT active_record_1
15588
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15590
+  (0.0ms) SAVEPOINT active_record_1
15591
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15593
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.6ms)
15594
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15595
+ GotFixed::User Load (0.0ms) 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]]
15596
+  (0.7ms) rollback transaction
15597
+  (0.1ms) begin transaction
15598
+  (0.1ms) SAVEPOINT active_record_1
15599
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15600
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15602
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
15604
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15605
+ SQL (0.3ms) 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]]
15606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15607
+  (0.0ms) SAVEPOINT active_record_1
15608
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15610
+  (0.0ms) SAVEPOINT active_record_1
15611
+ GotFixed::Issue Exists (0.1ms) 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
15612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15613
+ Processing by GotFixed::IssuesController#subscribe as JS
15614
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
15615
+ GotFixed::User Load (0.2ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15616
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
15617
+ GotFixed::User Exists (0.0ms) 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]]
15618
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.3ms)
15619
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15620
+ GotFixed::User Load (0.0ms) 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]]
15621
+  (0.7ms) rollback transaction
15622
+  (0.1ms) begin transaction
15623
+  (0.1ms) rollback transaction
15624
+  (0.1ms) begin transaction
15625
+  (0.1ms) rollback transaction
15626
+  (0.0ms) begin transaction
15627
+  (0.0ms) rollback transaction
15628
+  (0.1ms) begin transaction
15629
+  (0.1ms) rollback transaction
15630
+  (0.1ms) begin transaction
15631
+  (0.1ms) rollback transaction
15632
+  (0.0ms) begin transaction
15633
+  (0.0ms) rollback transaction
15634
+  (0.1ms) begin transaction
15635
+  (0.0ms) rollback transaction
15636
+  (0.0ms) begin transaction
15637
+  (0.0ms) rollback transaction
15638
+  (0.1ms) begin transaction
15639
+  (0.1ms) rollback transaction
15640
+  (0.1ms) begin transaction
15641
+  (0.1ms) rollback transaction
15642
+  (0.0ms) begin transaction
15643
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
15644
+  (0.1ms) rollback transaction
15645
+  (0.1ms) begin transaction
15646
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
15647
+  (0.1ms) rollback transaction
15648
+  (0.1ms) begin transaction
15649
+  (0.0ms) SAVEPOINT active_record_1
15650
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15651
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15653
+  (0.0ms) SAVEPOINT active_record_1
15654
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15655
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15656
+  (0.6ms) rollback transaction
15657
+  (0.1ms) begin transaction
15658
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
15659
+  (0.1ms) rollback transaction
15660
+  (0.1ms) begin transaction
15661
+ GotFixed::Issue Load (0.3ms) 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
+  (0.1ms) rollback transaction
15663
+  (0.1ms) begin transaction
15664
+ GotFixed::Issue Load (0.2ms) 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
15665
+  (0.1ms) rollback transaction
15666
+  (0.1ms) begin transaction
15667
+  (0.1ms) SAVEPOINT active_record_1
15668
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15669
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15671
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
15673
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
15675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15676
+  (0.7ms) rollback transaction
15677
+  (0.1ms) begin transaction
15678
+  (0.1ms) SAVEPOINT active_record_1
15679
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
15681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15682
+  (0.1ms) SAVEPOINT active_record_1
15683
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
15684
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15686
+  (0.0ms) SAVEPOINT active_record_1
15687
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15689
+  (0.0ms) SAVEPOINT active_record_1
15690
+ GotFixed::Issue Exists (0.1ms) 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
15691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15692
+  (0.0ms) SAVEPOINT active_record_1
15693
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
15695
+ GotFixed::User Load (0.0ms) 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
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15697
+  (0.6ms) rollback transaction
15698
+  (0.1ms) begin transaction
15699
+  (0.0ms) SAVEPOINT active_record_1
15700
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15701
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15703
+  (0.1ms) SAVEPOINT active_record_1
15704
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
15705
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15707
+  (0.0ms) SAVEPOINT active_record_1
15708
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15710
+  (0.1ms) SAVEPOINT active_record_1
15711
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
15712
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15714
+  (0.0ms) SAVEPOINT active_record_1
15715
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
15716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15717
+  (0.1ms) SAVEPOINT active_record_1
15718
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
15719
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15721
+  (0.0ms) SAVEPOINT active_record_1
15722
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
15723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15724
+  (0.0ms) SAVEPOINT active_record_1
15725
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
15726
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15728
+  (0.0ms) SAVEPOINT active_record_1
15729
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
15730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15731
+  (0.0ms) SAVEPOINT active_record_1
15732
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
15733
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15735
+  (0.0ms) SAVEPOINT active_record_1
15736
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
15737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15738
+  (0.0ms) SAVEPOINT active_record_1
15739
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
15740
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15742
+  (0.0ms) SAVEPOINT active_record_1
15743
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
15744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15745
+  (0.1ms) SAVEPOINT active_record_1
15746
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
15747
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15749
+  (0.0ms) SAVEPOINT active_record_1
15750
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
15751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15752
+  (0.0ms) SAVEPOINT active_record_1
15753
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
15754
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15756
+  (0.0ms) SAVEPOINT active_record_1
15757
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
15758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15759
+  (0.0ms) SAVEPOINT active_record_1
15760
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
15761
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15763
+  (0.0ms) SAVEPOINT active_record_1
15764
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
15765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15766
+  (0.0ms) SAVEPOINT active_record_1
15767
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
15768
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15770
+  (0.0ms) SAVEPOINT active_record_1
15771
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
15772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15773
+  (0.0ms) SAVEPOINT active_record_1
15774
+ GotFixed::Issue Exists (0.1ms) 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
15775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15776
+  (0.0ms) SAVEPOINT active_record_1
15777
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:18 UTC +00:00]]
15779
+ GotFixed::User Load (0.1ms) 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
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15781
+  (0.9ms) rollback transaction
15782
+  (0.1ms) begin transaction
15783
+  (0.1ms) rollback transaction
15784
+  (0.3ms) begin transaction
15785
+  (0.1ms) SAVEPOINT active_record_1
15786
+ GotFixed::Issue Exists (0.1ms) 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
15787
+ SQL (1.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
15793
+  (1.8ms) rollback transaction
15794
+  (0.1ms) 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
+ GotFixed::Issue Load (0.3ms) 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
15798
+  (0.1ms) SAVEPOINT active_record_1
15799
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
15800
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15802
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.7ms)
15803
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.9ms) rollback transaction
15805
+  (0.1ms) begin transaction
15806
+  (0.1ms) SAVEPOINT active_record_1
15807
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.5ms) 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"]]
15809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15810
+ GotFixed::User Load (0.2ms) 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]]
15811
+ Processing by GotFixed::IssuesController#subscribe as JS
15812
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
15813
+ GotFixed::User Load (0.2ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15814
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
15815
+  (0.0ms) SAVEPOINT active_record_1
15816
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15817
+ SQL (0.4ms) 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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15820
+  (0.0ms) SAVEPOINT active_record_1
15821
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15823
+ Completed 200 OK in 26ms (Views: 4.9ms | ActiveRecord: 1.2ms)
15824
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15825
+ GotFixed::User Load (0.1ms) 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]]
15826
+  (0.8ms) rollback transaction
15827
+  (0.1ms) begin transaction
15828
+  (0.1ms) SAVEPOINT active_record_1
15829
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15830
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15832
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
15834
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15835
+ SQL (0.3ms) 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]]
15836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15837
+ Processing by GotFixed::IssuesController#subscribe as JS
15838
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
15839
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15840
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
15841
+ GotFixed::User Exists (0.1ms) 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]]
15842
+  (0.0ms) SAVEPOINT active_record_1
15843
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15844
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15845
+  (0.0ms) SAVEPOINT active_record_1
15846
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15848
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.6ms)
15849
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15850
+ GotFixed::User Load (0.0ms) 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]]
15851
+  (0.7ms) rollback transaction
15852
+  (0.1ms) begin transaction
15853
+  (0.1ms) SAVEPOINT active_record_1
15854
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15855
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15857
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
15859
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15860
+ SQL (0.3ms) 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]]
15861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15862
+  (0.0ms) SAVEPOINT active_record_1
15863
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15865
+  (0.0ms) SAVEPOINT active_record_1
15866
+ GotFixed::Issue Exists (0.1ms) 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
15867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15868
+ Processing by GotFixed::IssuesController#subscribe as JS
15869
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
15870
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
15871
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
15872
+ GotFixed::User Exists (0.0ms) 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]]
15873
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
15874
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
15875
+ GotFixed::User Load (0.1ms) 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]]
15876
+  (1.0ms) rollback transaction
15877
+  (0.1ms) begin transaction
15878
+  (0.1ms) rollback transaction
15879
+  (0.1ms) begin transaction
15880
+  (0.0ms) rollback transaction
15881
+  (0.0ms) begin transaction
15882
+  (0.0ms) rollback transaction
15883
+  (0.1ms) begin transaction
15884
+  (0.1ms) rollback transaction
15885
+  (0.1ms) begin transaction
15886
+  (0.0ms) rollback transaction
15887
+  (0.0ms) begin transaction
15888
+  (0.0ms) rollback transaction
15889
+  (0.0ms) begin transaction
15890
+  (0.0ms) rollback transaction
15891
+  (0.0ms) begin transaction
15892
+  (0.1ms) rollback transaction
15893
+  (0.0ms) begin transaction
15894
+  (0.0ms) SAVEPOINT active_record_1
15895
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15896
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15898
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
15900
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
15902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15903
+  (0.6ms) rollback transaction
15904
+  (0.1ms) begin transaction
15905
+  (0.0ms) SAVEPOINT active_record_1
15906
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
15908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15909
+  (0.0ms) SAVEPOINT active_record_1
15910
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
15911
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15913
+  (0.0ms) SAVEPOINT active_record_1
15914
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15916
+  (0.0ms) SAVEPOINT active_record_1
15917
+ GotFixed::Issue Exists (0.1ms) 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
15918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15919
+  (0.0ms) SAVEPOINT active_record_1
15920
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
15922
+ GotFixed::User Load (0.0ms) 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
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15924
+  (0.9ms) rollback transaction
15925
+  (0.1ms) begin transaction
15926
+  (0.0ms) SAVEPOINT active_record_1
15927
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
15928
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15930
+  (0.0ms) SAVEPOINT active_record_1
15931
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
15932
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15934
+  (0.0ms) SAVEPOINT active_record_1
15935
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
15936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15937
+  (0.0ms) SAVEPOINT active_record_1
15938
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
15939
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15941
+  (0.0ms) SAVEPOINT active_record_1
15942
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
15943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15944
+  (0.1ms) SAVEPOINT active_record_1
15945
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
15946
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15948
+  (0.0ms) SAVEPOINT active_record_1
15949
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
15950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15951
+  (0.0ms) SAVEPOINT active_record_1
15952
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
15953
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15955
+  (0.0ms) SAVEPOINT active_record_1
15956
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
15957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15958
+  (0.1ms) SAVEPOINT active_record_1
15959
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
15960
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15962
+  (0.0ms) SAVEPOINT active_record_1
15963
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
15964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15965
+  (0.1ms) SAVEPOINT active_record_1
15966
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
15967
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15969
+  (0.0ms) SAVEPOINT active_record_1
15970
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
15971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15972
+  (0.0ms) SAVEPOINT active_record_1
15973
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
15974
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15976
+  (0.0ms) SAVEPOINT active_record_1
15977
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
15978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15979
+  (0.0ms) SAVEPOINT active_record_1
15980
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
15981
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15983
+  (0.0ms) SAVEPOINT active_record_1
15984
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
15985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15986
+  (0.0ms) SAVEPOINT active_record_1
15987
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
15988
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15990
+  (0.0ms) SAVEPOINT active_record_1
15991
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
15992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15993
+  (0.0ms) SAVEPOINT active_record_1
15994
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
15995
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15997
+  (0.0ms) SAVEPOINT active_record_1
15998
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
15999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16000
+  (0.0ms) SAVEPOINT active_record_1
16001
+ GotFixed::Issue Exists (0.1ms) 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
16002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16003
+  (0.0ms) SAVEPOINT active_record_1
16004
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Thu, 03 Oct 2013 09:27:44 UTC +00:00]]
16006
+ GotFixed::User Load (0.1ms) 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
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16008
+  (1.0ms) rollback transaction
16009
+  (0.1ms) begin transaction
16010
+  (0.1ms) rollback transaction
16011
+  (0.1ms) begin transaction
16012
+  (0.1ms) rollback transaction
16013
+  (0.1ms) begin transaction
16014
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) rollback transaction
16016
+  (0.1ms) begin transaction
16017
+ GotFixed::Issue Load (0.2ms) 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
16018
+  (0.1ms) rollback transaction
16019
+  (0.1ms) begin transaction
16020
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
16021
+  (0.1ms) rollback transaction
16022
+  (0.0ms) begin transaction
16023
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
16024
+  (0.1ms) rollback transaction
16025
+  (0.1ms) begin transaction
16026
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
16027
+  (0.1ms) rollback transaction
16028
+  (0.1ms) begin transaction
16029
+  (0.0ms) SAVEPOINT active_record_1
16030
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16031
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16033
+  (0.0ms) SAVEPOINT active_record_1
16034
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16035
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
16036
+  (0.6ms) rollback transaction
16037
+  (0.1ms) begin transaction
16038
+  (0.1ms) rollback transaction
16039
+  (0.3ms) begin transaction
16040
+  (0.1ms) rollback transaction
16041
+  (0.1ms) begin transaction
16042
+  (0.1ms) rollback transaction
16043
+  (0.1ms) begin transaction
16044
+  (0.1ms) SAVEPOINT active_record_1
16045
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16046
+ SQL (3.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16048
+  (0.1ms) SAVEPOINT active_record_1
16049
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
16050
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16052
+  (0.0ms) SAVEPOINT active_record_1
16053
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16055
+  (0.0ms) SAVEPOINT active_record_1
16056
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
16057
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16059
+  (0.0ms) SAVEPOINT active_record_1
16060
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
16061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16062
+  (0.0ms) SAVEPOINT active_record_1
16063
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
16064
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16066
+  (0.0ms) SAVEPOINT active_record_1
16067
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
16068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16069
+  (0.0ms) SAVEPOINT active_record_1
16070
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
16071
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16073
+  (0.0ms) SAVEPOINT active_record_1
16074
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
16075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16076
+  (0.0ms) SAVEPOINT active_record_1
16077
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
16078
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16080
+  (0.0ms) SAVEPOINT active_record_1
16081
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
16082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16083
+  (0.0ms) SAVEPOINT active_record_1
16084
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
16085
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16087
+  (0.0ms) SAVEPOINT active_record_1
16088
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
16089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16090
+  (0.0ms) SAVEPOINT active_record_1
16091
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
16092
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16094
+  (0.0ms) SAVEPOINT active_record_1
16095
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
16096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16097
+  (0.0ms) SAVEPOINT active_record_1
16098
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
16099
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16101
+  (0.0ms) SAVEPOINT active_record_1
16102
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
16103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16104
+  (0.0ms) SAVEPOINT active_record_1
16105
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
16106
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16108
+  (0.0ms) SAVEPOINT active_record_1
16109
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
16110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16111
+  (0.0ms) SAVEPOINT active_record_1
16112
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
16113
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16115
+  (0.0ms) SAVEPOINT active_record_1
16116
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
16117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16118
+  (0.0ms) SAVEPOINT active_record_1
16119
+ GotFixed::Issue Exists (0.1ms) 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
16120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16121
+  (0.1ms) SAVEPOINT active_record_1
16122
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.2ms) 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]]
16124
+ GotFixed::User Load (0.2ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
16126
+ GotFixed::Issue Load (0.1ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 2]]
16144
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 3]]
16162
+ GotFixed::Issue Load (0.1ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 4]]
16180
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 5]]
16198
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 6]]
16216
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 7]]
16234
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 8]]
16252
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 9]]
16270
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 10]]
16288
+ GotFixed::Issue Load (0.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16306
+  (2.1ms) rollback transaction
16307
+  (0.1ms) begin transaction
16308
+  (0.1ms) SAVEPOINT active_record_1
16309
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16310
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16312
+  (0.0ms) SAVEPOINT active_record_1
16313
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
16314
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16316
+  (0.0ms) SAVEPOINT active_record_1
16317
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16319
+  (0.0ms) SAVEPOINT active_record_1
16320
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16322
+  (0.0ms) SAVEPOINT active_record_1
16323
+ GotFixed::Issue Exists (0.1ms) 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
16324
+ SQL (0.1ms) 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
+ GotFixed::User Load (0.0ms) 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]]
16326
+ GotFixed::User Load (0.0ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
16327
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16345
+  (1.0ms) rollback transaction
16346
+  (0.1ms) begin transaction
16347
+  (0.0ms) SAVEPOINT active_record_1
16348
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
16350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16351
+ GotFixed::User Load (0.1ms) 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]]
16352
+  (0.1ms) SAVEPOINT active_record_1
16353
+ GotFixed::Issue Exists (0.1ms) 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
16354
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16356
+  (0.6ms) rollback transaction
16357
+  (0.1ms) begin transaction
16358
+  (0.0ms) rollback transaction
16359
+  (0.0ms) begin transaction
16360
+  (0.1ms) rollback transaction
16361
+  (0.1ms) begin transaction
16362
+  (0.0ms) rollback transaction
16363
+  (0.1ms) begin transaction
16364
+  (0.1ms) rollback transaction
16365
+  (0.1ms) begin transaction
16366
+  (0.0ms) rollback transaction
16367
+  (0.0ms) begin transaction
16368
+  (0.1ms) rollback transaction
16369
+  (0.0ms) begin transaction
16370
+  (0.1ms) rollback transaction
16371
+  (0.0ms) begin transaction
16372
+  (0.0ms) rollback transaction
16373
+  (0.1ms) begin transaction
16374
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
16375
+  (0.0ms) rollback transaction
16376
+  (0.1ms) begin transaction
16377
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
16378
+  (0.1ms) rollback transaction
16379
+  (0.1ms) begin transaction
16380
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
16381
+  (0.1ms) rollback transaction
16382
+  (0.1ms) begin transaction
16383
+  (0.1ms) SAVEPOINT active_record_1
16384
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16385
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16387
+  (0.0ms) SAVEPOINT active_record_1
16388
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16389
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16390
+  (0.7ms) rollback transaction
16391
+  (0.1ms) begin transaction
16392
+  (0.1ms) SAVEPOINT active_record_1
16393
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16394
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16396
+ GotFixed::User Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
16398
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16399
+ SQL (0.4ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16401
+  (0.0ms) SAVEPOINT active_record_1
16402
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16404
+  (0.0ms) SAVEPOINT active_record_1
16405
+ GotFixed::Issue Exists (0.1ms) 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
16406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16407
+ Processing by GotFixed::IssuesController#subscribe as JS
16408
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
16409
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16410
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
16411
+ GotFixed::User Exists (0.1ms) 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]]
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
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
16415
+ GotFixed::User Load (0.1ms) 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]]
16416
+  (0.9ms) rollback transaction
16417
+  (0.1ms) begin transaction
16418
+  (0.1ms) SAVEPOINT active_record_1
16419
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16420
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16422
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
16424
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16425
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16427
+ Processing by GotFixed::IssuesController#subscribe as JS
16428
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
16429
+ GotFixed::User Load (0.2ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16430
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
16431
+ GotFixed::User Exists (0.1ms) 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]]
16432
+  (0.1ms) SAVEPOINT active_record_1
16433
+  (0.2ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16434
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16435
+  (0.1ms) SAVEPOINT active_record_1
16436
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16438
+ Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 1.0ms)
16439
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
16440
+ GotFixed::User Load (0.1ms) 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]]
16441
+  (0.8ms) rollback transaction
16442
+  (0.1ms) begin transaction
16443
+  (0.1ms) SAVEPOINT active_record_1
16444
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16445
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16447
+ GotFixed::User Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16451
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
16452
+  (0.1ms) SAVEPOINT active_record_1
16453
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16454
+ SQL (0.4ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16457
+  (0.0ms) SAVEPOINT active_record_1
16458
+ GotFixed::Issue Exists (0.1ms) 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
16459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16460
+ Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.9ms)
16461
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
16462
+ GotFixed::User Load (0.0ms) 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
+  (0.7ms) rollback transaction
16464
+  (0.1ms) 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
+ GotFixed::Issue Load (0.2ms) 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
16468
+  (0.1ms) SAVEPOINT active_record_1
16469
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
16470
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16472
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.7ms)
16473
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.5ms) rollback transaction
16475
+  (0.1ms) begin transaction
16476
+  (0.1ms) SAVEPOINT active_record_1
16477
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.3ms) INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) 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
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
16483
+  (0.8ms) rollback transaction
16484
+  (0.1ms) begin transaction
16485
+  (0.1ms) rollback transaction
16486
+  (0.0ms) begin transaction
16487
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) rollback transaction
16489
+  (0.0ms) begin transaction
16490
+ GotFixed::Issue Load (0.1ms) 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
16491
+  (0.1ms) rollback transaction
16492
+  (0.3ms) begin transaction
16493
+ GotFixed::Issue Load (0.1ms) 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
+  (0.1ms) rollback transaction
16495
+  (0.1ms) begin transaction
16496
+ GotFixed::Issue Load (0.2ms) 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
16497
+  (0.1ms) rollback transaction
16498
+  (0.1ms) begin transaction
16499
+  (0.1ms) rollback transaction
16500
+  (0.1ms) begin transaction
16501
+  (0.1ms) rollback transaction
16502
+  (0.0ms) begin transaction
16503
+  (0.1ms) SAVEPOINT active_record_1
16504
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16505
+ SQL (2.8ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16507
+  (0.1ms) SAVEPOINT active_record_1
16508
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
16509
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16511
+  (0.0ms) SAVEPOINT active_record_1
16512
+  (0.2ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16514
+  (0.0ms) SAVEPOINT active_record_1
16515
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16517
+  (0.0ms) SAVEPOINT active_record_1
16518
+ GotFixed::Issue Exists (0.1ms) 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
16519
+ SQL (0.2ms) 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
+ GotFixed::User Load (0.1ms) 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]]
16521
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
16522
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16540
+  (1.8ms) rollback transaction
16541
+  (0.1ms) begin transaction
16542
+  (0.1ms) SAVEPOINT active_record_1
16543
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.3ms) 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"]]
16545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16546
+ GotFixed::User Load (0.0ms) 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]]
16547
+  (0.0ms) SAVEPOINT active_record_1
16548
+ GotFixed::Issue Exists (0.1ms) 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
16549
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16551
+  (0.5ms) rollback transaction
16552
+  (0.1ms) begin transaction
16553
+  (0.1ms) SAVEPOINT active_record_1
16554
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16555
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16557
+  (0.1ms) SAVEPOINT active_record_1
16558
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
16559
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16561
+  (0.0ms) SAVEPOINT active_record_1
16562
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16564
+  (0.1ms) SAVEPOINT active_record_1
16565
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
16566
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16568
+  (0.0ms) SAVEPOINT active_record_1
16569
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
16570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16571
+  (0.0ms) SAVEPOINT active_record_1
16572
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
16573
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16575
+  (0.0ms) SAVEPOINT active_record_1
16576
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
16577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16578
+  (0.0ms) SAVEPOINT active_record_1
16579
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
16580
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16582
+  (0.0ms) SAVEPOINT active_record_1
16583
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
16584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16585
+  (0.0ms) SAVEPOINT active_record_1
16586
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
16587
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16589
+  (0.0ms) SAVEPOINT active_record_1
16590
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
16591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16592
+  (0.0ms) SAVEPOINT active_record_1
16593
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
16594
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16596
+  (0.1ms) SAVEPOINT active_record_1
16597
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
16598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16599
+  (0.1ms) SAVEPOINT active_record_1
16600
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
16601
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16603
+  (0.1ms) SAVEPOINT active_record_1
16604
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
16605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16606
+  (0.0ms) SAVEPOINT active_record_1
16607
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
16608
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16610
+  (0.0ms) SAVEPOINT active_record_1
16611
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
16612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16613
+  (0.1ms) SAVEPOINT active_record_1
16614
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
16615
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16617
+  (0.0ms) SAVEPOINT active_record_1
16618
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
16619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16620
+  (0.0ms) SAVEPOINT active_record_1
16621
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
16622
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16624
+  (0.0ms) SAVEPOINT active_record_1
16625
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
16626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16627
+  (0.0ms) SAVEPOINT active_record_1
16628
+ GotFixed::Issue Exists (0.1ms) 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
16629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16630
+  (0.0ms) SAVEPOINT active_record_1
16631
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) 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]]
16633
+ GotFixed::User Load (0.1ms) 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
+ GotFixed::User Load (0.0ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
16635
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 2]]
16653
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 3]]
16671
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 4]]
16689
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 5]]
16707
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 6]]
16725
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 7]]
16743
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 8]]
16761
+ GotFixed::Issue Load (0.1ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 9]]
16779
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 10]]
16797
+ GotFixed::Issue Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16815
+  (1.9ms) rollback transaction
16816
+  (0.1ms) begin transaction
16817
+  (0.1ms) rollback transaction
16818
+  (0.0ms) begin transaction
16819
+  (0.0ms) rollback transaction
16820
+  (0.0ms) begin transaction
16821
+  (0.1ms) rollback transaction
16822
+  (0.1ms) begin transaction
16823
+  (0.0ms) rollback transaction
16824
+  (0.1ms) begin transaction
16825
+  (0.0ms) rollback transaction
16826
+  (0.1ms) begin transaction
16827
+  (0.0ms) rollback transaction
16828
+  (0.0ms) begin transaction
16829
+  (0.1ms) rollback transaction
16830
+  (0.1ms) begin transaction
16831
+  (0.1ms) rollback transaction
16832
+  (0.1ms) begin transaction
16833
+  (0.1ms) rollback transaction
16834
+  (0.1ms) begin transaction
16835
+  (0.1ms) SAVEPOINT active_record_1
16836
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16837
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16839
+  (0.0ms) SAVEPOINT active_record_1
16840
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16841
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16842
+  (0.5ms) rollback transaction
16843
+  (0.1ms) begin transaction
16844
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
16845
+  (0.1ms) rollback transaction
16846
+  (0.1ms) begin transaction
16847
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
16848
+  (0.1ms) rollback transaction
16849
+  (0.1ms) begin transaction
16850
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
16851
+  (0.1ms) rollback transaction
16852
+  (0.1ms) begin transaction
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
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
16857
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
16858
+ SQL (0.4ms) 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: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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16860
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.8ms)
16861
+ GotFixed::Issue Exists (0.1ms) 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
16862
+  (0.9ms) rollback transaction
16863
+  (0.1ms) begin transaction
16864
+  (0.1ms) SAVEPOINT active_record_1
16865
+ GotFixed::Issue Exists (0.2ms) 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
16866
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16868
+ Processing by GotFixed::IssuesController#index as HTML
16869
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
16870
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
16871
+  (0.5ms) rollback transaction
16872
+  (0.1ms) begin transaction
16873
+  (0.1ms) SAVEPOINT active_record_1
16874
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
16876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16877
+ GotFixed::User Load (0.0ms) 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]]
16878
+  (0.1ms) SAVEPOINT active_record_1
16879
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16880
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16882
+ Processing by GotFixed::IssuesController#subscribe as JS
16883
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
16884
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16885
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
16886
+ GotFixed::User Exists (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
16888
+  (0.2ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16889
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16890
+  (0.1ms) SAVEPOINT active_record_1
16891
+ GotFixed::Issue Exists (0.1ms) 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
16892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16893
+ Completed 200 OK in 11ms (Views: 3.6ms | ActiveRecord: 0.9ms)
16894
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
16895
+ GotFixed::User Load (0.1ms) 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
+  (0.6ms) rollback transaction
16897
+  (0.1ms) begin transaction
16898
+  (0.1ms) SAVEPOINT active_record_1
16899
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
16901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16902
+ GotFixed::User Load (0.1ms) 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]]
16903
+ Processing by GotFixed::IssuesController#subscribe as JS
16904
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
16905
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16906
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
16907
+  (0.1ms) SAVEPOINT active_record_1
16908
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16909
+ SQL (0.4ms) 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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16912
+  (0.0ms) SAVEPOINT active_record_1
16913
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16915
+ Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 1.0ms)
16916
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
16917
+ GotFixed::User Load (0.1ms) 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]]
16918
+  (0.5ms) rollback transaction
16919
+  (0.1ms) begin transaction
16920
+  (0.1ms) SAVEPOINT active_record_1
16921
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16922
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16924
+ GotFixed::User Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
16926
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16927
+ SQL (0.3ms) 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]]
16928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16929
+  (0.1ms) SAVEPOINT active_record_1
16930
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16932
+  (0.0ms) SAVEPOINT active_record_1
16933
+ GotFixed::Issue Exists (0.1ms) 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
16934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16935
+ Processing by GotFixed::IssuesController#subscribe as JS
16936
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
16937
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16938
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
16939
+ GotFixed::User Exists (0.1ms) 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]]
16940
+ Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.2ms)
16941
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
16942
+ GotFixed::User Load (0.0ms) 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]]
16943
+  (0.6ms) rollback transaction
16944
+  (0.3ms) begin transaction
16945
+  (0.1ms) rollback transaction
16946
+  (0.1ms) begin transaction
16947
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
16948
+  (0.1ms) rollback transaction
16949
+  (0.1ms) begin transaction
16950
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
16951
+  (0.1ms) rollback transaction
16952
+  (0.0ms) begin transaction
16953
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
16954
+  (0.1ms) rollback transaction
16955
+  (0.1ms) begin transaction
16956
+  (0.1ms) SAVEPOINT active_record_1
16957
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16958
+ SQL (5.0ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
16960
+  (0.1ms) SAVEPOINT active_record_1
16961
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
16962
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
16963
+  (1.2ms) rollback transaction
16964
+  (0.1ms) begin transaction
16965
+  (0.1ms) SAVEPOINT active_record_1
16966
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
16967
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16969
+  (0.1ms) SAVEPOINT active_record_1
16970
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
16971
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16973
+  (0.0ms) SAVEPOINT active_record_1
16974
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
16975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16976
+  (0.0ms) SAVEPOINT active_record_1
16977
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
16978
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16980
+  (0.1ms) SAVEPOINT active_record_1
16981
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
16982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16983
+  (0.0ms) SAVEPOINT active_record_1
16984
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
16985
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16987
+  (0.0ms) SAVEPOINT active_record_1
16988
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
16989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16990
+  (0.0ms) SAVEPOINT active_record_1
16991
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
16992
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16994
+  (0.0ms) SAVEPOINT active_record_1
16995
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
16996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16997
+  (0.0ms) SAVEPOINT active_record_1
16998
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
16999
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17001
+  (0.1ms) SAVEPOINT active_record_1
17002
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
17003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17004
+  (0.0ms) SAVEPOINT active_record_1
17005
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
17006
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17008
+  (0.0ms) SAVEPOINT active_record_1
17009
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
17010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17011
+  (0.0ms) SAVEPOINT active_record_1
17012
+ GotFixed::User Exists (0.3ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
17013
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17015
+  (0.1ms) SAVEPOINT active_record_1
17016
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
17017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17018
+  (0.1ms) SAVEPOINT active_record_1
17019
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
17020
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17022
+  (0.1ms) SAVEPOINT active_record_1
17023
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
17024
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17025
+  (0.1ms) SAVEPOINT active_record_1
17026
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
17027
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17029
+  (0.0ms) SAVEPOINT active_record_1
17030
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
17031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17032
+  (0.1ms) SAVEPOINT active_record_1
17033
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
17034
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17036
+  (0.0ms) SAVEPOINT active_record_1
17037
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
17038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17039
+  (0.0ms) SAVEPOINT active_record_1
17040
+ GotFixed::Issue Exists (0.1ms) 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
17041
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17042
+  (0.0ms) SAVEPOINT active_record_1
17043
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.2ms) 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]]
17045
+ GotFixed::User Load (0.2ms) 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
+ GotFixed::User Load (0.2ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
17047
+ GotFixed::Issue Load (0.1ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 2]]
17065
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 3]]
17083
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 4]]
17101
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 5]]
17119
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 6]]
17137
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 7]]
17155
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 8]]
17173
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 9]]
17191
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 10]]
17209
+ GotFixed::Issue Load (0.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17227
+  (0.7ms) rollback transaction
17228
+  (0.1ms) begin transaction
17229
+  (0.1ms) SAVEPOINT active_record_1
17230
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17231
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17233
+  (0.0ms) SAVEPOINT active_record_1
17234
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
17235
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17237
+  (0.0ms) SAVEPOINT active_record_1
17238
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17240
+  (0.0ms) SAVEPOINT active_record_1
17241
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17243
+  (0.0ms) SAVEPOINT active_record_1
17244
+ GotFixed::Issue Exists (0.1ms) 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
17245
+ SQL (0.1ms) 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
+ GotFixed::User Load (0.0ms) 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]]
17247
+ GotFixed::User Load (0.0ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
17248
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17266
+  (1.0ms) rollback transaction
17267
+  (0.2ms) begin transaction
17268
+  (0.1ms) SAVEPOINT active_record_1
17269
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.4ms) 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"]]
17271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17272
+ GotFixed::User Load (0.1ms) 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]]
17273
+  (0.1ms) SAVEPOINT active_record_1
17274
+ GotFixed::Issue Exists (0.1ms) 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
17275
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17277
+  (0.7ms) rollback transaction
17278
+  (0.1ms) begin transaction
17279
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) rollback transaction
17281
+  (0.1ms) begin transaction
17282
+ GotFixed::Issue Load (0.2ms) 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
17283
+  (0.1ms) rollback transaction
17284
+  (0.1ms) begin transaction
17285
+  (0.1ms) rollback transaction
17286
+  (0.0ms) begin transaction
17287
+  (0.1ms) rollback transaction
17288
+  (0.1ms) begin transaction
17289
+  (0.1ms) SAVEPOINT active_record_1
17290
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17291
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17293
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
17295
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17296
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17298
+  (0.0ms) SAVEPOINT active_record_1
17299
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17301
+  (0.0ms) SAVEPOINT active_record_1
17302
+ GotFixed::Issue Exists (0.1ms) 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
17303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17304
+ Processing by GotFixed::IssuesController#subscribe as JS
17305
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17306
+ GotFixed::User Load (0.2ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17307
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17308
+ GotFixed::User Exists (0.3ms) 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]]
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
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17312
+ GotFixed::User Load (0.1ms) 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]]
17313
+  (0.6ms) rollback transaction
17314
+  (0.1ms) begin transaction
17315
+  (0.1ms) SAVEPOINT active_record_1
17316
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17317
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17319
+ GotFixed::User Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
17321
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17322
+ SQL (0.3ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17324
+ Processing by GotFixed::IssuesController#subscribe as JS
17325
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17326
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17327
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17328
+ GotFixed::User Exists (0.0ms) 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]]
17329
+  (0.0ms) SAVEPOINT active_record_1
17330
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17332
+  (0.0ms) SAVEPOINT active_record_1
17333
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17335
+ Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.6ms)
17336
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17337
+ GotFixed::User Load (0.0ms) 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]]
17338
+  (0.7ms) rollback transaction
17339
+  (0.1ms) begin transaction
17340
+  (0.1ms) SAVEPOINT active_record_1
17341
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17342
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17344
+ GotFixed::User Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17348
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17349
+  (0.0ms) SAVEPOINT active_record_1
17350
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17351
+ SQL (0.4ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17354
+  (0.0ms) SAVEPOINT active_record_1
17355
+ GotFixed::Issue Exists (0.1ms) 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
17356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17357
+ Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.9ms)
17358
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17359
+ GotFixed::User Load (0.0ms) 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
+  (0.8ms) rollback transaction
17361
+  (0.1ms) 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
+ GotFixed::Issue Load (0.2ms) 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
17365
+  (0.0ms) SAVEPOINT active_record_1
17366
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
17367
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17369
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.7ms)
17370
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.7ms) rollback transaction
17372
+  (0.1ms) begin transaction
17373
+  (0.1ms) SAVEPOINT active_record_1
17374
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.4ms) INSERT INTO "got_fixed_issues" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) 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
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
17380
+  (0.6ms) rollback transaction
17381
+  (0.1ms) begin transaction
17382
+  (0.1ms) rollback transaction
17383
+  (0.0ms) begin transaction
17384
+  (0.1ms) rollback transaction
17385
+  (0.0ms) begin transaction
17386
+  (0.0ms) rollback transaction
17387
+  (0.0ms) begin transaction
17388
+  (0.1ms) rollback transaction
17389
+  (0.1ms) begin transaction
17390
+  (0.0ms) rollback transaction
17391
+  (0.0ms) begin transaction
17392
+  (0.1ms) rollback transaction
17393
+  (0.1ms) begin transaction
17394
+  (0.0ms) rollback transaction
17395
+  (0.0ms) begin transaction
17396
+  (0.0ms) rollback transaction
17397
+  (0.3ms) begin transaction
17398
+  (0.1ms) SAVEPOINT active_record_1
17399
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17400
+ SQL (4.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17402
+  (0.1ms) SAVEPOINT active_record_1
17403
+ GotFixed::User Exists (0.3ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
17404
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17406
+  (0.0ms) SAVEPOINT active_record_1
17407
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17409
+  (0.0ms) SAVEPOINT active_record_1
17410
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17412
+  (0.0ms) SAVEPOINT active_record_1
17413
+ GotFixed::Issue Exists (0.1ms) 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
17414
+ SQL (0.2ms) 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
+ GotFixed::User Load (0.2ms) 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]]
17416
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
17417
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17435
+  (0.9ms) rollback transaction
17436
+  (0.1ms) begin transaction
17437
+  (0.1ms) SAVEPOINT active_record_1
17438
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
17440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17441
+ GotFixed::User Load (0.0ms) 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]]
17442
+  (0.0ms) SAVEPOINT active_record_1
17443
+ GotFixed::Issue Exists (0.1ms) 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
17444
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17446
+  (0.6ms) rollback transaction
17447
+  (0.1ms) begin transaction
17448
+  (0.1ms) SAVEPOINT active_record_1
17449
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17450
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17452
+  (0.1ms) SAVEPOINT active_record_1
17453
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
17454
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17456
+  (0.0ms) SAVEPOINT active_record_1
17457
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17459
+  (0.0ms) SAVEPOINT active_record_1
17460
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
17461
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17463
+  (0.0ms) SAVEPOINT active_record_1
17464
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
17465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17466
+  (0.0ms) SAVEPOINT active_record_1
17467
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
17468
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17470
+  (0.0ms) SAVEPOINT active_record_1
17471
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
17472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17473
+  (0.0ms) SAVEPOINT active_record_1
17474
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
17475
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17477
+  (0.0ms) SAVEPOINT active_record_1
17478
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
17479
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17480
+  (0.0ms) SAVEPOINT active_record_1
17481
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
17482
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17484
+  (0.0ms) SAVEPOINT active_record_1
17485
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
17486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17487
+  (0.0ms) SAVEPOINT active_record_1
17488
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
17489
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17491
+  (0.0ms) SAVEPOINT active_record_1
17492
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
17493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17494
+  (0.0ms) SAVEPOINT active_record_1
17495
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
17496
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17498
+  (0.0ms) SAVEPOINT active_record_1
17499
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
17500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17501
+  (0.0ms) SAVEPOINT active_record_1
17502
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
17503
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17505
+  (0.1ms) SAVEPOINT active_record_1
17506
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
17507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17508
+  (0.0ms) SAVEPOINT active_record_1
17509
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
17510
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17512
+  (0.0ms) SAVEPOINT active_record_1
17513
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
17514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17515
+  (0.0ms) SAVEPOINT active_record_1
17516
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
17517
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17519
+  (0.0ms) SAVEPOINT active_record_1
17520
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
17521
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17522
+  (0.0ms) SAVEPOINT active_record_1
17523
+ GotFixed::Issue Exists (0.1ms) 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
17524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17525
+  (0.0ms) SAVEPOINT active_record_1
17526
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) 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]]
17528
+ GotFixed::User Load (0.1ms) 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
+ GotFixed::User Load (0.0ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
17530
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 2]]
17548
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 3]]
17566
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 4]]
17584
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 5]]
17602
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 6]]
17620
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 7]]
17638
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 8]]
17656
+ GotFixed::Issue Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 9]]
17674
+ GotFixed::Issue Load (0.1ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 10]]
17692
+ GotFixed::Issue Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17710
+  (0.9ms) rollback transaction
17711
+  (0.1ms) begin transaction
17712
+  (0.1ms) SAVEPOINT active_record_1
17713
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17714
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17716
+  (0.2ms) SAVEPOINT active_record_1
17717
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17718
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
17719
+  (0.4ms) rollback transaction
17720
+  (0.1ms) begin transaction
17721
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
17722
+  (0.1ms) rollback transaction
17723
+  (0.1ms) begin transaction
17724
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
17725
+  (0.1ms) rollback transaction
17726
+  (0.0ms) begin transaction
17727
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
17728
+  (0.0ms) rollback transaction
17729
+  (0.1ms) begin transaction
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
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
17734
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
17735
+ SQL (0.4ms) INSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17737
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.7ms)
17738
+ GotFixed::Issue Exists (0.1ms) 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
17739
+  (0.5ms) rollback transaction
17740
+  (0.1ms) begin transaction
17741
+  (0.0ms) SAVEPOINT active_record_1
17742
+ GotFixed::Issue Exists (0.1ms) 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
17743
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17745
+ Processing by GotFixed::IssuesController#index as HTML
17746
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
17747
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
17748
+  (0.6ms) rollback transaction
17749
+  (0.1ms) begin transaction
17750
+  (0.1ms) SAVEPOINT active_record_1
17751
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.3ms) 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"]]
17753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17754
+ GotFixed::User Load (0.0ms) 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]]
17755
+  (0.0ms) SAVEPOINT active_record_1
17756
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17757
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17759
+ Processing by GotFixed::IssuesController#subscribe as JS
17760
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17761
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17762
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17763
+ GotFixed::User Exists (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
17765
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17767
+  (0.0ms) SAVEPOINT active_record_1
17768
+ GotFixed::Issue Exists (0.1ms) 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
17769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17770
+ Completed 200 OK in 8ms (Views: 3.3ms | ActiveRecord: 0.7ms)
17771
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17772
+ GotFixed::User Load (0.1ms) 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
+  (0.8ms) rollback transaction
17774
+  (0.1ms) begin transaction
17775
+  (0.1ms) SAVEPOINT active_record_1
17776
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.3ms) 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"]]
17778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17779
+ GotFixed::User Load (0.0ms) 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]]
17780
+ Processing by GotFixed::IssuesController#subscribe as JS
17781
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17782
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17783
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17784
+  (0.1ms) SAVEPOINT active_record_1
17785
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17786
+ SQL (0.5ms) 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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17789
+  (0.0ms) SAVEPOINT active_record_1
17790
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17792
+ Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 1.2ms)
17793
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17794
+ GotFixed::User Load (0.1ms) 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]]
17795
+  (0.9ms) rollback transaction
17796
+  (0.1ms) begin transaction
17797
+  (0.1ms) SAVEPOINT active_record_1
17798
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17799
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17801
+ GotFixed::User Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
17803
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17804
+ SQL (0.3ms) 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]]
17805
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17806
+  (0.0ms) SAVEPOINT active_record_1
17807
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17809
+  (0.0ms) SAVEPOINT active_record_1
17810
+ GotFixed::Issue Exists (0.1ms) 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
17811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17812
+ Processing by GotFixed::IssuesController#subscribe as JS
17813
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17814
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17815
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17816
+ GotFixed::User Exists (0.1ms) 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]]
17817
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
17818
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17819
+ GotFixed::User Load (0.1ms) 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]]
17820
+  (0.7ms) rollback transaction
17821
+  (0.1ms) begin transaction
17822
+  (0.1ms) rollback transaction
17823
+  (0.1ms) begin transaction
17824
+  (0.0ms) rollback transaction
17825
+  (0.0ms) begin transaction
17826
+  (0.1ms) rollback transaction
17827
+  (0.1ms) begin transaction
17828
+  (0.1ms) rollback transaction
17829
+  (0.0ms) begin transaction
17830
+  (0.0ms) rollback transaction
17831
+  (0.0ms) begin transaction
17832
+  (0.1ms) rollback transaction
17833
+  (0.1ms) begin transaction
17834
+  (0.1ms) rollback transaction
17835
+  (0.1ms) begin transaction
17836
+  (0.0ms) rollback transaction
17837
+  (0.1ms) begin transaction
17838
+  (0.0ms) rollback transaction
17839
+  (0.0ms) begin transaction
17840
+  (0.1ms) rollback transaction
17841
+  (0.0ms) begin transaction
17842
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) rollback transaction
17844
+  (0.0ms) begin transaction
17845
+ GotFixed::Issue Load (0.2ms) 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
17846
+  (0.1ms) rollback transaction
17847
+  (0.1ms) begin transaction
17848
+  (0.1ms) rollback transaction
17849
+  (0.3ms) begin transaction
17850
+  (0.1ms) SAVEPOINT active_record_1
17851
+ GotFixed::Issue Exists (0.1ms) 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
17852
+ SQL (1.9ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" ORDER BY updated_at DESC
17858
+  (0.5ms) rollback transaction
17859
+  (0.1ms) begin transaction
17860
+  (0.1ms) SAVEPOINT active_record_1
17861
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.4ms) 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"]]
17863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17864
+ GotFixed::User Load (0.1ms) 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]]
17865
+ Processing by GotFixed::IssuesController#subscribe as JS
17866
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17867
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17868
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17869
+  (0.0ms) SAVEPOINT active_record_1
17870
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17871
+ SQL (0.7ms) 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
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17874
+  (0.0ms) SAVEPOINT active_record_1
17875
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17877
+ Completed 200 OK in 23ms (Views: 2.6ms | ActiveRecord: 1.5ms)
17878
+ GotFixed::Issue Load (0.2ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17879
+ GotFixed::User Load (0.0ms) 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]]
17880
+  (0.7ms) rollback transaction
17881
+  (0.1ms) begin transaction
17882
+  (0.1ms) SAVEPOINT active_record_1
17883
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17884
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17886
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
17888
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17889
+ SQL (0.3ms) 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]]
17890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17891
+  (0.0ms) SAVEPOINT active_record_1
17892
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17894
+  (0.0ms) SAVEPOINT active_record_1
17895
+ GotFixed::Issue Exists (0.1ms) 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
17896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17897
+ Processing by GotFixed::IssuesController#subscribe as JS
17898
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17899
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17900
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17901
+ GotFixed::User Exists (0.1ms) 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]]
17902
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms)
17903
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17904
+ GotFixed::User Load (0.1ms) 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]]
17905
+  (0.7ms) rollback transaction
17906
+  (0.1ms) begin transaction
17907
+  (0.1ms) SAVEPOINT active_record_1
17908
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17909
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17911
+ GotFixed::User Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
17913
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17914
+ SQL (0.3ms) 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]]
17915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17916
+ Processing by GotFixed::IssuesController#subscribe as JS
17917
+ Parameters: {"user"=>{"email"=>"foo@bar.com"}, "id"=>"1"}
17918
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
17919
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["id", "1"]]
17920
+ GotFixed::User Exists (0.1ms) 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]]
17921
+  (0.0ms) SAVEPOINT active_record_1
17922
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17924
+  (0.0ms) SAVEPOINT active_record_1
17925
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17927
+ Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.6ms)
17928
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? LIMIT 1 [["id", 1]]
17929
+ GotFixed::User Load (0.1ms) 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]]
17930
+  (0.9ms) rollback transaction
17931
+  (0.1ms) begin transaction
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
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
17936
+ GotFixed::Issue Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = '19526518' AND "got_fixed_issues"."vendor" = 'github') LIMIT 1
17937
+ SQL (0.4ms) INSERT INTO "got_fixed_issues" ("closed", "created_at", "title", "updated_at", "vendor", "vendor_id") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17939
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.8ms)
17940
+ GotFixed::Issue Exists (0.1ms) 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
17941
+  (0.5ms) rollback transaction
17942
+  (0.1ms) begin transaction
17943
+  (0.1ms) rollback transaction
17944
+  (0.1ms) begin transaction
17945
+  (0.0ms) rollback transaction
17946
+  (0.0ms) begin transaction
17947
+  (0.0ms) rollback transaction
17948
+  (0.0ms) begin transaction
17949
+  (0.0ms) rollback transaction
17950
+  (0.0ms) begin transaction
17951
+  (0.0ms) rollback transaction
17952
+  (0.0ms) begin transaction
17953
+  (0.0ms) rollback transaction
17954
+  (0.0ms) begin transaction
17955
+  (0.1ms) rollback transaction
17956
+  (0.1ms) begin transaction
17957
+  (0.1ms) rollback transaction
17958
+  (0.1ms) begin transaction
17959
+  (0.1ms) SAVEPOINT active_record_1
17960
+ GotFixed::Issue Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_issues" WHERE ("got_fixed_issues"."vendor_id" = 'iWnj89' AND "got_fixed_issues"."vendor" IS NULL) LIMIT 1
17961
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17963
+ GotFixed::User Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
17965
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.5ms) 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]]
17967
+  (0.1ms) RELEASE SAVEPOINT active_record_1
17968
+  (0.6ms) rollback transaction
17969
+  (0.1ms) begin transaction
17970
+  (0.1ms) SAVEPOINT active_record_1
17971
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.4ms) 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"]]
17973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17974
+  (0.1ms) SAVEPOINT active_record_1
17975
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email1@factory.com' LIMIT 1
17976
+ SQL (0.4ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17978
+  (0.0ms) SAVEPOINT active_record_1
17979
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
17980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17981
+  (0.0ms) SAVEPOINT active_record_1
17982
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email2@factory.com' LIMIT 1
17983
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17985
+  (0.0ms) SAVEPOINT active_record_1
17986
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 2)
17987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17988
+  (0.1ms) SAVEPOINT active_record_1
17989
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email3@factory.com' LIMIT 1
17990
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17992
+  (0.1ms) SAVEPOINT active_record_1
17993
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 3)
17994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17995
+  (0.0ms) SAVEPOINT active_record_1
17996
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email4@factory.com' LIMIT 1
17997
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
17999
+  (0.0ms) SAVEPOINT active_record_1
18000
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 4)
18001
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18002
+  (0.0ms) SAVEPOINT active_record_1
18003
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email5@factory.com' LIMIT 1
18004
+ SQL (0.2ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18006
+  (0.0ms) SAVEPOINT active_record_1
18007
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 5)
18008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18009
+  (0.0ms) SAVEPOINT active_record_1
18010
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email6@factory.com' LIMIT 1
18011
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18013
+  (0.0ms) SAVEPOINT active_record_1
18014
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 6)
18015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18016
+  (0.0ms) SAVEPOINT active_record_1
18017
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email7@factory.com' LIMIT 1
18018
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18020
+  (0.0ms) SAVEPOINT active_record_1
18021
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 7)
18022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18023
+  (0.0ms) SAVEPOINT active_record_1
18024
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email8@factory.com' LIMIT 1
18025
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18027
+  (0.0ms) SAVEPOINT active_record_1
18028
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 8)
18029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18030
+  (0.0ms) SAVEPOINT active_record_1
18031
+ GotFixed::User Exists (0.0ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email9@factory.com' LIMIT 1
18032
+ SQL (0.1ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18034
+  (0.0ms) SAVEPOINT active_record_1
18035
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 9)
18036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18037
+  (0.0ms) SAVEPOINT active_record_1
18038
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email10@factory.com' LIMIT 1
18039
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18041
+  (0.0ms) SAVEPOINT active_record_1
18042
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 10)
18043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18044
+  (0.0ms) SAVEPOINT active_record_1
18045
+ GotFixed::Issue Exists (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18047
+  (0.0ms) SAVEPOINT active_record_1
18048
+ GotFixed::Issue Exists (0.1ms) 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
18049
+ SQL (0.1ms) 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
+ GotFixed::User Load (0.1ms) 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]]
18051
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
18052
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 2]]
18069
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 3]]
18086
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 4]]
18103
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 5]]
18120
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 6]]
18137
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 7]]
18154
+ GotFixed::Issue Load (0.1ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 8]]
18171
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 9]]
18188
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 10]]
18205
+ GotFixed::Issue Load (0.0ms) SELECT "got_fixed_issues".* FROM "got_fixed_issues" WHERE "got_fixed_issues"."id" = ? ORDER BY updated_at DESC LIMIT 1 [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18222
+  (2.2ms) rollback transaction
18223
+  (0.2ms) begin transaction
18224
+  (0.1ms) SAVEPOINT active_record_1
18225
+ GotFixed::Issue Exists (0.2ms) 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
+ SQL (0.5ms) 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"]]
18227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18228
+  (0.1ms) SAVEPOINT active_record_1
18229
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'email11@factory.com' LIMIT 1
18230
+ SQL (0.4ms) INSERT INTO "got_fixed_users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18232
+  (0.0ms) SAVEPOINT active_record_1
18233
+  (0.1ms) INSERT INTO "got_fixed_issues_users" ("issue_id", "user_id") VALUES (1, 1)
18234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18235
+  (0.0ms) SAVEPOINT active_record_1
18236
+ GotFixed::Issue Exists (0.1ms) 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
18237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18238
+  (0.0ms) SAVEPOINT active_record_1
18239
+ GotFixed::Issue Exists (0.1ms) 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
+ SQL (0.1ms) UPDATE "got_fixed_issues" SET "closed" = ?, "updated_at" = ? WHERE "got_fixed_issues"."id" = 1 [["closed", true], ["updated_at", Sun, 06 Oct 2013 10:38:51 UTC +00:00]]
18241
+ GotFixed::User Load (0.0ms) 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
+ GotFixed::User Load (0.1ms) SELECT "got_fixed_users".* FROM "got_fixed_users" WHERE "got_fixed_users"."id" = ? LIMIT 1 [["id", 1]]
18243
+ GotFixed::Issue Load (0.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18260
+  (1.1ms) rollback transaction
18261
+  (0.2ms) begin transaction
18262
+  (0.1ms) rollback transaction
18263
+  (0.1ms) begin transaction
18264
+  (0.1ms) rollback transaction
18265
+  (0.1ms) begin transaction
18266
+  (0.1ms) rollback transaction
18267
+  (0.0ms) begin transaction
18268
+ GotFixed::User Exists (0.2ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = '' LIMIT 1
18269
+  (0.1ms) rollback transaction
18270
+  (0.1ms) begin transaction
18271
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo' LIMIT 1
18272
+  (0.1ms) rollback transaction
18273
+  (0.0ms) begin transaction
18274
+  (0.0ms) SAVEPOINT active_record_1
18275
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
18276
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
18278
+  (0.0ms) SAVEPOINT active_record_1
18279
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'foo@bar.com' LIMIT 1
18280
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
18281
+  (0.8ms) rollback transaction
18282
+  (0.1ms) begin transaction
18283
+ GotFixed::User Exists (0.1ms) SELECT 1 AS one FROM "got_fixed_users" WHERE "got_fixed_users"."email" = 'seb@saunier.me' LIMIT 1
18284
+  (0.1ms) rollback transaction
18285
+  (0.0ms) begin transaction
18286
+ GotFixed::Issue Load (0.2ms) 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
+  (0.1ms) rollback transaction
18288
+  (0.0ms) begin transaction
18289
+ GotFixed::Issue Load (0.2ms) 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
18290
+  (0.1ms) rollback transaction