devise_meteor 0.1.0 → 0.1.1

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: a0d562215a30614c1da588c4290a506c77df9fef
4
- data.tar.gz: 6ebdf968382eb4b6b533b2d91f36121a59a62bf3
3
+ metadata.gz: 65fe8ee5c1936488a642b601d8448b7ae1a206d9
4
+ data.tar.gz: c252205919b4c3c8b1499c249c80abf2cb8d76ba
5
5
  SHA512:
6
- metadata.gz: bdf04c8e1df027241a6eead6ba19c98f523483d346335132376d4ddee959fb465a6fabf4275ba1c2c4280d045c945eb9a75495fe8c6db674ec5a7778573c35d3
7
- data.tar.gz: 88b6ccbd2eeb70290a4a62b1621b9f5b70f4c1a1eef589097cf6f8977d54e1e008b7ef5e1419986d18f496e886f920ad81c346ddf907dfde11359f8323ad4717
6
+ metadata.gz: 9fad162cc201a50b4dce9040247c1dcfec32a19cb3e26e93cbe8f81dfea61cd65395299260bada141356ba622ddfa1a04d924e88ca7fdfe58d7626a37f611c37
7
+ data.tar.gz: bb1a276e719e7928a2128d8fd5c377a561693a345b38a645e4b84eff67ff15c282702af3d66749a41cb5d4b02bd5ddfdcefb2faf79026c35358b87e742bdd334
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["mail@mediatainment-productions.com"]
11
11
 
12
12
  spec.summary = "Enables to authenticate devise on a devise_meteor hosted mongoid server"
13
- spec.description = "This app closes the gap between the huge world of ruby and devise_meteor. Simply install, configure and use it to connect to the desired devise_meteor server."
13
+ spec.description = "This app closes the gap between the huge world of ruby and meteor through devise. Simply install, configure and use it to connect to your desired meteor server."
14
14
  spec.homepage = "https://www.github.com/mediatainment/devise_meteor"
15
15
  spec.license = "MIT"
16
16
 
@@ -65,15 +65,6 @@ module DeviseMeteor
65
65
  set(emails: emails_temp)
66
66
  end
67
67
 
68
- # Verifies whether a password (ie from sign in) is the user password.
69
- def valid_password?(password)
70
- DeviseMeteor::Encrypter.compare(password, encrypted_password)
71
- end
72
-
73
- def password_digest(password)
74
- DeviseMeteor::Encrypter.digest(password)
75
- end
76
-
77
68
  private
78
69
 
79
70
  # build a default password hash
@@ -1,15 +1,15 @@
1
- module DeviseMeteor
2
- module Encrypter
3
-
4
- def self.digest(password)
5
- sha256_hasher = DeviseMeteor::BCryptSHA256Hasher.new
6
- sha256_hasher.encode(password, sha256_hasher.salt)
7
- end
8
-
1
+ module DeviseMeteorAdapter
2
+ def digest(klass, password)
3
+ klass.pepper = nil
4
+ password = ::Digest::SHA256.hexdigest(password)
5
+ super
6
+ end
9
7
 
10
- def self.compare(password, encrypted_password)
11
- sha256_hasher = DeviseMeteor::BCryptSHA256Hasher.new
12
- sha256_hasher.verify(password, encrypted_password)
13
- end
8
+ def compare(klass, hashed_password, password)
9
+ klass.pepper = nil
10
+ password = ::Digest::SHA256.hexdigest(password)
11
+ super
14
12
  end
15
13
  end
14
+
15
+ Devise::Encryptor.singleton_class.prepend(DeviseMeteorAdapter)
@@ -1,3 +1,3 @@
1
1
  module DeviseMeteor
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -23509,3 +23509,783 @@ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system
23509
23509
  MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000255s
23510
23510
  MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23511
23511
  MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000242s
23512
+ MONGODB | Unsupported client option 'consistency'. It will be ignored.
23513
+ MONGODB | Unsupported client option 'max_retries'. It will be ignored.
23514
+ MONGODB | Unsupported client option 'retry_interval'. It will be ignored.
23515
+ MONGODB | Adding localhost:27017 to the cluster.
23516
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"nels.beer@wiza.co"}, "projection"=>{"_id"=>1}, "limit"=>1}
23517
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.006135s
23518
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"76355a9f835b1b7ab1ddaf30746f5e8b626db4850779c37a833dfa0d962a254f"}, "limit"=>-1}
23519
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000357s
23520
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f29339a54d75f23031a030'), "email"=>"nels.beer@wiza.co", "encrypted_password"=>"$2a$04$LW4U036ybU9/xJSN6owjgOmSt3xonCYoLoYMqfoXUhztPQWhfHLn.", "sign_in_count"=>0, "failed_attempts"=>0, "emails...
23521
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.0009s
23522
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (1.9ms)
23523
+
23524
+ Sent mail to nels.beer@wiza.co (5.1ms)
23525
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23526
+ To: nels.beer@wiza.co
23527
+ Message-ID: <56f2933ac4b9_f2303fc86985e1e0702e2@MacBook-Pro.local.mail>
23528
+ Subject: Confirmation instructions
23529
+ Mime-Version: 1.0
23530
+ Content-Type: text/html;
23531
+ charset=UTF-8
23532
+ Content-Transfer-Encoding: 7bit
23533
+
23534
+ <p>Welcome nels.beer@wiza.co!</p>
23535
+
23536
+ <p>You can confirm your account email through the link below:</p>
23537
+
23538
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=M9QPEu2byPUnULxbH7tz&amp;locale=en">Confirm my account</a></p>
23539
+
23540
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23541
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00038899999999999997s
23542
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23543
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000268s
23544
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"nella.wilkinson@effertz.net"}, "projection"=>{"_id"=>1}, "limit"=>1}
23545
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00030700000000000004s
23546
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"7201ad307acc26a2fda49f7b62869f14249966d0195d2685c507a40b02eaa1f4"}, "limit"=>-1}
23547
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00026s
23548
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a032'), "email"=>"nella.wilkinson@effertz.net", "encrypted_password"=>"$2a$04$8XM6O0LNJ8hHQe8Ki/knEexasYNAcXRTrqciN1PQWZrXBfzi4Ie.C", "sign_in_count"=>0, "failed_attempts"=>...
23549
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000329s
23550
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23551
+
23552
+ Sent mail to nella.wilkinson@effertz.net (0.8ms)
23553
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23554
+ To: nella.wilkinson@effertz.net
23555
+ Message-ID: <56f2933a10ebf_f2303fc86985e1e070353@MacBook-Pro.local.mail>
23556
+ Subject: Confirmation instructions
23557
+ Mime-Version: 1.0
23558
+ Content-Type: text/html;
23559
+ charset=UTF-8
23560
+ Content-Transfer-Encoding: 7bit
23561
+
23562
+ <p>Welcome nella.wilkinson@effertz.net!</p>
23563
+
23564
+ <p>You can confirm your account email through the link below:</p>
23565
+
23566
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=yriweVSKYqe_7Fmz1drq&amp;locale=en">Confirm my account</a></p>
23567
+
23568
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23569
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00025299999999999997s
23570
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23571
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00030799999999999995s
23572
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"claire.legros@grimes.name"}, "projection"=>{"_id"=>1}, "limit"=>1}
23573
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00026199999999999997s
23574
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"282c87fd7f31068d56ee2384a85e4daf9e7a8f02b2fd8dbfa166ba936eed3810"}, "limit"=>-1}
23575
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00018s
23576
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a034'), "email"=>"claire.legros@grimes.name", "encrypted_password"=>"$2a$04$MHioH3v0XCQ3oosXLTR3l.V99jKENYqiGTWxmvJ1EupA7xWDnei0y", "sign_in_count"=>0, "failed_attempts"=>0,...
23577
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.00028s
23578
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23579
+
23580
+ Sent mail to claire.legros@grimes.name (0.8ms)
23581
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23582
+ To: claire.legros@grimes.name
23583
+ Message-ID: <56f2933a1318f_f2303fc86985e1e0704cb@MacBook-Pro.local.mail>
23584
+ Subject: Confirmation instructions
23585
+ Mime-Version: 1.0
23586
+ Content-Type: text/html;
23587
+ charset=UTF-8
23588
+ Content-Transfer-Encoding: 7bit
23589
+
23590
+ <p>Welcome claire.legros@grimes.name!</p>
23591
+
23592
+ <p>You can confirm your account email through the link below:</p>
23593
+
23594
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=zUxyuDZAN_9mWuGoEUp1&amp;locale=en">Confirm my account</a></p>
23595
+
23596
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a034')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23597
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000386s
23598
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a034')}, "u"=>{"$set"=>{"emails"=>[{:address=>"claire.legros@grimes.name", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23599
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00023600000000000002s
23600
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a034')}, "u"=>{"$addToSet"=>{"emails"=>{"$each"=>[{:address=>"test@test.com", :verified=>false}]}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23601
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00025299999999999997s
23602
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"test@test.com", "_id"=>{"$ne"=>BSON::ObjectId('56f2933aa54d75f23031a034')}}, "projection"=>{"_id"=>1}, "limit"=>1}
23603
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000299s
23604
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"99b26973b79d2fc0bf9ce427edfea6e3b3d20a558cc1908c0bc4aa3cf310f3db"}, "limit"=>-1}
23605
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00022400000000000002s
23606
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a034')}, "u"=>{"$set"=>{"unconfirmed_email"=>"test@test.com", "confirmation_token"=>"3TVN5rA2H62mMxuVoniD", "confirmation_sent_at"=>2016-03-23 12:59:38 UTC, "updated_at"...
23607
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000279s
23608
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.2ms)
23609
+
23610
+ Sent mail to test@test.com (0.8ms)
23611
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23612
+ To: test@test.com
23613
+ Message-ID: <56f2933a15054_f2303fc86985e1e070583@MacBook-Pro.local.mail>
23614
+ Subject: Confirmation instructions
23615
+ Mime-Version: 1.0
23616
+ Content-Type: text/html;
23617
+ charset=UTF-8
23618
+ Content-Transfer-Encoding: 7bit
23619
+
23620
+ <p>Welcome test@test.com!</p>
23621
+
23622
+ <p>You can confirm your account email through the link below:</p>
23623
+
23624
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=3TVN5rA2H62mMxuVoniD&amp;locale=en">Confirm my account</a></p>
23625
+
23626
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23627
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000276s
23628
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23629
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000247s
23630
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"billie@runolfonhalvorson.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
23631
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000291s
23632
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"370d3e8a8db1475b36e1d69b790e6799b29c511e8927c7aee48f0478cfb0b0fb"}, "limit"=>-1}
23633
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000212s
23634
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036'), "email"=>"billie@runolfonhalvorson.io", "encrypted_password"=>"$2a$04$lUKeakS.7Wbv7klWIJT/rOf.iY4xf8QfOBRTnbbS1haGZH9VRma/2", "sign_in_count"=>0, "failed_attempts"=>...
23635
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000255s
23636
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23637
+
23638
+ Sent mail to billie@runolfonhalvorson.io (0.8ms)
23639
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23640
+ To: billie@runolfonhalvorson.io
23641
+ Message-ID: <56f2933a176a5_f2303fc86985e1e07065b@MacBook-Pro.local.mail>
23642
+ Subject: Confirmation instructions
23643
+ Mime-Version: 1.0
23644
+ Content-Type: text/html;
23645
+ charset=UTF-8
23646
+ Content-Transfer-Encoding: 7bit
23647
+
23648
+ <p>Welcome billie@runolfonhalvorson.io!</p>
23649
+
23650
+ <p>You can confirm your account email through the link below:</p>
23651
+
23652
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=g6YZtB6uEfLsxpDuTnfV&amp;locale=en">Confirm my account</a></p>
23653
+
23654
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23655
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000307s
23656
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$set"=>{"emails"=>[{:address=>"billie@runolfonhalvorson.io", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23657
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00028799999999999995s
23658
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$addToSet"=>{"emails"=>{"$each"=>[{:address=>"test@test.com", :verified=>false}]}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23659
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00025s
23660
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"test@test.com", "_id"=>{"$ne"=>BSON::ObjectId('56f2933aa54d75f23031a036')}}, "projection"=>{"_id"=>1}, "limit"=>1}
23661
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000268s
23662
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"96eb75430ab6beb46e2bdb9ac40b866f68d857a2d5734d50cdab3631ee82a393"}, "limit"=>-1}
23663
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000219s
23664
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$set"=>{"unconfirmed_email"=>"test@test.com", "confirmation_token"=>"ws5CzcJBExx7PSR8rTbm", "confirmation_sent_at"=>2016-03-23 12:59:38 UTC, "updated_at"...
23665
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000252s
23666
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23667
+
23668
+ Sent mail to test@test.com (0.9ms)
23669
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23670
+ To: test@test.com
23671
+ Message-ID: <56f2933a193bb_f2303fc86985e1e0707fe@MacBook-Pro.local.mail>
23672
+ Subject: Confirmation instructions
23673
+ Mime-Version: 1.0
23674
+ Content-Type: text/html;
23675
+ charset=UTF-8
23676
+ Content-Transfer-Encoding: 7bit
23677
+
23678
+ <p>Welcome test@test.com!</p>
23679
+
23680
+ <p>You can confirm your account email through the link below:</p>
23681
+
23682
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=ws5CzcJBExx7PSR8rTbm&amp;locale=en">Confirm my account</a></p>
23683
+
23684
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$addToSet"=>{"emails"=>{"$each"=>[{:address=>"test@test.com", :verified=>false}]}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23685
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000293s
23686
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"test@test.com", "_id"=>{"$ne"=>BSON::ObjectId('56f2933aa54d75f23031a036')}}, "projection"=>{"_id"=>1}, "limit"=>1}
23687
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000354s
23688
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "email"=>"test@test.com", "unconfirmed_email"=>nil, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>fa...
23689
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000267s
23690
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a036')}, "u"=>{"$set"=>{"emails"=>[{:address=>"billie@runolfonhalvorson.io", :verified=>true}, {:address=>"test@test.com", :verified=>true}]}}, "multi"=>false, "upsert"=...
23691
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00025299999999999997s
23692
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23693
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00025499999999999996s
23694
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23695
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000241s
23696
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"river.daniel@boylehayes.co"}, "projection"=>{"_id"=>1}, "limit"=>1}
23697
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000261s
23698
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"6482f6d3c8bf2a4034ae2ddda7c8e18b2e47e8d90f78a137a1c0fbeac8a19118"}, "limit"=>-1}
23699
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000231s
23700
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a038'), "email"=>"river.daniel@boylehayes.co", "encrypted_password"=>"$2a$04$2jMZq6l3uWRsx4tJ41Mthe01koKKKnVnFWaMQhP5Pv7/x/ZesmkGi", "sign_in_count"=>0, "failed_attempts"=>0...
23701
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.00026399999999999997s
23702
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
23703
+
23704
+ Sent mail to river.daniel@boylehayes.co (1.3ms)
23705
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23706
+ To: river.daniel@boylehayes.co
23707
+ Message-ID: <56f2933a1cab5_f2303fc86985e1e07084f@MacBook-Pro.local.mail>
23708
+ Subject: Confirmation instructions
23709
+ Mime-Version: 1.0
23710
+ Content-Type: text/html;
23711
+ charset=UTF-8
23712
+ Content-Transfer-Encoding: 7bit
23713
+
23714
+ <p>Welcome river.daniel@boylehayes.co!</p>
23715
+
23716
+ <p>You can confirm your account email through the link below:</p>
23717
+
23718
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=9hmJiM95tHtksSdBxhy5&amp;locale=en">Confirm my account</a></p>
23719
+
23720
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a038')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23721
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000386s
23722
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a038')}, "u"=>{"$set"=>{"emails"=>[{:address=>"river.daniel@boylehayes.co", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23723
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000324s
23724
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a038')}, "u"=>{"$addToSet"=>{"emails"=>{"$each"=>[{:address=>"test@test.com", :verified=>false}]}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23725
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000311s
23726
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"test@test.com", "_id"=>{"$ne"=>BSON::ObjectId('56f2933aa54d75f23031a038')}}, "projection"=>{"_id"=>1}, "limit"=>1}
23727
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000317s
23728
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"78c444416b207f03214ad1ee2767fe5521bdbf8faa08e4788bc0e5e8858fae38"}, "limit"=>-1}
23729
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000235s
23730
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a038')}, "u"=>{"$set"=>{"unconfirmed_email"=>"test@test.com", "confirmation_token"=>"LeDJ2Z5oHhAS-zCNs6n1", "confirmation_sent_at"=>2016-03-23 12:59:38 UTC, "updated_at"...
23731
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00029s
23732
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23733
+
23734
+ Sent mail to test@test.com (0.8ms)
23735
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23736
+ To: test@test.com
23737
+ Message-ID: <56f2933a1ee55_f2303fc86985e1e0709e3@MacBook-Pro.local.mail>
23738
+ Subject: Confirmation instructions
23739
+ Mime-Version: 1.0
23740
+ Content-Type: text/html;
23741
+ charset=UTF-8
23742
+ Content-Transfer-Encoding: 7bit
23743
+
23744
+ <p>Welcome test@test.com!</p>
23745
+
23746
+ <p>You can confirm your account email through the link below:</p>
23747
+
23748
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=LeDJ2Z5oHhAS-zCNs6n1&amp;locale=en">Confirm my account</a></p>
23749
+
23750
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23751
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000256s
23752
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23753
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000255s
23754
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"andre.walter@blanda.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
23755
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00025100000000000003s
23756
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"3cff3133963a5a239e15afb04dbe4f75a94172e065520a0fa5c2eac832e421c2"}, "limit"=>-1}
23757
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000239s
23758
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03a'), "email"=>"andre.walter@blanda.io", "encrypted_password"=>"$2a$04$VC4XCqyhglFSeVEip9TGCOHK6PKsbyQJRkL13XSQph2uVgZZKwa/O", "sign_in_count"=>0, "failed_attempts"=>0, "e...
23759
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000243s
23760
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23761
+
23762
+ Sent mail to andre.walter@blanda.io (0.8ms)
23763
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23764
+ To: andre.walter@blanda.io
23765
+ Message-ID: <56f2933a20ed0_f2303fc86985e1e07104f@MacBook-Pro.local.mail>
23766
+ Subject: Confirmation instructions
23767
+ Mime-Version: 1.0
23768
+ Content-Type: text/html;
23769
+ charset=UTF-8
23770
+ Content-Transfer-Encoding: 7bit
23771
+
23772
+ <p>Welcome andre.walter@blanda.io!</p>
23773
+
23774
+ <p>You can confirm your account email through the link below:</p>
23775
+
23776
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=op8ZfdXy4ZYZM4m_a49M&amp;locale=en">Confirm my account</a></p>
23777
+
23778
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03a')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23779
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00029s
23780
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03a')}, "u"=>{"$set"=>{"emails"=>[{:address=>"andre.walter@blanda.io", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23781
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000238s
23782
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03a')}, "u"=>{"$addToSet"=>{"emails"=>{"$each"=>[{:address=>"another@email.com", :verified=>false}]}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23783
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000302s
23784
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"another@email.com", "_id"=>{"$ne"=>BSON::ObjectId('56f2933aa54d75f23031a03a')}}, "projection"=>{"_id"=>1}, "limit"=>1}
23785
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000245s
23786
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"8903ae0d0a822333847bfbad4d068ee04c801bfdc2be92220a5cb7f2ff4e96ed"}, "limit"=>-1}
23787
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000213s
23788
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03a')}, "u"=>{"$set"=>{"unconfirmed_email"=>"another@email.com", "confirmation_token"=>"zs6fhJdeTsFjkDxp_tMW", "confirmation_sent_at"=>2016-03-23 12:59:38 UTC, "updated...
23789
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00023600000000000002s
23790
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.2ms)
23791
+
23792
+ Sent mail to another@email.com (0.8ms)
23793
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23794
+ To: another@email.com
23795
+ Message-ID: <56f2933a2296b_f2303fc86985e1e071118@MacBook-Pro.local.mail>
23796
+ Subject: Confirmation instructions
23797
+ Mime-Version: 1.0
23798
+ Content-Type: text/html;
23799
+ charset=UTF-8
23800
+ Content-Transfer-Encoding: 7bit
23801
+
23802
+ <p>Welcome another@email.com!</p>
23803
+
23804
+ <p>You can confirm your account email through the link below:</p>
23805
+
23806
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=zs6fhJdeTsFjkDxp_tMW&amp;locale=en">Confirm my account</a></p>
23807
+
23808
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23809
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00030100000000000005s
23810
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23811
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000274s
23812
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"sydnee.jakubowski@turner.org"}, "projection"=>{"_id"=>1}, "limit"=>1}
23813
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000244s
23814
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"1a84305e559c6cfa3d5acc5cc922be19b4d3344495eed152ec53a226f8221590"}, "limit"=>-1}
23815
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00019s
23816
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03c'), "email"=>"sydnee.jakubowski@turner.org", "encrypted_password"=>"$2a$04$9duxAQFSJMwfTUJGYFUcKuB9NAZv30Xd4IvJ.uIR29JkUohQi5ovi", "sign_in_count"=>0, "failed_attempts"=...
23817
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000245s
23818
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23819
+
23820
+ Sent mail to sydnee.jakubowski@turner.org (0.8ms)
23821
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23822
+ To: sydnee.jakubowski@turner.org
23823
+ Message-ID: <56f2933a24e69_f2303fc86985e1e07123c@MacBook-Pro.local.mail>
23824
+ Subject: Confirmation instructions
23825
+ Mime-Version: 1.0
23826
+ Content-Type: text/html;
23827
+ charset=UTF-8
23828
+ Content-Transfer-Encoding: 7bit
23829
+
23830
+ <p>Welcome sydnee.jakubowski@turner.org!</p>
23831
+
23832
+ <p>You can confirm your account email through the link below:</p>
23833
+
23834
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=HoRntWQnMNjsMHP6_yeA&amp;locale=en">Confirm my account</a></p>
23835
+
23836
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23837
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000265s
23838
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23839
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00025s
23840
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"myrtice@schmitt.biz"}, "projection"=>{"_id"=>1}, "limit"=>1}
23841
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000265s
23842
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"2bb0d8795b0ac5d09ae34a85475a32c710d6b2922e58f09d6294857044350ddd"}, "limit"=>-1}
23843
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000213s
23844
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03e'), "email"=>"myrtice@schmitt.biz", "encrypted_password"=>"$2a$04$zDB7UNSKMPNyLqtHsSiNY.BNkQIsHqkF04tA6udQpWbUmlFiarV.G", "sign_in_count"=>0, "failed_attempts"=>0, "emai...
23845
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000247s
23846
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23847
+
23848
+ Sent mail to myrtice@schmitt.biz (0.8ms)
23849
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23850
+ To: myrtice@schmitt.biz
23851
+ Message-ID: <56f2933a26e38_f2303fc86985e1e0713e4@MacBook-Pro.local.mail>
23852
+ Subject: Confirmation instructions
23853
+ Mime-Version: 1.0
23854
+ Content-Type: text/html;
23855
+ charset=UTF-8
23856
+ Content-Transfer-Encoding: 7bit
23857
+
23858
+ <p>Welcome myrtice@schmitt.biz!</p>
23859
+
23860
+ <p>You can confirm your account email through the link below:</p>
23861
+
23862
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=EeCQRsH4HDJ2SytfVux1&amp;locale=en">Confirm my account</a></p>
23863
+
23864
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03e')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23865
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000391s
23866
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a03e')}, "u"=>{"$set"=>{"emails"=>[{:address=>"myrtice@schmitt.biz", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23867
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000282s
23868
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23869
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000246s
23870
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23871
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000231s
23872
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"lindsey.kovacek@lockman.org"}, "projection"=>{"_id"=>1}, "limit"=>1}
23873
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000255s
23874
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"5315e48dbc89b8e999ccbf7967899232ec8fe4f3aec04ba9b44b650f99d69f25"}, "limit"=>-1}
23875
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000215s
23876
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a040'), "email"=>"lindsey.kovacek@lockman.org", "encrypted_password"=>"$2a$04$/j9cadMp2V5bQTeTynIyceo3odyf430esCiVM29zZ/tJofrzTeOT.", "sign_in_count"=>0, "failed_attempts"=>...
23877
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000232s
23878
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23879
+
23880
+ Sent mail to lindsey.kovacek@lockman.org (0.8ms)
23881
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23882
+ To: lindsey.kovacek@lockman.org
23883
+ Message-ID: <56f2933a295b1_f2303fc86985e1e0714fd@MacBook-Pro.local.mail>
23884
+ Subject: Confirmation instructions
23885
+ Mime-Version: 1.0
23886
+ Content-Type: text/html;
23887
+ charset=UTF-8
23888
+ Content-Transfer-Encoding: 7bit
23889
+
23890
+ <p>Welcome lindsey.kovacek@lockman.org!</p>
23891
+
23892
+ <p>You can confirm your account email through the link below:</p>
23893
+
23894
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=23dNb95WUyEdydAy_HSi&amp;locale=en">Confirm my account</a></p>
23895
+
23896
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23897
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000252s
23898
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23899
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00024400000000000002s
23900
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"adele@wehner.net"}, "projection"=>{"_id"=>1}, "limit"=>1}
23901
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00020700000000000002s
23902
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"6f0716e16d4e222bb71615cb26873d263c637203c1a6f19fc5d29b428bb43026"}, "limit"=>-1}
23903
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000192s
23904
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a042'), "email"=>"adele@wehner.net", "encrypted_password"=>"$2a$04$6ff2qPeM/QkeguPdhP20defYBgSbSc7Wp65BlPlPyYVoCtK/.OyzK", "sign_in_count"=>0, "failed_attempts"=>0, "emails"...
23905
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000231s
23906
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.2ms)
23907
+
23908
+ Sent mail to adele@wehner.net (0.8ms)
23909
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23910
+ To: adele@wehner.net
23911
+ Message-ID: <56f2933a2b572_f2303fc86985e1e07151e@MacBook-Pro.local.mail>
23912
+ Subject: Confirmation instructions
23913
+ Mime-Version: 1.0
23914
+ Content-Type: text/html;
23915
+ charset=UTF-8
23916
+ Content-Transfer-Encoding: 7bit
23917
+
23918
+ <p>Welcome adele@wehner.net!</p>
23919
+
23920
+ <p>You can confirm your account email through the link below:</p>
23921
+
23922
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=rHe1Cgs2dqc6kqdmHvXh&amp;locale=en">Confirm my account</a></p>
23923
+
23924
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23925
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000322s
23926
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23927
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000294s
23928
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"esperanza.bahringer@fay.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
23929
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000245s
23930
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"c78dce6002cd9efe7f1ded3aed250498bd9d778f5b73c4a895e7ee4d1cb52aa2"}, "limit"=>-1}
23931
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000242s
23932
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a044'), "email"=>"esperanza.bahringer@fay.io", "encrypted_password"=>"$2a$04$dRldUxIObpONsQUCPlVIB.A1JLOvYnDXYb3Lg/K5khMFynt3FT4O2", "sign_in_count"=>0, "failed_attempts"=>0...
23933
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.00026199999999999997s
23934
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23935
+
23936
+ Sent mail to esperanza.bahringer@fay.io (0.8ms)
23937
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23938
+ To: esperanza.bahringer@fay.io
23939
+ Message-ID: <56f2933a2ec53_f2303fc86985e1e07166e@MacBook-Pro.local.mail>
23940
+ Subject: Confirmation instructions
23941
+ Mime-Version: 1.0
23942
+ Content-Type: text/html;
23943
+ charset=UTF-8
23944
+ Content-Transfer-Encoding: 7bit
23945
+
23946
+ <p>Welcome esperanza.bahringer@fay.io!</p>
23947
+
23948
+ <p>You can confirm your account email through the link below:</p>
23949
+
23950
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=CY2P4qprQ6kMPy-fzkk7&amp;locale=en">Confirm my account</a></p>
23951
+
23952
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a044')}, "u"=>{"$set"=>{"profile"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a046'), "name"=>"John Doe", "username"=>"", "firstName"=>"", "lastName"=>""}}}, "multi"=>f...
23953
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000331s
23954
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
23955
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000311s
23956
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23957
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000263s
23958
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23959
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000253s
23960
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"cristal@mcglynnwiza.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
23961
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000256s
23962
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"ba07e55c512681f7055b02ae1ade7aa8cf9b711d9827ca446d66b258a5f96214"}, "limit"=>-1}
23963
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00021700000000000002s
23964
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a047'), "email"=>"cristal@mcglynnwiza.io", "encrypted_password"=>"$2a$04$zrKo3gMWgDMwuSEhUJ9mAuN/hZvHVKvLTbyQHTOX/Fvmk/Dq2SVFm", "sign_in_count"=>0, "failed_attempts"=>0, "e...
23965
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000229s
23966
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23967
+
23968
+ Sent mail to cristal@mcglynnwiza.io (0.8ms)
23969
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
23970
+ To: cristal@mcglynnwiza.io
23971
+ Message-ID: <56f2933a31736_f2303fc86985e1e0717b@MacBook-Pro.local.mail>
23972
+ Subject: Confirmation instructions
23973
+ Mime-Version: 1.0
23974
+ Content-Type: text/html;
23975
+ charset=UTF-8
23976
+ Content-Transfer-Encoding: 7bit
23977
+
23978
+ <p>Welcome cristal@mcglynnwiza.io!</p>
23979
+
23980
+ <p>You can confirm your account email through the link below:</p>
23981
+
23982
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=7yxtxPjotU1GSTXERNiz&amp;locale=en">Confirm my account</a></p>
23983
+
23984
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a047')}, "u"=>{"$set"=>{"profile"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a049'), "name"=>"John Doe", "username"=>"", "firstName"=>"", "lastName"=>""}}}, "multi"=>f...
23985
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000285s
23986
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
23987
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00022700000000000002s
23988
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
23989
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000204s
23990
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"delpha.kozey@wisoky.name"}, "projection"=>{"_id"=>1}, "limit"=>1}
23991
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000246s
23992
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"ad9eb836a04709aa3b24d01e9a1bad155882b9e058b136440f881dff9a3b0163"}, "limit"=>-1}
23993
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000232s
23994
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a04a'), "email"=>"delpha.kozey@wisoky.name", "encrypted_password"=>"$2a$04$WB21976oIBUyRI6FA8wZM.6uvSBhkHLk5hHVTOK.4vl7YUQvBgz4y", "sign_in_count"=>0, "failed_attempts"=>0, ...
23995
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000272s
23996
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
23997
+
23998
+ Sent mail to delpha.kozey@wisoky.name (0.8ms)
23999
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24000
+ To: delpha.kozey@wisoky.name
24001
+ Message-ID: <56f2933a33d8c_f2303fc86985e1e07185c@MacBook-Pro.local.mail>
24002
+ Subject: Confirmation instructions
24003
+ Mime-Version: 1.0
24004
+ Content-Type: text/html;
24005
+ charset=UTF-8
24006
+ Content-Transfer-Encoding: 7bit
24007
+
24008
+ <p>Welcome delpha.kozey@wisoky.name!</p>
24009
+
24010
+ <p>You can confirm your account email through the link below:</p>
24011
+
24012
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=yeqsRwwujiThwPm9TraH&amp;locale=en">Confirm my account</a></p>
24013
+
24014
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a04a')}, "u"=>{"$set"=>{"profile"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a04c'), "name"=>"", "username"=>"John Doe", "firstName"=>"", "lastName"=>""}}}, "multi"=>f...
24015
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000282s
24016
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24017
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000255s
24018
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24019
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000229s
24020
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24021
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00021s
24022
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"kyla@white.info"}, "projection"=>{"_id"=>1}, "limit"=>1}
24023
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000287s
24024
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"cc9574e671a5f3a8f54cc4513fe9f80060824252ef524375e8ba989cad51d762"}, "limit"=>-1}
24025
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000239s
24026
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a04d'), "email"=>"kyla@white.info", "encrypted_password"=>"$2a$04$X5crWxmZZ.S9MI54LMUC3OTMQGupwzfhEgn4z7iMUgwmZ8X/q3Rry", "sign_in_count"=>0, "failed_attempts"=>0, "emails"=...
24027
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000281s
24028
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24029
+
24030
+ Sent mail to kyla@white.info (0.8ms)
24031
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24032
+ To: kyla@white.info
24033
+ Message-ID: <56f2933a366c0_f2303fc86985e1e0719cf@MacBook-Pro.local.mail>
24034
+ Subject: Confirmation instructions
24035
+ Mime-Version: 1.0
24036
+ Content-Type: text/html;
24037
+ charset=UTF-8
24038
+ Content-Transfer-Encoding: 7bit
24039
+
24040
+ <p>Welcome kyla@white.info!</p>
24041
+
24042
+ <p>You can confirm your account email through the link below:</p>
24043
+
24044
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=6wqcnYyLHHS4Fx1qZF2S&amp;locale=en">Confirm my account</a></p>
24045
+
24046
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a04d')}, "u"=>{"$set"=>{"profile"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a04f'), "name"=>"", "username"=>"John Doe", "firstName"=>"", "lastName"=>""}}}, "multi"=>f...
24047
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00028900000000000003s
24048
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24049
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00025299999999999997s
24050
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24051
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000242s
24052
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"deshawn@schroederfahey.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
24053
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00025s
24054
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"61b9dc4334aed5d2d6cda4e33549210fa734adce28a8dc15781b8ae6e55e761b"}, "limit"=>-1}
24055
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000212s
24056
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a050'), "email"=>"deshawn@schroederfahey.io", "encrypted_password"=>"$2a$04$70YzU2lnWLBJD0cUOwZfLOmt3mdAqBA8987zqPZkVUcfUzHEhykc6", "sign_in_count"=>0, "failed_attempts"=>0,...
24057
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000229s
24058
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.2ms)
24059
+
24060
+ Sent mail to deshawn@schroederfahey.io (0.8ms)
24061
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24062
+ To: deshawn@schroederfahey.io
24063
+ Message-ID: <56f2933a38d0a_f2303fc86985e1e0720cc@MacBook-Pro.local.mail>
24064
+ Subject: Confirmation instructions
24065
+ Mime-Version: 1.0
24066
+ Content-Type: text/html;
24067
+ charset=UTF-8
24068
+ Content-Transfer-Encoding: 7bit
24069
+
24070
+ <p>Welcome deshawn@schroederfahey.io!</p>
24071
+
24072
+ <p>You can confirm your account email through the link below:</p>
24073
+
24074
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=YsfCyeqKDA6mX3s6j4q8&amp;locale=en">Confirm my account</a></p>
24075
+
24076
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24077
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000251s
24078
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24079
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00023500000000000002s
24080
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"talon.rowe@gusikowskicartwright.biz"}, "projection"=>{"_id"=>1}, "limit"=>1}
24081
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000257s
24082
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"03cd0a235eba3e3ed20b61fd1bfed94028d007284b562e84ca024a9b5fadd39a"}, "limit"=>-1}
24083
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00020500000000000002s
24084
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a052'), "email"=>"talon.rowe@gusikowskicartwright.biz", "encrypted_password"=>"$2a$04$4vqI8vgyLb01j6cVxFsAh.qOGQkJWEBM62V1zYZ1PIhUj5ZdsbjJ6", "sign_in_count"=>0, "failed_att...
24085
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000255s
24086
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24087
+
24088
+ Sent mail to talon.rowe@gusikowskicartwright.biz (0.8ms)
24089
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24090
+ To: talon.rowe@gusikowskicartwright.biz
24091
+ Message-ID: <56f2933a3acb8_f2303fc86985e1e0721e5@MacBook-Pro.local.mail>
24092
+ Subject: Confirmation instructions
24093
+ Mime-Version: 1.0
24094
+ Content-Type: text/html;
24095
+ charset=UTF-8
24096
+ Content-Transfer-Encoding: 7bit
24097
+
24098
+ <p>Welcome talon.rowe@gusikowskicartwright.biz!</p>
24099
+
24100
+ <p>You can confirm your account email through the link below:</p>
24101
+
24102
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=owxpxtyZxyGuf4PGHoqb&amp;locale=en">Confirm my account</a></p>
24103
+
24104
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a052')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
24105
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00026900000000000003s
24106
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a052')}, "u"=>{"$set"=>{"emails"=>[{:address=>"talon.rowe@gusikowskicartwright.biz", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
24107
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000222s
24108
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24109
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000487s
24110
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24111
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00025s
24112
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24113
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00024s
24114
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"nicola_halvorson@durgan.com"}, "projection"=>{"_id"=>1}, "limit"=>1}
24115
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000234s
24116
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"53a8d99bb7ca6639a2176981493a61c387ee7fa271f7f8757d524a3ea5733210"}, "limit"=>-1}
24117
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000215s
24118
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a054'), "email"=>"nicola_halvorson@durgan.com", "encrypted_password"=>"$2a$04$R8q918vZoXtx50MaFDRuA.E9qAdK.VdnHVyXPaRvieJSUFN/9WtO.", "sign_in_count"=>0, "failed_attempts"=>...
24119
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.00025s
24120
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24121
+
24122
+ Sent mail to nicola_halvorson@durgan.com (0.8ms)
24123
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24124
+ To: nicola_halvorson@durgan.com
24125
+ Message-ID: <56f2933a3d5ce_f2303fc86985e1e072232@MacBook-Pro.local.mail>
24126
+ Subject: Confirmation instructions
24127
+ Mime-Version: 1.0
24128
+ Content-Type: text/html;
24129
+ charset=UTF-8
24130
+ Content-Transfer-Encoding: 7bit
24131
+
24132
+ <p>Welcome nicola_halvorson@durgan.com!</p>
24133
+
24134
+ <p>You can confirm your account email through the link below:</p>
24135
+
24136
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=Stztx1LFMeL3ZbGat85Y&amp;locale=en">Confirm my account</a></p>
24137
+
24138
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a054')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
24139
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000329s
24140
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a054')}, "u"=>{"$set"=>{"emails"=>[{:address=>"nicola_halvorson@durgan.com", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
24141
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000258s
24142
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a054'), "services._id"=>BSON::ObjectId('56f2933aa54d75f23031a055')}, "u"=>{"$set"=>{"services.password"=>{:bcrypt=>"$2a$04$qlTBnRyjb1buJdgOyHOASOEZy3RCoOU9dotAFvlHMNbcLW...
24143
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000279s
24144
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a054')}, "u"=>{"$set"=>{"encrypted_password"=>"$2a$04$qlTBnRyjb1buJdgOyHOASOEZy3RCoOU9dotAFvlHMNbcLWT5AJGo2", "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "u...
24145
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00022s
24146
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24147
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00028199999999999997s
24148
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24149
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00021999999999999998s
24150
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24151
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000229s
24152
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"francisco@pouros.net"}, "projection"=>{"_id"=>1}, "limit"=>1}
24153
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000235s
24154
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"e2739f335b0d80cfa10476492b2ba777b939db74d03ac5fa9b80e22c37f96014"}, "limit"=>-1}
24155
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000219s
24156
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a056'), "email"=>"francisco@pouros.net", "encrypted_password"=>"$2a$04$Y80QBoACVPcmWB85Ma.z/uLzfDGwP1c1zu0BGRGzK.756DOmcNjYi", "sign_in_count"=>0, "failed_attempts"=>0, "ema...
24157
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.00028500000000000004s
24158
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24159
+
24160
+ Sent mail to francisco@pouros.net (0.9ms)
24161
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24162
+ To: francisco@pouros.net
24163
+ Message-ID: <56f2933a40b59_f2303fc86985e1e07233b@MacBook-Pro.local.mail>
24164
+ Subject: Confirmation instructions
24165
+ Mime-Version: 1.0
24166
+ Content-Type: text/html;
24167
+ charset=UTF-8
24168
+ Content-Transfer-Encoding: 7bit
24169
+
24170
+ <p>Welcome francisco@pouros.net!</p>
24171
+
24172
+ <p>You can confirm your account email through the link below:</p>
24173
+
24174
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=Uk9QFKWqYh8ivXytK2px&amp;locale=en">Confirm my account</a></p>
24175
+
24176
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a056')}, "u"=>{"$set"=>{"confirmed_at"=>2016-03-23 12:59:38 UTC, "updated_at"=>2016-03-23 12:59:38 UTC}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
24177
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000446s
24178
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a056')}, "u"=>{"$set"=>{"emails"=>[{:address=>"francisco@pouros.net", :verified=>true}]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
24179
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000286s
24180
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24181
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00027800000000000004s
24182
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24183
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000228s
24184
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"lorenz@mitchell.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
24185
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00023700000000000001s
24186
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"69294c8acd1bd5fe7f3116d59e65a0e99a2ca417c9f53ff2857feeb1230ca787"}, "limit"=>-1}
24187
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000206s
24188
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a058'), "email"=>"lorenz@mitchell.io", "encrypted_password"=>"$2a$04$sUuaYlKTR0egICUJhLrM1.rlXXtxMrgQtUYv3Yn0xsak8Ce93KHD6", "sign_in_count"=>0, "failed_attempts"=>0, "email...
24189
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000224s
24190
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24191
+
24192
+ Sent mail to lorenz@mitchell.io (0.8ms)
24193
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24194
+ To: lorenz@mitchell.io
24195
+ Message-ID: <56f2933a434bf_f2303fc86985e1e072422@MacBook-Pro.local.mail>
24196
+ Subject: Confirmation instructions
24197
+ Mime-Version: 1.0
24198
+ Content-Type: text/html;
24199
+ charset=UTF-8
24200
+ Content-Transfer-Encoding: 7bit
24201
+
24202
+ <p>Welcome lorenz@mitchell.io!</p>
24203
+
24204
+ <p>You can confirm your account email through the link below:</p>
24205
+
24206
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=mrEvGsFsYXQRy4qCXp6m&amp;locale=en">Confirm my account</a></p>
24207
+
24208
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a058'), "services._id"=>BSON::ObjectId('56f2933aa54d75f23031a059')}, "u"=>{"$set"=>{"services.facebook"=>{"id"=>"709050", "accessToken"=>"S0M3_R34LLY-CMPLX-T0K3N"}}}, "m...
24209
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000308s
24210
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24211
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000284s
24212
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24213
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000213s
24214
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24215
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00019899999999999999s
24216
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24217
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.00023700000000000001s
24218
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"maegan.mante@willlueilwitz.net"}, "projection"=>{"_id"=>1}, "limit"=>1}
24219
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000209s
24220
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"b176fccebb32ae6d6a013a97c39e297280520682dff86032042a66e437d7f9ec"}, "limit"=>-1}
24221
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00019500000000000002s
24222
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a05a'), "email"=>"maegan.mante@willlueilwitz.net", "encrypted_password"=>"$2a$04$ul1iVNzKRAlD353zMSKw5ucqP20gHsuNJ2fYIMSl9MevXc9CB95m2", "sign_in_count"=>0, "failed_attempts...
24223
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000228s
24224
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24225
+
24226
+ Sent mail to maegan.mante@willlueilwitz.net (0.9ms)
24227
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24228
+ To: maegan.mante@willlueilwitz.net
24229
+ Message-ID: <56f2933a46171_f2303fc86985e1e0725b7@MacBook-Pro.local.mail>
24230
+ Subject: Confirmation instructions
24231
+ Mime-Version: 1.0
24232
+ Content-Type: text/html;
24233
+ charset=UTF-8
24234
+ Content-Transfer-Encoding: 7bit
24235
+
24236
+ <p>Welcome maegan.mante@willlueilwitz.net!</p>
24237
+
24238
+ <p>You can confirm your account email through the link below:</p>
24239
+
24240
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=WsTBjsXtFgyrpCCK6xgi&amp;locale=en">Confirm my account</a></p>
24241
+
24242
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a05a'), "services._id"=>BSON::ObjectId('56f2933aa54d75f23031a05b')}, "u"=>{"$set"=>{"services.facebook"=>{"id"=>"709050", "accessToken"=>"S0M3_R34LLY-CMPLX-T0K3N"}}}, "m...
24243
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00035099999999999997s
24244
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24245
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000277s
24246
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24247
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000285s
24248
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24249
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000246s
24250
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24251
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000305s
24252
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"email"=>"abigail@bogisich.io"}, "projection"=>{"_id"=>1}, "limit"=>1}
24253
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000251s
24254
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{"confirmation_token"=>"29762114a977a71de467ca46e46d9f0386a70a167a2615add4e29b488ca0d71a"}, "limit"=>-1}
24255
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00020999999999999998s
24256
+ MONGODB | localhost:27017 | devise_meteor_test.insert | STARTED | {"insert"=>"users", "documents"=>[{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a05c'), "email"=>"abigail@bogisich.io", "encrypted_password"=>"$2a$04$KGOeKO2uzAXnB74va8/vRO9B4o.E7ZYIAvLW9BoO1Ki2BmlsEOpoy", "sign_in_count"=>0, "failed_attempts"=>0, "emai...
24257
+ MONGODB | localhost:27017 | devise_meteor_test.insert | SUCCEEDED | 0.000249s
24258
+ Rendered /Users/jan/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/devise-3.5.6/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
24259
+
24260
+ Sent mail to abigail@bogisich.io (0.8ms)
24261
+ Date: Wed, 23 Mar 2016 13:59:38 +0100
24262
+ To: abigail@bogisich.io
24263
+ Message-ID: <56f2933a48aeb_f2303fc86985e1e0726d@MacBook-Pro.local.mail>
24264
+ Subject: Confirmation instructions
24265
+ Mime-Version: 1.0
24266
+ Content-Type: text/html;
24267
+ charset=UTF-8
24268
+ Content-Transfer-Encoding: 7bit
24269
+
24270
+ <p>Welcome abigail@bogisich.io!</p>
24271
+
24272
+ <p>You can confirm your account email through the link below:</p>
24273
+
24274
+ <p><a href="http://localhost:3000/users/confirmation?confirmation_token=bFVbrqYD4Ty_xpDHEoZT&amp;locale=en">Confirm my account</a></p>
24275
+
24276
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a05c'), "services._id"=>BSON::ObjectId('56f2933aa54d75f23031a05d')}, "u"=>{"$set"=>{"services.facebook"=>{"id"=>"709050", "accessToken"=>"S0M3_R34LLY-CMPLX-T0K3N"}}}, "m...
24277
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.000317s
24278
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24279
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000247s
24280
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24281
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00023999999999999998s
24282
+ MONGODB | localhost:27017 | devise_meteor_test.update | STARTED | {"update"=>"users", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('56f2933aa54d75f23031a05c'), "services._id"=>BSON::ObjectId('56f2933aa54d75f23031a05d')}, "u"=>{"$set"=>{"services.facebook"=>{"id"=>"12345678", "accessToken"=>"New_Access_token"}}}, "multi"...
24283
+ MONGODB | localhost:27017 | devise_meteor_test.update | SUCCEEDED | 0.00031999999999999997s
24284
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24285
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000259s
24286
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"users", "filter"=>{}, "limit"=>-1}
24287
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.00028900000000000003s
24288
+ MONGODB | localhost:27017 | devise_meteor_test.find | STARTED | {"find"=>"system.namespaces", "filter"=>{"name"=>{"$not"=>/\.system\.|\$/}}}
24289
+ MONGODB | localhost:27017 | devise_meteor_test.find | SUCCEEDED | 0.000257s
24290
+ MONGODB | localhost:27017 | devise_meteor_test.delete | STARTED | {"delete"=>"users", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
24291
+ MONGODB | localhost:27017 | devise_meteor_test.delete | SUCCEEDED | 0.000224s
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_meteor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Jezek
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-22 00:00:00.000000000 Z
11
+ date: 2016-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -184,8 +184,8 @@ dependencies:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
186
  version: 1.1.4
187
- description: This app closes the gap between the huge world of ruby and devise_meteor.
188
- Simply install, configure and use it to connect to the desired devise_meteor server.
187
+ description: This app closes the gap between the huge world of ruby and meteor through
188
+ devise. Simply install, configure and use it to connect to your desired meteor server.
189
189
  email:
190
190
  - mail@mediatainment-productions.com
191
191
  executables: []