ruboty-articlegen 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +21 -2
- data/lib/ruboty/gen/article.rb +10 -10
- data/lib/ruboty/gen/version.rb +1 -1
- data/spec/ruboty/gen/article_spec.rb +10 -10
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1315e1563e7ae485621698bb1922c4e3a6509fbe
|
4
|
+
data.tar.gz: 128b686d11ff46cff155dcf2958683d2b3b2e52a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6be120b2691005066104a37fc338dd98b57f9cd97dc49eb62eef6e04750afb280648e02b674144cb7bbfdecdd0f6e8b7e3b753c0fe65db93e89a5d43067904c3
|
7
|
+
data.tar.gz: 0574b5abd725f2fd7125437e99127be1c9cb69d78d5e52d9d5b2583d319677a3f6891e6264b0e7972873136a89d64ad6cf2ac3974581b5783a3b66d76dd8b3a3
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
Generate Markdown Article for Ruboty Handler + Actions plugin.
|
4
4
|
|
5
|
+
[![Gem Version](https://badge.fury.io/rb/ruboty-articlegen.svg)](http://badge.fury.io/rb/ruboty-articlegen)
|
5
6
|
[![Build Status](https://travis-ci.org/tbpgr/ruboty-articlegen.png?branch=master)](https://travis-ci.org/tbpgr/ruboty-articlegen)
|
6
7
|
[![Coverage Status](https://coveralls.io/repos/tbpgr/ruboty-articlegen/badge.png)](https://coveralls.io/r/tbpgr/ruboty-articlegen)
|
7
8
|
|
@@ -56,12 +57,22 @@ generate Ruboty Handler + Action Article Markdown template
|
|
56
57
|
|
57
58
|
~~~ruby
|
58
59
|
# encoding: utf-8
|
59
|
-
|
60
|
-
rubygems_user_name "tbpgr"
|
60
|
+
user_name "tbpgr"
|
61
61
|
|
62
62
|
gem_name "ume"
|
63
63
|
|
64
64
|
title "チャットを空メッセージ or 任意のメッセージで埋める ruboty-ume を作成しました"
|
65
|
+
purpose <<-PURPOSE
|
66
|
+
ruboty google_image で妙な画像を引き当ててしまった。
|
67
|
+
そんなときに限って、偉い人が近づいてくる。
|
68
|
+
急いでチャット画面から画像を追い出すんだ。
|
69
|
+
|
70
|
+
内緒のメッセージのやりとり。
|
71
|
+
そんなときに限って、内緒のやりとりがばれるとまずい相手が近づいてくる。
|
72
|
+
急いでチャット画面から画像を追い出すんだ。
|
73
|
+
|
74
|
+
そんな時に空行を大量に追加してメッセージを画面外に追い出します。
|
75
|
+
PURPOSE
|
65
76
|
|
66
77
|
env do |e|
|
67
78
|
e.name "ENV1"
|
@@ -87,12 +98,20 @@ command do |c|
|
|
87
98
|
c.name "ume"
|
88
99
|
c.pattern "/ume (?<count>.*?)\z/"
|
89
100
|
c.description "output empty message N lines (<count> times)"
|
101
|
+
c.example <<-EXAMPLE
|
102
|
+
>ruboty command1
|
103
|
+
>result1
|
104
|
+
EXAMPLE
|
90
105
|
end
|
91
106
|
|
92
107
|
command do |c|
|
93
108
|
c.name "umec"
|
94
109
|
c.pattern "/umec (?<text>.+?) (?<count>.*?)\z/"
|
95
110
|
c.description "output <text> message N lines (<count> times)"
|
111
|
+
c.example <<-EXAMPLE
|
112
|
+
>ruboty command2
|
113
|
+
>result2
|
114
|
+
EXAMPLE
|
96
115
|
end
|
97
116
|
~~~
|
98
117
|
|
data/lib/ruboty/gen/article.rb
CHANGED
@@ -96,12 +96,12 @@ end
|
|
96
96
|
RUBOTY_ARTICLE_TEMPLATE = <<-EOS
|
97
97
|
# <%=title%> #ruboty
|
98
98
|
|
99
|
-
## 概要
|
99
|
+
## <i class="fa fa-cubes" style="font-size:1em;"></i> 概要
|
100
100
|
<%=title%>
|
101
101
|
|
102
|
-
## 用途
|
102
|
+
## <i class="fa fa-cube" style="font-size:1em;"></i> 用途
|
103
103
|
<%=purpose%>
|
104
|
-
## Installation
|
104
|
+
## <i class="fa fa-cube" style="font-size:1em;"></i> Installation
|
105
105
|
|
106
106
|
Add this line to your application's Gemfile:
|
107
107
|
|
@@ -117,30 +117,30 @@ Or install it yourself as:
|
|
117
117
|
|
118
118
|
$ gem install ruboty-<%=gem_name%>
|
119
119
|
|
120
|
-
## Commands
|
120
|
+
## <i class="fa fa-terminal" style="font-size:1em;"></i> Commands
|
121
121
|
|
122
122
|
|Command|Pattern|Description|
|
123
123
|
|:--|:--|:--|
|
124
124
|
<%=command_table%>
|
125
125
|
|
126
|
-
## Usage
|
126
|
+
## <i class="fa fa-file-text-o" style="font-size:1em;"></i> Usage
|
127
127
|
<%=usages%>
|
128
128
|
|
129
|
-
## ENV
|
129
|
+
## <i class="fa fa-gears" style="font-size:1em;"></i> ENV
|
130
130
|
|
131
131
|
|Name|Description|
|
132
132
|
|:--|:--|
|
133
133
|
<%=env_table%>
|
134
134
|
|
135
|
-
## Dependency
|
135
|
+
## <i class="fa fa-puzzle-piece" style="font-size:1em;"></i> Dependency
|
136
136
|
|
137
137
|
|Name|Description|
|
138
138
|
|:--|:--|
|
139
139
|
<%=dependency_table%>
|
140
140
|
|
141
|
-
## 参照
|
142
|
-
* [ruboty-<%=gem_name%> GitHub](https://github.com/<%=user_name%>/ruboty-<%=gem_name%>)
|
143
|
-
* [ruboty-<%=gem_name%> RubyGems](http://rubygems.org/gems/ruboty-<%=gem_name%>)
|
141
|
+
## <i class="fa fa-arrow-circle-right" style="font-size:1em;"></i> 参照
|
142
|
+
* <i class="fa fa-external-link" style="font-size:1em;"></i> [ruboty-<%=gem_name%> GitHub](https://github.com/<%=user_name%>/ruboty-<%=gem_name%>)
|
143
|
+
* <i class="fa fa-external-link" style="font-size:1em;"></i> [ruboty-<%=gem_name%> RubyGems](http://rubygems.org/gems/ruboty-<%=gem_name%>)
|
144
144
|
EOS
|
145
145
|
|
146
146
|
# generate Rubotyarticlegenfile to current directory.
|
data/lib/ruboty/gen/version.rb
CHANGED
@@ -75,10 +75,10 @@ end
|
|
75
75
|
expected: <<-EOS
|
76
76
|
# チャットを空メッセージ or 任意のメッセージで埋める ruboty-sample_gem を作成しました #ruboty
|
77
77
|
|
78
|
-
## 概要
|
78
|
+
## <i class="fa fa-cubes" style="font-size:1em;"></i> 概要
|
79
79
|
チャットを空メッセージ or 任意のメッセージで埋める ruboty-sample_gem を作成しました
|
80
80
|
|
81
|
-
## 用途
|
81
|
+
## <i class="fa fa-cube" style="font-size:1em;"></i> 用途
|
82
82
|
ruboty google_image で妙な画像を引き当ててしまった。
|
83
83
|
そんなときに限って、偉い人が近づいてくる。
|
84
84
|
急いでチャット画面から画像を追い出すんだ。
|
@@ -89,7 +89,7 @@ ruboty google_image で妙な画像を引き当ててしまった。
|
|
89
89
|
|
90
90
|
そんな時に空行を大量に追加してメッセージを画面外に追い出します。
|
91
91
|
|
92
|
-
## Installation
|
92
|
+
## <i class="fa fa-cube" style="font-size:1em;"></i> Installation
|
93
93
|
|
94
94
|
Add this line to your application's Gemfile:
|
95
95
|
|
@@ -105,14 +105,14 @@ Or install it yourself as:
|
|
105
105
|
|
106
106
|
$ gem install ruboty-sample_gem
|
107
107
|
|
108
|
-
## Commands
|
108
|
+
## <i class="fa fa-terminal" style="font-size:1em;"></i> Commands
|
109
109
|
|
110
110
|
|Command|Pattern|Description|
|
111
111
|
|:--|:--|:--|
|
112
112
|
|command1|/command1 | hoge/|command1 description|
|
113
113
|
|command2|/command2 | hoge/|command2 description|
|
114
114
|
|
115
|
-
## Usage
|
115
|
+
## <i class="fa fa-file-text-o" style="font-size:1em;"></i> Usage
|
116
116
|
### command1
|
117
117
|
* command1 description
|
118
118
|
|
@@ -129,23 +129,23 @@ Or install it yourself as:
|
|
129
129
|
>result2
|
130
130
|
~~~
|
131
131
|
|
132
|
-
## ENV
|
132
|
+
## <i class="fa fa-gears" style="font-size:1em;"></i> ENV
|
133
133
|
|
134
134
|
|Name|Description|
|
135
135
|
|:--|:--|
|
136
136
|
|ENV1|ENV1 description|
|
137
137
|
|ENV2|ENV2 description|
|
138
138
|
|
139
|
-
## Dependency
|
139
|
+
## <i class="fa fa-puzzle-piece" style="font-size:1em;"></i> Dependency
|
140
140
|
|
141
141
|
|Name|Description|
|
142
142
|
|:--|:--|
|
143
143
|
|dependency1 name|dependency1 description|
|
144
144
|
|dependency2 name|dependency2 description|
|
145
145
|
|
146
|
-
## 参照
|
147
|
-
* [ruboty-sample_gem GitHub](https://github.com/tbpgr/ruboty-sample_gem)
|
148
|
-
* [ruboty-sample_gem RubyGems](http://rubygems.org/gems/ruboty-sample_gem)
|
146
|
+
## <i class="fa fa-arrow-circle-right" style="font-size:1em;"></i> 参照
|
147
|
+
* <i class="fa fa-external-link" style="font-size:1em;"></i> [ruboty-sample_gem GitHub](https://github.com/tbpgr/ruboty-sample_gem)
|
148
|
+
* <i class="fa fa-external-link" style="font-size:1em;"></i> [ruboty-sample_gem RubyGems](http://rubygems.org/gems/ruboty-sample_gem)
|
149
149
|
EOS
|
150
150
|
}
|
151
151
|
]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruboty-articlegen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tbpgr
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- .rspec
|
93
93
|
- .rubocop.yml
|
94
94
|
- .travis.yml
|
95
|
+
- CHANGELOG.md
|
95
96
|
- Gemfile
|
96
97
|
- LICENSE.txt
|
97
98
|
- README.md
|