ruboty-yasy 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +48 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE.md +26 -0
  5. data/README.md +106 -0
  6. data/Rakefile +1 -0
  7. data/lib/ruboty/handlers/yasy.rb +25 -0
  8. data/lib/ruboty/yasy.rb +13 -0
  9. data/lib/ruboty/yasy/actions/gossip.rb +11 -0
  10. data/lib/ruboty/yasy/actions/hey_omachi.rb +11 -0
  11. data/lib/ruboty/yasy/actions/list.rb +11 -0
  12. data/lib/ruboty/yasy/sushi.rb +99 -0
  13. data/lib/ruboty/yasy/version.rb +5 -0
  14. data/ruboty-yasy.gemspec +23 -0
  15. data/sushiyuki_images/01.png +0 -0
  16. data/sushiyuki_images/02.png +0 -0
  17. data/sushiyuki_images/03.png +0 -0
  18. data/sushiyuki_images/04.png +0 -0
  19. data/sushiyuki_images/05.png +0 -0
  20. data/sushiyuki_images/06.png +0 -0
  21. data/sushiyuki_images/07.png +0 -0
  22. data/sushiyuki_images/08.png +0 -0
  23. data/sushiyuki_images/09.png +0 -0
  24. data/sushiyuki_images/10.png +0 -0
  25. data/sushiyuki_images/11.png +0 -0
  26. data/sushiyuki_images/12.png +0 -0
  27. data/sushiyuki_images/13.png +0 -0
  28. data/sushiyuki_images/14.png +0 -0
  29. data/sushiyuki_images/15.png +0 -0
  30. data/sushiyuki_images/16.png +0 -0
  31. data/sushiyuki_images/17.png +0 -0
  32. data/sushiyuki_images/18.png +0 -0
  33. data/sushiyuki_images/19.png +0 -0
  34. data/sushiyuki_images/20.png +0 -0
  35. data/sushiyuki_images/21.png +0 -0
  36. data/sushiyuki_images/22.png +0 -0
  37. data/sushiyuki_images/23.png +0 -0
  38. data/sushiyuki_images/24.png +0 -0
  39. data/sushiyuki_images/25.png +0 -0
  40. data/sushiyuki_images/26.png +0 -0
  41. data/sushiyuki_images/27.png +0 -0
  42. data/sushiyuki_images/28.png +0 -0
  43. data/sushiyuki_images/29.png +0 -0
  44. data/sushiyuki_images/30.png +0 -0
  45. data/sushiyuki_images/31.png +0 -0
  46. data/sushiyuki_images/32.png +0 -0
  47. data/sushiyuki_images/33.png +0 -0
  48. data/sushiyuki_images/34.png +0 -0
  49. data/sushiyuki_images/35.png +0 -0
  50. data/sushiyuki_images/36.png +0 -0
  51. data/sushiyuki_images/37.png +0 -0
  52. data/sushiyuki_images/38.png +0 -0
  53. data/sushiyuki_images/39.png +0 -0
  54. data/sushiyuki_images/40.png +0 -0
  55. metadata +125 -0
@@ -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
@@ -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
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -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/
@@ -0,0 +1,106 @@
1
+ ruboty-yasy
2
+ ================
3
+
4
+ Build status :sushi:
5
+
6
+ Description
7
+ -----------
8
+
9
+ Incoming Sushiyuki
10
+
11
+ ![](http://gyazo.kaizenplatform.in/images/d6d896d45e0d01e11ef0c68599b076afb24ed200.png)
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 ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/01.png)|yes
53
+ |02 |![no ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/02.png)|no
54
+ |03 |![ok ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/03.png)|ok
55
+ |04 |![thank you/thanks/gyoku](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/04.png)|thank you/thanks/gyoku
56
+ |05 |![sorry ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/05.png)|sorry
57
+ |06 |![sigh ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/06.png)|sigh
58
+ |07 |![angry ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/07.png)|angry
59
+ |08 |![no comment ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/08.png)|no comment
60
+ |09 |![cool ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/09.png)|cool
61
+ |10 |![kappa ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/10.png)|kappa
62
+ |11 |![help ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/11.png)|help
63
+ |12 |![what/question ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/12.png)|what/question
64
+ |13 |![sleep/sleepy ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/13.png)|sleep/sleepy
65
+ |14 |![oh no ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/14.png)|oh no
66
+ |15 |![love ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/15.png)|love
67
+ |16 |![grin ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/16.png)|grin
68
+ |17 |![bye ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/17.png)|bye
69
+ |18 |![sneak ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/18.png)|sneak
70
+ |19 |![hide ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/19.png)|hide
71
+ |20 |![peel ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/20.png)|peel
72
+ |21 |![hot ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/21.png)|hot
73
+ |22 |![fail/dip ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/22.png)|fail/dip
74
+ |23 |![too much/ikura ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/23.png)|too much/ikura
75
+ |24 |![happy ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/24.png)|happy
76
+ |25 |![smile/boom ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/25.png)|smile/boom
77
+ |26 |![wat/anago ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/26.png)|wat/anago
78
+ |27 |![tea/content/agari ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/27.png)|tea/content/agari
79
+ |28 |![gari/don't forget ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/28.png)|gari/don't forget
80
+ |29 |![wasabi/sabi ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/29.png)|wasabi/sabi
81
+ |30 |![come on/c'mon/ ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/30.png)|come on/c'mon/
82
+ |31 |![sparkles ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/31.png)|sparkles
83
+ |32 |![sweat ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/32.png)|sweat
84
+ |33 |![cry ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/33.png)|cry
85
+ |34 |![surprised ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/34.png)|surprised
86
+ |35 |![idea ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/35.png)|idea
87
+ |36 |![sad/sob ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/36.png)|sad/sob
88
+ |37 |![chat ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/37.png)|chat
89
+ |38 |![phone/call ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/38.png)|phone/call
90
+ |39 |![hello ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/39.png)|hello
91
+ |40 |![see you ](https://raw.githubusercontent.com/blockgiven/ruboty-yasy/master/sushiyuki_images/40.png)|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/)
@@ -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
@@ -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,11 @@
1
+ module Ruboty
2
+ module Yasy
3
+ module Actions
4
+ class Gossip < Ruboty::Actions::Base
5
+ def call
6
+ message.reply(Ruboty::Yasy::Sushi.new('sneak'))
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Ruboty
2
+ module Yasy
3
+ module Actions
4
+ class HeyOmachi < Ruboty::Actions::Base
5
+ def call
6
+ message.reply(Ruboty::Yasy::Sushi.new(message[:emotion]))
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module Ruboty
2
+ module Yasy
3
+ module Actions
4
+ class List < Ruboty::Actions::Base
5
+ def call
6
+ message.reply(Ruboty::Yasy::Sushi.emotions.join($/))
7
+ end
8
+ end
9
+ end
10
+ end
11
+ 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
@@ -0,0 +1,5 @@
1
+ module Ruboty
2
+ module Yasy
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -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: []