ruboty-tanzaku 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7825e0cdb485fa1bd15635fda10fc28d90412bc6
4
+ data.tar.gz: ebf16aed878b49136d44c30fafdec24dab3db949
5
+ SHA512:
6
+ metadata.gz: a036e1e0775169d4b6b4ba8e0c4351062d29168ce5def5fe8155cae23c46aca57cce8d8ef0967b7c0e9550ae496fe5b6355987f58bdf047b3adb19b39c975045
7
+ data.tar.gz: 00d3da4e65758454a4792c2ad150209c63db8a62443e2d9eca5eee3067996ff48f32c1d2210bc31b58707a194c5c9f477e1c5d98a6a8825d746283b1c8695179
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.2.3
5
+ before_install: gem install bundler -v 1.12.5
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruboty-tanzaku.gemspec
4
+ gemspec
@@ -0,0 +1,33 @@
1
+ # Ruboty::Tanzaku
2
+
3
+ Tanzaku.
4
+
5
+ ## Usage
6
+
7
+ ```ruby
8
+ # Gemfile
9
+ gem 'ruboty-tanzaku'
10
+ ```
11
+
12
+ ```
13
+ # Say tanzaku <negai>
14
+ > ruboty tanzaku ねがいごと
15
+ ┏┷☆
16
+ ┃ね┃
17
+ ┃が┃
18
+ ┃い┃
19
+ ┃ご┃
20
+ ┃と┃
21
+ ★━┛
22
+ ```
23
+
24
+ ## Contributing
25
+
26
+ Bug reports and pull requests are welcome on GitHub at https://github.com/osyo-manga/gem-ruboty-tanzaku.
27
+
28
+ ## Release note
29
+
30
+ #### 0.1.0
31
+
32
+ * Release!
33
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ruboty/tanzaku"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,17 @@
1
+ module Ruboty module Actions
2
+ class Tanzaku < Base
3
+ def call
4
+ message.reply to_tanzaku message[:negai]
5
+ end
6
+
7
+ private
8
+ def half_to_full(str)
9
+ str.tr('0-9a-zA-Zー\- 。、', '0-9a-zA-Z|| ︒︑')
10
+ end
11
+
12
+ def to_tanzaku text
13
+ body = half_to_full(text).split(//).map { |c| "┃" + c + "┃\n" }.join
14
+ "┏┷☆\n" + body + "★━┛"
15
+ end
16
+ end
17
+ end end
@@ -0,0 +1,15 @@
1
+ require_relative "../actions/tanzaku.rb"
2
+
3
+
4
+ module Ruboty module Handlers
5
+ class Tanzaku < Base
6
+ on(
7
+ /tanzaku (?<negai>.+)/,
8
+ name: "tanzaku",
9
+ description: "tanzaku",
10
+ )
11
+ def tanzaku message
12
+ Ruboty::Actions::Tanzaku.new(message).call
13
+ end
14
+ end
15
+ end end
@@ -0,0 +1,2 @@
1
+ require "ruboty/tanzaku/version"
2
+ require_relative "./handlers/tanzaku.rb"
@@ -0,0 +1,5 @@
1
+ module Ruboty
2
+ module Tanzaku
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ruboty/tanzaku/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ruboty-tanzaku"
8
+ spec.version = Ruboty::Tanzaku::VERSION
9
+ spec.authors = ["manga_osyo"]
10
+ spec.email = ["manga.osyo@gmail.com"]
11
+
12
+ spec.summary = %q{tanzaku}
13
+ spec.description = %q{tanzaku}
14
+ spec.homepage = "https://github.com/osyo-manga/gem-ruboty-tanzaku"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.12"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec", "~> 3.0"
24
+ spec.add_development_dependency "ruboty-through_ruboty_name"
25
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruboty-tanzaku
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - manga_osyo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-07-07 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.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
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
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: ruboty-through_ruboty_name
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: tanzaku
70
+ email:
71
+ - manga.osyo@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - Gemfile
80
+ - README.md
81
+ - Rakefile
82
+ - bin/console
83
+ - bin/setup
84
+ - lib/ruboty/actions/tanzaku.rb
85
+ - lib/ruboty/handlers/tanzaku.rb
86
+ - lib/ruboty/tanzaku.rb
87
+ - lib/ruboty/tanzaku/version.rb
88
+ - ruboty-tanzaku.gemspec
89
+ homepage: https://github.com/osyo-manga/gem-ruboty-tanzaku
90
+ licenses: []
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.4.5.1
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: tanzaku
112
+ test_files: []