mastodon_command 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -17
- data/lib/mastodon_command/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0d137a7b69f917c91d0adceb3f8b85674451b3150325a2af385c90ac65f7f88
|
4
|
+
data.tar.gz: d2ee552c7c866da5f0b8cb3210f6758f1f4d35002dbc954c1a0456a1842a135e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec4f12f73bc0535f86f0810f3671ea31c90bea1a819bce3248ef8befd9b13e880c70f71352373b4e01033d76d04b6ed20bb03cc344869d9cc0092da9f462add1
|
7
|
+
data.tar.gz: 14857f581ed5fef4026167d5d0e54cea4a39e997dd729bb03a73f9c63bb6e448a99e4a6c1066d6364ae6222c1805d6f3979be8d1b7d36a91c35de7a590da4f44
|
data/README.md
CHANGED
@@ -1,31 +1,22 @@
|
|
1
1
|
# MastodonCommand
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
2
|
+
- おみくじ機能や大阪弁機能などをつけることができます。
|
3
|
+
- ローカルでマストドンのバージョン3.4.6にて動作を確認済み
|
4
|
+
(このプログラムを使って問題が起こっても保証はできないので予めご了承ください🙇♂️)
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
8
|
```ruby
|
12
9
|
gem 'mastodon_command'
|
13
10
|
```
|
14
11
|
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install mastodon_command
|
22
|
-
|
23
12
|
## Usage
|
24
13
|
|
25
|
-
-
|
26
|
-
|
14
|
+
- 下記に設定ファイルを作成し、マストドンを再起動すると`#おみくじ`などのタグをつけてトゥートすることで動作確認できます
|
15
|
+
|
27
16
|
|
28
17
|
```ruby
|
18
|
+
# config\initializers\mastodon_command.rb
|
19
|
+
|
29
20
|
Rails.application.configure do
|
30
21
|
config.after_initialize do
|
31
22
|
MastodonCommand.setup do |status|
|
@@ -88,4 +79,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
88
79
|
|
89
80
|
## Contributing
|
90
81
|
|
91
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
82
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kenchiki/mastodon_command.
|