ruboty-gekiron 0.0.3 → 0.0.4
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/.travis.yml +7 -0
- data/README.md +6 -1
- data/Rakefile +4 -0
- data/{examples → example}/config/topics.yml +0 -0
- data/lib/ruboty/gekiron/version.rb +1 -1
- data/lib/ruboty/handlers/gekiron.rb +2 -1
- data/ruboty-gekiron.gemspec +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b347ef46c862be7b4b6f851253809f4d0734d1d9
|
4
|
+
data.tar.gz: 8a503ed33e9333abc53b5b70d16b652f3e6f50bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2aff050e48c40eac9838d806d5ec4ef4de0682109fe1cb5174db3d24bcd33b5486cc2ff50abea651a0cf3a31d0ec909c93cb6a8771b5adb4784ad657e86305f1
|
7
|
+
data.tar.gz: adcd9dd9339f34884cf93223150718d42919b7e486371dd5ed1cb70b726bee18c70a32c4dcdcea620ff15f9f4aef0fb61fdcb1b3dcdf09e474a75a6d24395b3f
|
data/.travis.yml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.4.1
|
4
|
+
notifications:
|
5
|
+
email: false
|
6
|
+
slack:
|
7
|
+
secure: f80MtoGKneJKMwlbje7NZujBJQ7K+S67sxQFYFZGLeVxBf9GErtfx0aPJFUrfXLVAV23r7+3CTJFL45zqiVO0g5QBpwuFUqJ2VdJBlAIcIKVfbPmCWOmcXVbG7jnFqY7sZ7NUlpRzfnhXv0rMWypOdQKjblgBGHDf8faB4Wwo0xbxi5jlxzzO52imsqzqftcSgIy7qQJ2ou8tUM5Su/fv6LDYKIkJxxcYPbRiWDdLSWWR3Bia/I8f9+7KhHPgGhaYLGngWena7G8yPD99XQjZ4wisBPmGmB47PnIrdJXAn0F7ZahQdTs17i5xQ33r/K6LeAn6zoEF/7NpauylhHi09SDtoahbfgKVFk6UHwBToZuikJlJAwMwdTenL16W7YoyjfcGyvOwYH4bJohbEU9/CDgonGcuiiJ3YLryns8ZvsOZog3bl8B8phclZOnCv9jQ75qhY2QxJOh4qT1PomuAL1xbCy7/BJV6X73WeN8ftnpGzMb+DmAWDJ/+3fnlWiOlgEHq9qF60lVPENudHDTtB7CSYy+2XfY+tNe5ryh4Hw66vOMesfzAWBwFbLpOtX629u+O9KBkXuA1obibEj0NqUhSUBZtp1MnOwrzYKcHXJmIMnuae2thN8m8Q04hqNqfcB+ela2crCZ9gvTs5Bfx17EFCz7s2Q5hSexaZwZH5w=
|
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
# Ruboty::Gekiron
|
1
|
+
# Ruboty::Gekiron (激論)
|
2
|
+
|
3
|
+
[](https://travis-ci.org/rhythnn/ruboty-gekiron)
|
2
4
|
|
3
5
|
Roboty handler to generate conversation topic.
|
4
6
|
|
@@ -34,6 +36,9 @@ Then, create topics yaml file `./config/topics.yml` in your bot code repository
|
|
34
36
|
## Usage
|
35
37
|
|
36
38
|
```
|
39
|
+
@ruboty help
|
40
|
+
ruboty /topic|gekiron|激論/ - 激論しそうな話題を返します
|
41
|
+
|
37
42
|
@ruboty gekiron
|
38
43
|
「ふ」から始まる、テンションが上がるものは?
|
39
44
|
```
|
data/Rakefile
CHANGED
File without changes
|
data/ruboty-gekiron.gemspec
CHANGED
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["sfprhythnn@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = "Ruboty handler to generate conversation topic"
|
13
|
+
spec.homepage = "https://github.com/rhythnn/ruboty-gekiron"
|
13
14
|
spec.license = "MIT"
|
14
15
|
|
15
16
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruboty-gekiron
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takuma Homma
|
@@ -74,17 +74,18 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- ".gitignore"
|
77
|
+
- ".travis.yml"
|
77
78
|
- Gemfile
|
78
79
|
- LICENSE.txt
|
79
80
|
- README.md
|
80
81
|
- Rakefile
|
81
|
-
-
|
82
|
+
- example/config/topics.yml
|
82
83
|
- lib/ruboty/gekiron.rb
|
83
84
|
- lib/ruboty/gekiron/actions/topic.rb
|
84
85
|
- lib/ruboty/gekiron/version.rb
|
85
86
|
- lib/ruboty/handlers/gekiron.rb
|
86
87
|
- ruboty-gekiron.gemspec
|
87
|
-
homepage:
|
88
|
+
homepage: https://github.com/rhythnn/ruboty-gekiron
|
88
89
|
licenses:
|
89
90
|
- MIT
|
90
91
|
metadata: {}
|