facebook-bot 0.1.1 → 0.1.2
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/README.md +10 -2
- data/facebook-bot.gemspec +2 -2
- data/lib/facebook/bot/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0fccc446a1c6abbdd302836cc3760dd65623cd5
|
4
|
+
data.tar.gz: 39742d5c8ab16469a22123bc003fd6320f25acd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2922c3ae0e4c413e3e0e950a0ceb68ece9c4ee0434355a57ac11c80929e5cea7ba19e7c572ec2084f682d97e0914b45a70f817172af660fc5775374540fdbc66
|
7
|
+
data.tar.gz: b0a9e976d6fbcf48121f34800480b2916da55e576d13427c788c6d5ae06268623704cfb4e5ce532d44039e8762a26bffe8b332c1a6d958af599295a6d50dd6d3
|
data/README.md
CHANGED
@@ -7,8 +7,10 @@ Very easy Ruby on Rails client!! for [Facebook Messenger Platform](https://devel
|
|
7
7
|
Requires Rails >= 4.2.0
|
8
8
|
|
9
9
|
##Installation
|
10
|
-
|
11
|
-
|
10
|
+
|
11
|
+
Bundler in your Gemfile.
|
12
|
+
|
13
|
+
gem 'facebook-bot'
|
12
14
|
|
13
15
|
##Quickstart
|
14
16
|
|
@@ -18,6 +20,12 @@ Requires Rails >= 4.2.0
|
|
18
20
|
config.access_token = <ACCESS_TOKEN>
|
19
21
|
config.validation_token = <VERIFY_TOKEN>
|
20
22
|
end
|
23
|
+
|
24
|
+
#config/routes.rb
|
25
|
+
|
26
|
+
mount Facebook::Bot::Space => "/webhook"
|
27
|
+
|
28
|
+
|
21
29
|
##Example
|
22
30
|
|
23
31
|
[Example](https://github.com/jun85664396/facebook-bot/blob/master/example/facebook_bot.rb)
|
data/facebook-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{
|
13
|
-
spec.description = %q{
|
12
|
+
spec.summary = %q{Very easy Ruby on Rails Client for the Facebook Messenger Platform[bot]}
|
13
|
+
spec.description = %q{Very easy Ruby on Rails Client for the Facebook Messenger Platform[bot]}
|
14
14
|
spec.homepage = "https://github.com/jun85664396/facebook-bot"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
data/lib/facebook/bot/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facebook-bot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JunSangPil
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description:
|
55
|
+
description: Very easy Ruby on Rails Client for the Facebook Messenger Platform[bot]
|
56
56
|
email:
|
57
57
|
- jun85664396@gmail.com
|
58
58
|
executables: []
|
@@ -101,5 +101,5 @@ rubyforge_project:
|
|
101
101
|
rubygems_version: 2.4.6
|
102
102
|
signing_key:
|
103
103
|
specification_version: 4
|
104
|
-
summary:
|
104
|
+
summary: Very easy Ruby on Rails Client for the Facebook Messenger Platform[bot]
|
105
105
|
test_files: []
|