Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/taiki45/templating_tweet
- Owner: taiki45
- Created: 2013-02-23T17:04:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-04-07T12:48:58.000Z (over 11 years ago)
- Last Synced: 2024-10-03T09:20:16.967Z (about 2 months ago)
- Language: Ruby
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
バグリポート・要望を歓迎します。プルリクエストも歓迎します。