Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/taiki45/templating_tweet

a mikutter plugin: we can use template engines in mikutter posting
https://github.com/taiki45/templating_tweet

Last synced: 13 days ago
JSON representation

a mikutter plugin: we can use template engines in mikutter posting

Awesome Lists containing this project

README

        

# mikutter plugin: Templating-tweet

## About
テンプレートエンジンの mustache を使ってつぶやく mikutter プラグイン

## Configuration
`sample.yaml` の参考に `var_name: value` という形でテンプレートエンジン内で使う変数を `config.yaml` というファイルを作って定義します。

## Usage
`mustache` という gem を使っているので
```sh
gem i mustache
```
とするか mikutter の `Gemfile` に
```ruby
gem 'mustache'
```
と追加して `bundle` したあと起動時に `bundle exec ruby mikutter.rb` としてください。

あとは mikutter のポストボックスで
```mustache
{{ var_name }}your tweet body{{ another_var_name }}
```
など mustache を使ってつぶやくことができます。

## Plan
helper メソッドを追加する仕組み整えます。

## Contribution
バグリポート・要望を歓迎します。プルリクエストも歓迎します。