messenger-bot 0.1.5 → 0.1.6
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/Gemfile +0 -2
- data/README.md +5 -5
- data/bin/console +1 -1
- data/lib/messenger/bot/version.rb +1 -1
- data/messenger-bot.gemspec +2 -2
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12819752ff7e4128157a48aaa8c41ee6bc2e153a
|
4
|
+
data.tar.gz: ef7b9d2b2212c79a6324e0a9322c345ce4231e9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e38025d71e842936da135171b9c26b7898d16f8c46d2d984423e2f99125883a34c855756555a697d433d659d3bfea4738dd064dd7cfb86bcf834b82c3b3f323
|
7
|
+
data.tar.gz: b770ae35527d61dba1e62e1b7430af23f05146b81cb0a1c9aa1d27a19df4bbd70e83e1626b88c30ada0a54a7e3d02a5fbe0c84e95d3dcba5344c7afe23fa1f32
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
2
|
-
[](https://travis-ci.org/jun85664396/messenger-bot)
|
3
|
+
[](https://badge.fury.io/rb/messenger-bot)
|
4
4
|
|
5
5
|
Ruby on Rails client!! for [Facebook Messenger Platform](https://developers.facebook.com/docs/messenger-platform)
|
6
6
|
|
@@ -14,7 +14,7 @@ Bundler in your Gemfile.
|
|
14
14
|
|
15
15
|
##Quickstart
|
16
16
|
|
17
|
-
#config/initializers/
|
17
|
+
#config/initializers/messenger_bot.rb
|
18
18
|
|
19
19
|
Messenger::Bot.config do |config|
|
20
20
|
config.access_token = <ACCESS_TOKEN>
|
@@ -28,7 +28,7 @@ Bundler in your Gemfile.
|
|
28
28
|
|
29
29
|
##Example
|
30
30
|
|
31
|
-
[Example](https://github.com/jun85664396/
|
31
|
+
[Example](https://github.com/jun85664396/messenger-bot/blob/master/example/messenger_bot_controller.rb)
|
32
32
|
|
33
33
|
# app/controllers/application_controller.rb
|
34
34
|
|
data/bin/console
CHANGED
data/messenger-bot.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["JunSangPil"]
|
10
10
|
spec.email = ["jun85664396@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{Ruby on Rails
|
13
|
-
spec.description = %q{Ruby on Rails
|
12
|
+
spec.summary = %q{Ruby on Rails Gem for the Facebook Messenger Platform Formerly known as 'facebook-bot'.}
|
13
|
+
spec.description = %q{Ruby on Rails Gem for the Facebook Messenger Platform}
|
14
14
|
spec.homepage = "https://github.com/jun85664396/messenger-bot-rails"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: messenger-bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JunSangPil
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description: Ruby on Rails
|
55
|
+
description: Ruby on Rails Gem for the Facebook Messenger Platform
|
56
56
|
email:
|
57
57
|
- jun85664396@gmail.com
|
58
58
|
executables: []
|
@@ -101,6 +101,5 @@ rubyforge_project:
|
|
101
101
|
rubygems_version: 2.4.6
|
102
102
|
signing_key:
|
103
103
|
specification_version: 4
|
104
|
-
summary: Ruby on Rails
|
105
|
-
as 'facebook-bot'.
|
104
|
+
summary: Ruby on Rails Gem for the Facebook Messenger Platform Formerly known as 'facebook-bot'.
|
106
105
|
test_files: []
|