ruboty-yasy 1.0.0
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 +7 -0
- data/.gitignore +48 -0
- data/Gemfile +3 -0
- data/LICENSE.md +26 -0
- data/README.md +106 -0
- data/Rakefile +1 -0
- data/lib/ruboty/handlers/yasy.rb +25 -0
- data/lib/ruboty/yasy.rb +13 -0
- data/lib/ruboty/yasy/actions/gossip.rb +11 -0
- data/lib/ruboty/yasy/actions/hey_omachi.rb +11 -0
- data/lib/ruboty/yasy/actions/list.rb +11 -0
- data/lib/ruboty/yasy/sushi.rb +99 -0
- data/lib/ruboty/yasy/version.rb +5 -0
- data/ruboty-yasy.gemspec +23 -0
- data/sushiyuki_images/01.png +0 -0
- data/sushiyuki_images/02.png +0 -0
- data/sushiyuki_images/03.png +0 -0
- data/sushiyuki_images/04.png +0 -0
- data/sushiyuki_images/05.png +0 -0
- data/sushiyuki_images/06.png +0 -0
- data/sushiyuki_images/07.png +0 -0
- data/sushiyuki_images/08.png +0 -0
- data/sushiyuki_images/09.png +0 -0
- data/sushiyuki_images/10.png +0 -0
- data/sushiyuki_images/11.png +0 -0
- data/sushiyuki_images/12.png +0 -0
- data/sushiyuki_images/13.png +0 -0
- data/sushiyuki_images/14.png +0 -0
- data/sushiyuki_images/15.png +0 -0
- data/sushiyuki_images/16.png +0 -0
- data/sushiyuki_images/17.png +0 -0
- data/sushiyuki_images/18.png +0 -0
- data/sushiyuki_images/19.png +0 -0
- data/sushiyuki_images/20.png +0 -0
- data/sushiyuki_images/21.png +0 -0
- data/sushiyuki_images/22.png +0 -0
- data/sushiyuki_images/23.png +0 -0
- data/sushiyuki_images/24.png +0 -0
- data/sushiyuki_images/25.png +0 -0
- data/sushiyuki_images/26.png +0 -0
- data/sushiyuki_images/27.png +0 -0
- data/sushiyuki_images/28.png +0 -0
- data/sushiyuki_images/29.png +0 -0
- data/sushiyuki_images/30.png +0 -0
- data/sushiyuki_images/31.png +0 -0
- data/sushiyuki_images/32.png +0 -0
- data/sushiyuki_images/33.png +0 -0
- data/sushiyuki_images/34.png +0 -0
- data/sushiyuki_images/35.png +0 -0
- data/sushiyuki_images/36.png +0 -0
- data/sushiyuki_images/37.png +0 -0
- data/sushiyuki_images/38.png +0 -0
- data/sushiyuki_images/39.png +0 -0
- data/sushiyuki_images/40.png +0 -0
- metadata +125 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 1dae7e73b93353337dc09f1d261b8f18f0d31f9d
|
|
4
|
+
data.tar.gz: 692b5edb772516df021c0bbd778ee55b188ea9b1
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 4812b663e044150d005d3b7e77b9a566b878a656067ccc8883dc6ea0cf54eb7dca109be6831764b76e242e09e6db5fe9db5be242542b3b4a0ced8355c4af11f4
|
|
7
|
+
data.tar.gz: 6943755b5f6e4d2db6fa2a6f64d2f040a455e364bc12f8f6e87f7aa6f246e9315150a66882015866329a0e4ffbd7c1f36636f3f2c2664e37bb7c3f0015d7028e
|
data/.gitignore
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
### https://raw.github.com/github/gitignore/master/node.gitignore
|
|
2
|
+
|
|
3
|
+
lib-cov
|
|
4
|
+
*.seed
|
|
5
|
+
*.log
|
|
6
|
+
*.csv
|
|
7
|
+
*.dat
|
|
8
|
+
*.out
|
|
9
|
+
*.pid
|
|
10
|
+
*.gz
|
|
11
|
+
|
|
12
|
+
pids
|
|
13
|
+
logs
|
|
14
|
+
results
|
|
15
|
+
|
|
16
|
+
npm-debug.log
|
|
17
|
+
node_modules
|
|
18
|
+
|
|
19
|
+
### https://raw.github.com/github/gitignore/master/Global/osx.gitignore
|
|
20
|
+
|
|
21
|
+
.DS_Store
|
|
22
|
+
.AppleDouble
|
|
23
|
+
.LSOverride
|
|
24
|
+
Icon
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# Thumbnails
|
|
28
|
+
._*
|
|
29
|
+
|
|
30
|
+
# Files that might appear on external disk
|
|
31
|
+
.Spotlight-V100
|
|
32
|
+
.Trashes
|
|
33
|
+
|
|
34
|
+
# Bundler
|
|
35
|
+
/.bundle/
|
|
36
|
+
/.yardoc
|
|
37
|
+
/Gemfile.lock
|
|
38
|
+
/_yardoc/
|
|
39
|
+
/coverage/
|
|
40
|
+
/doc/
|
|
41
|
+
/pkg/
|
|
42
|
+
/spec/reports/
|
|
43
|
+
/tmp/
|
|
44
|
+
*.bundle
|
|
45
|
+
*.so
|
|
46
|
+
*.o
|
|
47
|
+
*.a
|
|
48
|
+
mkmf.log
|
data/Gemfile
ADDED
data/LICENSE.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014 ruboty-yasy
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21
|
+
|
|
22
|
+
## NOTICE: Sushiyuki images are not under MIT License.
|
|
23
|
+
|
|
24
|
+
SUSHIYUKI(寿司ゆき) Copyright (c) 2014 awayuki. (CC BY-NC-ND 4.0)
|
|
25
|
+
|
|
26
|
+
See also http://awayuki.net/sushiyuki/
|
data/README.md
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
ruboty-yasy
|
|
2
|
+
================
|
|
3
|
+
|
|
4
|
+
Build status :sushi:
|
|
5
|
+
|
|
6
|
+
Description
|
|
7
|
+
-----------
|
|
8
|
+
|
|
9
|
+
Incoming Sushiyuki
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
Add this line to your application's Gemfile:
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
gem 'ruboty-yasy'
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
And then execute:
|
|
22
|
+
|
|
23
|
+
$ bundle
|
|
24
|
+
|
|
25
|
+
Or install it yourself as:
|
|
26
|
+
|
|
27
|
+
$ gem install ruboty-yasy
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Optional
|
|
31
|
+
|
|
32
|
+
You can configure default emotion.
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
> export SUSHIYUKI_DEFAULT_EMOTION="wat"
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Also can set random.
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
> export SUSHIYUKI_DEFAULT_EMOTION="random"
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Usage
|
|
45
|
+
-----
|
|
46
|
+
|
|
47
|
+
- `@ruboty sushi me <emotion>`
|
|
48
|
+
- `@ruboty sushi list` : list up emotions
|
|
49
|
+
|
|
50
|
+
|No |Image |Meaning
|
|
51
|
+
|---|----------------------------------------------------------------------------------------------------------------------|-------
|
|
52
|
+
|01 ||yes
|
|
53
|
+
|02 ||no
|
|
54
|
+
|03 ||ok
|
|
55
|
+
|04 ||thank you/thanks/gyoku
|
|
56
|
+
|05 ||sorry
|
|
57
|
+
|06 ||sigh
|
|
58
|
+
|07 ||angry
|
|
59
|
+
|08 ||no comment
|
|
60
|
+
|09 ||cool
|
|
61
|
+
|10 ||kappa
|
|
62
|
+
|11 ||help
|
|
63
|
+
|12 ||what/question
|
|
64
|
+
|13 ||sleep/sleepy
|
|
65
|
+
|14 ||oh no
|
|
66
|
+
|15 ||love
|
|
67
|
+
|16 ||grin
|
|
68
|
+
|17 ||bye
|
|
69
|
+
|18 ||sneak
|
|
70
|
+
|19 ||hide
|
|
71
|
+
|20 ||peel
|
|
72
|
+
|21 ||hot
|
|
73
|
+
|22 ||fail/dip
|
|
74
|
+
|23 ||too much/ikura
|
|
75
|
+
|24 ||happy
|
|
76
|
+
|25 ||smile/boom
|
|
77
|
+
|26 ||wat/anago
|
|
78
|
+
|27 ||tea/content/agari
|
|
79
|
+
|28 ||gari/don't forget
|
|
80
|
+
|29 ||wasabi/sabi
|
|
81
|
+
|30 ||come on/c'mon/
|
|
82
|
+
|31 ||sparkles
|
|
83
|
+
|32 ||sweat
|
|
84
|
+
|33 ||cry
|
|
85
|
+
|34 ||surprised
|
|
86
|
+
|35 ||idea
|
|
87
|
+
|36 ||sad/sob
|
|
88
|
+
|37 ||chat
|
|
89
|
+
|38 ||phone/call
|
|
90
|
+
|39 ||hello
|
|
91
|
+
|40 ||see you
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
Get involved
|
|
95
|
+
============
|
|
96
|
+
|
|
97
|
+
1. fork it ( https://github.com/blockgiven/ruboty-yasy/fork )
|
|
98
|
+
2. create your feature branch (`git checkout -b my-new-feature`)
|
|
99
|
+
3. commit your changes (`git commit -am 'Add some feature'`)
|
|
100
|
+
4. push to the branch (`git push origin my-new-feature`)
|
|
101
|
+
5. create new pull request
|
|
102
|
+
|
|
103
|
+
See Also
|
|
104
|
+
=========
|
|
105
|
+
|
|
106
|
+
- [寿司ゆき](http://awayuki.net/sushiyuki/)
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
module Ruboty
|
|
2
|
+
module Handlers
|
|
3
|
+
class Yasy < Base
|
|
4
|
+
env :SUSHIYUKI_DEFAULT_EMOTION, "You can configure default emotion. (e.g. 'wet') Also can set 'random'.", optional: true
|
|
5
|
+
|
|
6
|
+
on /寿司|鮨|スシ|:sushi:|🍣/, name: 'gossip', description: ':sushi: | 壁 | :ear:', all: true
|
|
7
|
+
|
|
8
|
+
on /sushi list/, name: 'list', description: 'show emotions list'
|
|
9
|
+
|
|
10
|
+
on /sushi me ?(?<emotion>.*)/, name: 'hey_omachi', description: 'incoming sushiyuki'
|
|
11
|
+
|
|
12
|
+
def gossip(message)
|
|
13
|
+
Ruboty::Yasy::Actions::Gossip.new(message).call
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def list(message)
|
|
17
|
+
Ruboty::Yasy::Actions::List.new(message).call
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def hey_omachi(message)
|
|
21
|
+
Ruboty::Yasy::Actions::HeyOmachi.new(message).call
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
data/lib/ruboty/yasy.rb
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
require "ruboty"
|
|
2
|
+
require "ruboty/handlers/yasy"
|
|
3
|
+
require "ruboty/yasy/version"
|
|
4
|
+
require "ruboty/yasy/actions/gossip"
|
|
5
|
+
require "ruboty/yasy/actions/hey_omachi"
|
|
6
|
+
require "ruboty/yasy/actions/list"
|
|
7
|
+
require "ruboty/yasy/sushi"
|
|
8
|
+
require "yaml"
|
|
9
|
+
|
|
10
|
+
module Ruboty
|
|
11
|
+
module Yasy
|
|
12
|
+
end
|
|
13
|
+
end
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
module Ruboty
|
|
2
|
+
module Yasy
|
|
3
|
+
class Sushi
|
|
4
|
+
def default_emotion
|
|
5
|
+
emotion = ENV['SUSHIYUKI_DEFAULT_EMOTION']
|
|
6
|
+
|
|
7
|
+
if emotion == 'random'
|
|
8
|
+
return sushi_table.keys.sample
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
if sushi_table.has_key? emotion
|
|
12
|
+
return emotion
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
'wat'
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def self.emotions
|
|
19
|
+
sushi_table.keys
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def initialize(emotion)
|
|
23
|
+
@emotion = emotion
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def emotion
|
|
27
|
+
sushi_table[@emotion] || sushi_table[default_emotion]
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def to_s
|
|
31
|
+
"https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/%02d.png" % emotion
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def sushi_table
|
|
35
|
+
self.class.sushi_table
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def self.sushi_table
|
|
39
|
+
@sushi_table ||= YAML.load(<<SUSHI_TABLE)
|
|
40
|
+
'yes': 1
|
|
41
|
+
'no': 2
|
|
42
|
+
ok: 3
|
|
43
|
+
thanks: 4
|
|
44
|
+
"thank you": 4
|
|
45
|
+
gyoku: 4
|
|
46
|
+
sorry: 5
|
|
47
|
+
sigh: 6
|
|
48
|
+
angry: 7
|
|
49
|
+
"no comment": 8
|
|
50
|
+
cool: 9
|
|
51
|
+
kappa: 10
|
|
52
|
+
help: 11
|
|
53
|
+
what: 12
|
|
54
|
+
question: 12
|
|
55
|
+
sleep: 13
|
|
56
|
+
sleeply: 13
|
|
57
|
+
"oh no": 14
|
|
58
|
+
love: 15
|
|
59
|
+
grin: 16
|
|
60
|
+
bye: 17
|
|
61
|
+
sneak: 18
|
|
62
|
+
hide: 19
|
|
63
|
+
peel: 20
|
|
64
|
+
hot: 21
|
|
65
|
+
fail: 22
|
|
66
|
+
dip: 22
|
|
67
|
+
"too much": 23
|
|
68
|
+
ikura: 23
|
|
69
|
+
happy: 24
|
|
70
|
+
smile: 25
|
|
71
|
+
boom: 25
|
|
72
|
+
wat: 26
|
|
73
|
+
anago: 26
|
|
74
|
+
tea: 27
|
|
75
|
+
content: 27
|
|
76
|
+
agari: 27
|
|
77
|
+
gari: 28
|
|
78
|
+
"don't forget": 28
|
|
79
|
+
wasabi: 29
|
|
80
|
+
sabi: 29
|
|
81
|
+
"come on": 30
|
|
82
|
+
"c'mon": 30
|
|
83
|
+
sparkles: 31
|
|
84
|
+
sweat: 32
|
|
85
|
+
cry: 33
|
|
86
|
+
surprised: 34
|
|
87
|
+
idea: 35
|
|
88
|
+
sad: 36
|
|
89
|
+
sob: 36
|
|
90
|
+
chat: 37
|
|
91
|
+
phone: 38
|
|
92
|
+
call: 38
|
|
93
|
+
hello: 39
|
|
94
|
+
"see you": 40
|
|
95
|
+
SUSHI_TABLE
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
data/ruboty-yasy.gemspec
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'ruboty/yasy/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "ruboty-yasy"
|
|
8
|
+
spec.version = Ruboty::Yasy::VERSION
|
|
9
|
+
spec.authors = ["block_given?"]
|
|
10
|
+
spec.email = ["block_given@outlook.com"]
|
|
11
|
+
spec.summary = %q{Yet Another SushiYuki plugin for ruboty.}
|
|
12
|
+
spec.description = %q{Yet Another SushiYuki plugin for ruboty, ported from naoya/hubot-sushiyuki.}
|
|
13
|
+
spec.homepage = "https://github.com/blockgiven/ruboty-yasy"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
|
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
+
spec.require_paths = ["lib"]
|
|
20
|
+
|
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
23
|
+
end
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruboty-yasy
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- block_given?
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-10-09 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.7'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.7'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
description: Yet Another SushiYuki plugin for ruboty, ported from naoya/hubot-sushiyuki.
|
|
42
|
+
email:
|
|
43
|
+
- block_given@outlook.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- ".gitignore"
|
|
49
|
+
- Gemfile
|
|
50
|
+
- LICENSE.md
|
|
51
|
+
- README.md
|
|
52
|
+
- Rakefile
|
|
53
|
+
- lib/ruboty/handlers/yasy.rb
|
|
54
|
+
- lib/ruboty/yasy.rb
|
|
55
|
+
- lib/ruboty/yasy/actions/gossip.rb
|
|
56
|
+
- lib/ruboty/yasy/actions/hey_omachi.rb
|
|
57
|
+
- lib/ruboty/yasy/actions/list.rb
|
|
58
|
+
- lib/ruboty/yasy/sushi.rb
|
|
59
|
+
- lib/ruboty/yasy/version.rb
|
|
60
|
+
- ruboty-yasy.gemspec
|
|
61
|
+
- sushiyuki_images/01.png
|
|
62
|
+
- sushiyuki_images/02.png
|
|
63
|
+
- sushiyuki_images/03.png
|
|
64
|
+
- sushiyuki_images/04.png
|
|
65
|
+
- sushiyuki_images/05.png
|
|
66
|
+
- sushiyuki_images/06.png
|
|
67
|
+
- sushiyuki_images/07.png
|
|
68
|
+
- sushiyuki_images/08.png
|
|
69
|
+
- sushiyuki_images/09.png
|
|
70
|
+
- sushiyuki_images/10.png
|
|
71
|
+
- sushiyuki_images/11.png
|
|
72
|
+
- sushiyuki_images/12.png
|
|
73
|
+
- sushiyuki_images/13.png
|
|
74
|
+
- sushiyuki_images/14.png
|
|
75
|
+
- sushiyuki_images/15.png
|
|
76
|
+
- sushiyuki_images/16.png
|
|
77
|
+
- sushiyuki_images/17.png
|
|
78
|
+
- sushiyuki_images/18.png
|
|
79
|
+
- sushiyuki_images/19.png
|
|
80
|
+
- sushiyuki_images/20.png
|
|
81
|
+
- sushiyuki_images/21.png
|
|
82
|
+
- sushiyuki_images/22.png
|
|
83
|
+
- sushiyuki_images/23.png
|
|
84
|
+
- sushiyuki_images/24.png
|
|
85
|
+
- sushiyuki_images/25.png
|
|
86
|
+
- sushiyuki_images/26.png
|
|
87
|
+
- sushiyuki_images/27.png
|
|
88
|
+
- sushiyuki_images/28.png
|
|
89
|
+
- sushiyuki_images/29.png
|
|
90
|
+
- sushiyuki_images/30.png
|
|
91
|
+
- sushiyuki_images/31.png
|
|
92
|
+
- sushiyuki_images/32.png
|
|
93
|
+
- sushiyuki_images/33.png
|
|
94
|
+
- sushiyuki_images/34.png
|
|
95
|
+
- sushiyuki_images/35.png
|
|
96
|
+
- sushiyuki_images/36.png
|
|
97
|
+
- sushiyuki_images/37.png
|
|
98
|
+
- sushiyuki_images/38.png
|
|
99
|
+
- sushiyuki_images/39.png
|
|
100
|
+
- sushiyuki_images/40.png
|
|
101
|
+
homepage: https://github.com/blockgiven/ruboty-yasy
|
|
102
|
+
licenses:
|
|
103
|
+
- MIT
|
|
104
|
+
metadata: {}
|
|
105
|
+
post_install_message:
|
|
106
|
+
rdoc_options: []
|
|
107
|
+
require_paths:
|
|
108
|
+
- lib
|
|
109
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
110
|
+
requirements:
|
|
111
|
+
- - ">="
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: '0'
|
|
114
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
|
+
requirements:
|
|
116
|
+
- - ">="
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: '0'
|
|
119
|
+
requirements: []
|
|
120
|
+
rubyforge_project:
|
|
121
|
+
rubygems_version: 2.2.2
|
|
122
|
+
signing_key:
|
|
123
|
+
specification_version: 4
|
|
124
|
+
summary: Yet Another SushiYuki plugin for ruboty.
|
|
125
|
+
test_files: []
|