0.0
No commit activity in last 3 years
No release in over 3 years
ruboty-megen generate ruboty README.md template.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 10.0
>= 0

Runtime

~> 0.18.1
 Project Readme

Ruboty::Gen::Readme

Generate README.md for Ruboty Handler + Actions plugin.

Gem Version Build Status Coverage Status

Ruboty is Chat bot framework. Ruby + Bot = Ruboty

🎶 Image

Rubotyme => README.md

👕👖❔❔❔🎩
🎩👞➡️💥➡️👨
👨❔❔❔❔👕
❔❔❔❔❔👖
❔❔❔❔❔👞

⬇️ Installation

Add this line to your application's Gemfile:

gem 'ruboty-megen'

And then execute:

$ bundle

Or install it yourself as:

$ gem install ruboty-megen

📘 Rubotyme

Setting File Parameters

key value example
user_name github user name tbpgr
gem_class_name gem class name Ume
gem_name gem name ume
title title An Ruboty Handler + Actions to output N line messages.
env/name ENV variable name DEFAULT_UME_TEXT
env/description ENV description default ume text
dependencies/name dependency name Ume API
dependencies/description dependency description this plugin depend on XXX API ver 1.2.3
commands/command name Ruboty::Handler.on name ume
commands/command pattern Ruboty::Handler.on pattern /ume (?.*?)\z/
commands/command description Ruboty::Handler.on description output empty message N lines ( times)
commands/command example Ruboty::Handler.on example example usage

📜 Usage

init

generate Rubotyme template file.

$ ruboty-megen init

generate

generate Ruboty Handler + Action README.md template

  • edit Rubotyme file
# encoding: utf-8
user_name "tbpgr"

gem_class_name "Ume"
gem_name "ume"

title "An Ruboty Handler + Actions to output N line messages."

env do |e|
  e.name "ENV1"
  e.description "ENV1 desc"
end

env do |e|
  e.name "ENV2"
  e.description "ENV2 desc"
end

dependency do |d|
  d.name "dependency2"
  d.description "dependency2 description"
end

command do |c|
  c.name "ume"
  c.pattern "/ume (?<count>.*?)\z/"
  c.description "output empty message N lines (<count> times)"
  c.example <<-EOS
> ruboty help
ruboty /ume (?<count>.*?)\z/               - output empty message N lines (<count> times)
> ruboty ume 3
.
.
.
> ruboty ume 5
.
.
.
.
.
  EOS
end

command do |c|
  c.name "umec"
  c.pattern "/umec (?<text>.+?) (?<count>.*?)\z/"
  c.description "output <text> message N lines (<count> times)"
  c.example <<-EOS
> ruboty help
ruboty /umec (?<text>.+?) (?<count>.*?)\z/ - output <text> message N lines (<count> times)
> ruboty umec hoge 3
hoge
hoge
hoge

> ruboty umec hoge 5
hoge
hoge
hoge
hoge
hoge

  EOS
end
  • generate README
$ ruboty-megen generate
  • output

sample output ruboty-ume README

generate with emoji option

generate Ruboty Handler + Action README.md template with emoji headings

  • edit Rubotyme file (previous case)

  • generate README

$ ruboty-megen generate --emoji
  • output

sample output ruboty-ume README

👬 Contributing 👭

  1. Fork it ( https://github.com/tbpgr/ruboty_megen/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request