bot 0.0.39 → 0.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 951e4e152862eee4b853af458c49cee8f475b47b
4
- data.tar.gz: 6bce5bdbfac1ff26fbff658ccd3c3d510a463786
3
+ metadata.gz: c3ac74463854f7b4b261662bc96e0e4fa658c1f3
4
+ data.tar.gz: 1d490721e225dbff9c62f38e48a5fd57408a8d22
5
5
  SHA512:
6
- metadata.gz: 162074b4e8b28f632f39c886c1cd38fcc7865fb2b0c7a505335535307ff780732086e9d867b55b4eede1ee373bcc7d68533cc4b30483add087f4e96a18e06494
7
- data.tar.gz: 3fdc9cde3617f0dcc512aa6216381c982061bb326f1caf198e77dc6eeb4590c473dad0ac0837fbadbb9549d7338d4b7ab8b2553c27d6dcca05f35b526ba9401c
6
+ metadata.gz: 849aebab148783569492d8bd04edfbb0942e280e01e3160f8c0c61f9df8fee1f6034d93533b5d6cf4e3dc5c25bbb89cdf1b772e2b5f22617af06d3a0a4e9d324
7
+ data.tar.gz: af25fe5ba1c1d8c63f339fa74dbda15c256b819859594c68851488dd001b3f46006148a1d4f477c8c584413708e1d871838a5b017d40cf4f55b05c4a44a92644
@@ -22,7 +22,6 @@ module Bot
22
22
  headers: { content_type: :json }
23
23
  })
24
24
  rescue Exception => e
25
- binding.pry
26
25
  Rails.logger.error "\n\n\nError:\n"
27
26
  Rails.logger.error e.response
28
27
  Rails.logger.error "\n\n\n"
@@ -1,3 +1,3 @@
1
1
  module Bot
2
- VERSION = "0.0.39"
2
+ VERSION = "0.0.40"
3
3
  end
@@ -3422,3 +3422,46 @@ Processing by Bot::BotController#notify as HTML
3422
3422
  Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3423
3423
  Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3424
3424
   (0.1ms) rollback transaction
3425
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3426
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
3427
+  (0.1ms) select sqlite_version(*)
3428
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3429
+  (0.1ms) SELECT version FROM "schema_migrations"
3430
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3431
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3432
+  (0.1ms) begin transaction
3433
+ -------------------
3434
+ BotTest: test_truth
3435
+ -------------------
3436
+  (0.1ms) rollback transaction
3437
+  (0.0ms) begin transaction
3438
+ ---------------------------------------
3439
+ NavigationTest: test_notify_multi_types
3440
+ ---------------------------------------
3441
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-05-03 17:27:28 -0400
3442
+ Processing by Bot::BotController#notify as HTML
3443
+ Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3444
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3445
+  (0.1ms) rollback transaction
3446
+  (0.1ms) begin transaction
3447
+ -----------------------------------------
3448
+ NavigationTest: test_notify_special_types
3449
+ -----------------------------------------
3450
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-05-03 17:27:28 -0400
3451
+ Processing by Bot::BotController#notify as HTML
3452
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3453
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3454
+  (0.1ms) rollback transaction
3455
+  (0.1ms) begin transaction
3456
+ ---------------------------
3457
+ NavigationTest: test_notify
3458
+ ---------------------------
3459
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-05-03 17:27:28 -0400
3460
+ Processing by Bot::BotController#notify as HTML
3461
+ Parameters: {"bot"=>ApplicationHandler}
3462
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3463
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-05-03 17:27:28 -0400
3464
+ Processing by Bot::BotController#notify as HTML
3465
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3466
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3467
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.39
4
+ version: 0.0.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Morris