bot 0.0.32 → 0.0.33

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: d604c8040f3511c15a681545741d76bcd89958fc
4
- data.tar.gz: f98aa6719d9b1118f4e4378011832ce562371675
3
+ metadata.gz: 987b7c14749e3ca994af388c8d930677f42fc746
4
+ data.tar.gz: f8c1a9e04047740a33a907f85d0131c62c142b58
5
5
  SHA512:
6
- metadata.gz: 9fa7b7279b2ea537eb85b96208a748a26738ac3aeb4cf8b2b0cd916bd7f78c41041d85edbc38f5a4cb5dc2a3b5a0c9abb5c6361910ea60e1a433dccb353a008f
7
- data.tar.gz: feeb8ae8435d399b9602406ba4a1587c4b2f26e14dba7cb88cb5907448b6f9521d07a7d3acdf082e3da3abde2fc1013b552ff7aa7a50e1342c366e620fa34d86
6
+ metadata.gz: f290041e9223312cfe9184a3b3b9be9e2116b68f0fc5ed7e4adc3b3feeeae353125288f094ddf1ae3880fb72cf42e54f9820b468af4f73bc437ca86cb57b1088
7
+ data.tar.gz: aa22748af75fdb8f97c71771f4158d880be0b977dd8d8eb4deffe538f7040d016dc6add1fb13156698efaae99a875de6513f35b9d6e023cb80ede76f024a387f
@@ -1,3 +1,3 @@
1
1
  module Bot
2
- VERSION = "0.0.32"
2
+ VERSION = "0.0.33"
3
3
  end
@@ -6,7 +6,7 @@ module Bot
6
6
  def create_responder
7
7
  create_file "app/bot/responders/#{file_name}.rb", <<-FILE
8
8
  module Responders
9
- #{class_name} < ApplicationResponder
9
+ class #{class_name} < ApplicationResponder
10
10
  #
11
11
  # def can_handle?
12
12
  # true
@@ -3121,3 +3121,46 @@ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3121
3121
  BotTest: test_truth
3122
3122
  -------------------
3123
3123
   (0.1ms) rollback transaction
3124
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3125
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
3126
+  (0.1ms) select sqlite_version(*)
3127
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3128
+  (0.1ms) SELECT version FROM "schema_migrations"
3129
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
3130
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3131
+  (0.1ms) begin transaction
3132
+ -----------------------------------------
3133
+ NavigationTest: test_notify_special_types
3134
+ -----------------------------------------
3135
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-04-28 16:31:40 -0400
3136
+ Processing by Bot::BotController#notify as HTML
3137
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3138
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3139
+  (0.1ms) rollback transaction
3140
+  (0.1ms) begin transaction
3141
+ ---------------------------
3142
+ NavigationTest: test_notify
3143
+ ---------------------------
3144
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-04-28 16:31:40 -0400
3145
+ Processing by Bot::BotController#notify as HTML
3146
+ Parameters: {"bot"=>ApplicationHandler}
3147
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3148
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-04-28 16:31:40 -0400
3149
+ Processing by Bot::BotController#notify as HTML
3150
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3151
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3152
+  (0.0ms) rollback transaction
3153
+  (0.0ms) begin transaction
3154
+ ---------------------------------------
3155
+ NavigationTest: test_notify_multi_types
3156
+ ---------------------------------------
3157
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-04-28 16:31:40 -0400
3158
+ Processing by Bot::BotController#notify as HTML
3159
+ Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
3160
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3161
+  (0.1ms) rollback transaction
3162
+  (0.0ms) begin transaction
3163
+ -------------------
3164
+ BotTest: test_truth
3165
+ -------------------
3166
+  (0.0ms) 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.32
4
+ version: 0.0.33
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Morris