bot 0.0.23 → 0.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/bot/bot_controller.rb +1 -1
- data/lib/bot/adapters/base.rb +6 -4
- data/lib/bot/adapters/kik.rb +25 -5
- data/lib/bot/adapters/test.rb +1 -1
- data/lib/bot/version.rb +1 -1
- data/lib/tasks/bot_builder_tasks.rake +6 -3
- data/test/dummy/log/test.log +172 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8a7f2d7d490fb9cbe15964fada2a76ae89d6413
|
4
|
+
data.tar.gz: 378726e279dcec7929bbd070af2ad36a7114e4a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62de4860542e8b99017b65b9269b05614627ede2d310ef5293d6faf5b48c4774055cd079bd6081bc6e3b9cb345b7b40aefd8aee9979a80f14435cad58f28830e
|
7
|
+
data.tar.gz: 86d29f627b43ac29904a3a0934d0d31e6c25f808e483ce7f1b01caeb5ae790c5bf61c60b1691dade119a9275a0e815619136afe78f437aced86ed1ba0c833c9f
|
@@ -2,7 +2,7 @@ class Bot::BotController < ActionController::Base
|
|
2
2
|
def notify
|
3
3
|
@responses = bot_handler.handle(messages).compact
|
4
4
|
|
5
|
-
adapter.send_messages(@responses) if @responses.present?
|
5
|
+
adapter.send_messages(@responses, params[:bot_username]) if @responses.present?
|
6
6
|
|
7
7
|
render json: []
|
8
8
|
end
|
data/lib/bot/adapters/base.rb
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
module Bot
|
2
2
|
module Adapter
|
3
3
|
class Base
|
4
|
-
|
4
|
+
def initialize(config={}, &block)
|
5
|
+
@config = lambda { |u| config.merge(block ? block.call(u) : {}) }
|
6
|
+
end
|
5
7
|
|
6
|
-
def
|
7
|
-
@config
|
8
|
+
def config(username=nil)
|
9
|
+
@config.call(username)
|
8
10
|
end
|
9
11
|
|
10
|
-
def send_messages(messages)
|
12
|
+
def send_messages(messages, from)
|
11
13
|
raise NotImplementedError
|
12
14
|
end
|
13
15
|
end
|
data/lib/bot/adapters/kik.rb
CHANGED
@@ -4,18 +4,19 @@ module Bot
|
|
4
4
|
module Adapter
|
5
5
|
class Kik < Base
|
6
6
|
|
7
|
-
AUTH_URL = "https://auth.kik.com/verification/v1/check"
|
8
|
-
MESSAGING_URL = "https://engine.apikik.com/api/v1/message"
|
7
|
+
AUTH_URL = "https://auth.kik.com/verification/v1/check".freeze
|
8
|
+
MESSAGING_URL = "https://engine.apikik.com/api/v1/message".freeze
|
9
|
+
PROFILE_URL = 'https://api.kik.com/v1/user'.freeze
|
9
10
|
|
10
|
-
def send_messages(messages)
|
11
|
+
def send_messages(messages, from)
|
11
12
|
Rails.logger.error "\n\n\nSending:\n"
|
12
13
|
Rails.logger.error messages.to_json
|
13
14
|
Rails.logger.error "\n\n\n"
|
14
15
|
|
15
16
|
RestClient::Request.execute({
|
16
17
|
method: :post,
|
17
|
-
user: config[:bot_user],
|
18
|
-
password: config[:bot_token],
|
18
|
+
user: config(from)[:bot_user],
|
19
|
+
password: config(from)[:bot_token],
|
19
20
|
url: MESSAGING_URL,
|
20
21
|
payload: { messages: messages }.to_json,
|
21
22
|
headers: { content_type: :json }
|
@@ -26,6 +27,25 @@ module Bot
|
|
26
27
|
Rails.logger.error "\n\n\n"
|
27
28
|
raise e
|
28
29
|
end
|
30
|
+
|
31
|
+
def get_profile_image(username, as_user)
|
32
|
+
profile = get_profile(username, as_user)
|
33
|
+
profile['profilePicUrl'] || ''
|
34
|
+
end
|
35
|
+
|
36
|
+
protected
|
37
|
+
|
38
|
+
def get_profile(username, from)
|
39
|
+
response = RestClient::Request.execute(
|
40
|
+
method: :get,
|
41
|
+
url: "#{PROFILE_URL}/#{username}",
|
42
|
+
user: config(from)[:bot_user],
|
43
|
+
password: config(from)[:bot_token],
|
44
|
+
headers: { content_type: :json }
|
45
|
+
)
|
46
|
+
|
47
|
+
JSON.parse(response)
|
48
|
+
end
|
29
49
|
end
|
30
50
|
end
|
31
51
|
end
|
data/lib/bot/adapters/test.rb
CHANGED
data/lib/bot/version.rb
CHANGED
@@ -4,13 +4,16 @@ namespace :bot do
|
|
4
4
|
namespace :kik do
|
5
5
|
|
6
6
|
desc "Update a bot config"
|
7
|
-
task :configure
|
7
|
+
task :configure do
|
8
8
|
uri = URI.parse("https://api.kik.com/v1/config")
|
9
9
|
|
10
|
+
bot_user = ENV['KIK_BOT_USER']
|
11
|
+
bot_token = ENV['KIK_TOKEN']
|
12
|
+
|
10
13
|
request = Net::HTTP::Post.new(uri.request_uri, initheader = { "Content-Type" => "application/json" })
|
11
|
-
request.basic_auth
|
14
|
+
request.basic_auth bot_user, bot_token
|
12
15
|
request.body = {
|
13
|
-
webhook: "#{ENV['CALLBACK_URL']}",
|
16
|
+
webhook: "#{ENV['CALLBACK_URL']}?bot_username=#{bot_user}",
|
14
17
|
features: {
|
15
18
|
manuallySendReadReceipts: false,
|
16
19
|
receiveReadReceipts: false,
|
data/test/dummy/log/test.log
CHANGED
@@ -2648,3 +2648,175 @@ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
|
2648
2648
|
BotTest: test_truth
|
2649
2649
|
-------------------
|
2650
2650
|
[1m[35m (0.1ms)[0m rollback transaction
|
2651
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2652
|
+
[1m[36m (5.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2653
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2654
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2655
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
2656
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2657
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2658
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2659
|
+
-------------------
|
2660
|
+
BotTest: test_truth
|
2661
|
+
-------------------
|
2662
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2663
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2664
|
+
---------------------------
|
2665
|
+
NavigationTest: test_notify
|
2666
|
+
---------------------------
|
2667
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:07:44 -0400
|
2668
|
+
Processing by Bot::BotController#notify as HTML
|
2669
|
+
Parameters: {"bot"=>ApplicationHandler}
|
2670
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2671
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:07:44 -0400
|
2672
|
+
Processing by Bot::BotController#notify as HTML
|
2673
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2674
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2675
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2676
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2677
|
+
-----------------------------------------
|
2678
|
+
NavigationTest: test_notify_special_types
|
2679
|
+
-----------------------------------------
|
2680
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:07:44 -0400
|
2681
|
+
Processing by Bot::BotController#notify as HTML
|
2682
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2683
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2684
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2685
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2686
|
+
---------------------------------------
|
2687
|
+
NavigationTest: test_notify_multi_types
|
2688
|
+
---------------------------------------
|
2689
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:07:44 -0400
|
2690
|
+
Processing by Bot::BotController#notify as HTML
|
2691
|
+
Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2692
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2693
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2694
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2695
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2696
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2697
|
+
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2698
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
2699
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2700
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2701
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2702
|
+
---------------------------
|
2703
|
+
NavigationTest: test_notify
|
2704
|
+
---------------------------
|
2705
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:08:02 -0400
|
2706
|
+
Processing by Bot::BotController#notify as HTML
|
2707
|
+
Parameters: {"bot"=>ApplicationHandler}
|
2708
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2709
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:08:02 -0400
|
2710
|
+
Processing by Bot::BotController#notify as HTML
|
2711
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2712
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2713
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2714
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2715
|
+
---------------------------------------
|
2716
|
+
NavigationTest: test_notify_multi_types
|
2717
|
+
---------------------------------------
|
2718
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:08:02 -0400
|
2719
|
+
Processing by Bot::BotController#notify as HTML
|
2720
|
+
Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2721
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2722
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2723
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2724
|
+
-----------------------------------------
|
2725
|
+
NavigationTest: test_notify_special_types
|
2726
|
+
-----------------------------------------
|
2727
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-13 15:08:02 -0400
|
2728
|
+
Processing by Bot::BotController#notify as HTML
|
2729
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2730
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2731
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2732
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2733
|
+
-------------------
|
2734
|
+
BotTest: test_truth
|
2735
|
+
-------------------
|
2736
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2737
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2738
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2739
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2740
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2741
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2742
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2743
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2745
|
+
---------------------------------------
|
2746
|
+
NavigationTest: test_notify_multi_types
|
2747
|
+
---------------------------------------
|
2748
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-17 11:38:44 -0400
|
2749
|
+
Processing by Bot::BotController#notify as HTML
|
2750
|
+
Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2751
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2752
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2753
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2754
|
+
---------------------------
|
2755
|
+
NavigationTest: test_notify
|
2756
|
+
---------------------------
|
2757
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-17 11:38:44 -0400
|
2758
|
+
Processing by Bot::BotController#notify as HTML
|
2759
|
+
Parameters: {"bot"=>ApplicationHandler}
|
2760
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2761
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-17 11:38:44 -0400
|
2762
|
+
Processing by Bot::BotController#notify as HTML
|
2763
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2764
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2765
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2766
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2767
|
+
-----------------------------------------
|
2768
|
+
NavigationTest: test_notify_special_types
|
2769
|
+
-----------------------------------------
|
2770
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-17 11:38:44 -0400
|
2771
|
+
Processing by Bot::BotController#notify as HTML
|
2772
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2773
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2774
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2775
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2776
|
+
-------------------
|
2777
|
+
BotTest: test_truth
|
2778
|
+
-------------------
|
2779
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2780
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2781
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2782
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2783
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2784
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2785
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2786
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2787
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2788
|
+
-------------------
|
2789
|
+
BotTest: test_truth
|
2790
|
+
-------------------
|
2791
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2792
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2793
|
+
-----------------------------------------
|
2794
|
+
NavigationTest: test_notify_special_types
|
2795
|
+
-----------------------------------------
|
2796
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-18 16:40:23 -0400
|
2797
|
+
Processing by Bot::BotController#notify as HTML
|
2798
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2799
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2800
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2801
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2802
|
+
---------------------------
|
2803
|
+
NavigationTest: test_notify
|
2804
|
+
---------------------------
|
2805
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-18 16:40:23 -0400
|
2806
|
+
Processing by Bot::BotController#notify as HTML
|
2807
|
+
Parameters: {"bot"=>ApplicationHandler}
|
2808
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2809
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-18 16:40:23 -0400
|
2810
|
+
Processing by Bot::BotController#notify as HTML
|
2811
|
+
Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2812
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
2813
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2815
|
+
---------------------------------------
|
2816
|
+
NavigationTest: test_notify_multi_types
|
2817
|
+
---------------------------------------
|
2818
|
+
Started POST "/bot/notify" for 127.0.0.1 at 2016-04-18 16:40:23 -0400
|
2819
|
+
Processing by Bot::BotController#notify as HTML
|
2820
|
+
Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
|
2821
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2822
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Morris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|