-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Okkey edited this page Jun 15, 2019
·
7 revisions
Welcome to the Gokabot wiki!
Gokabot is OSS, so you can join in our development.
You can make new function of BOT.
However, you must follow the additional procedure and coding rules below.
- Fork this repository.
- Coding (See next section).
- Send Pull Request.
- If your request is admitted, we merge it.
- Create new file
/app/src/hoge.rb
. - Implement class
Fuga
inhoge.rb
. - Implement instance method
answer(*msg_data)
in classFuga
. - Add
require_relative './src/hoge.rb'
to/app/src.rb
. - Add
Fuga.new
to$OBJS
insrc.rb
.
We define our coding rules in .rubocop.yml
.
So, please install RuboCop, and check your code by it.