reddit-to-telegram 0.3.0 → 0.3.1
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 +4 -4
- data/lib/reddit-to-telegram.rb +0 -2
- data/lib/reddit_to_telegram/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: 7e02f076f3c1b878452f2b871436a34c0b195fea3047f2e85dcb9c8af90a9205
|
|
4
|
+
data.tar.gz: 544ab98c2f0599d01429956f5ca0ffef0af593272c929f3652a10cfb3e4f1b6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdedc48421d1398506c6b4f1e0841e8173db20db22083e1a4861b8f0177eb40bd17091eb24728031ca04bb146e72a9682953637b302df58f8f561ee06eef3e1e
|
|
7
|
+
data.tar.gz: d1bc0f40dca38bc40d0180056b79f169d88082f1345961ebb89e86d0d521e10109cda6c7614edf110b7af16905f39dc53fe7c8fdc2615f1e0dd5511a25cf9e50
|
data/README.md
CHANGED
|
@@ -14,12 +14,12 @@ gem "reddit-to-telegram"
|
|
|
14
14
|
```
|
|
15
15
|
Then run `bundle install`.
|
|
16
16
|
|
|
17
|
-
Or `gem install reddit-to-telegram
|
|
17
|
+
Or `gem install reddit-to-telegram`. Don't forget to `require` it.
|
|
18
18
|
|
|
19
19
|
## Prerequisites
|
|
20
|
-
- You need an AWS account to host a free SimpleDB (
|
|
21
|
-
- (Optionally) Create a Reddit app, which would allow more requests to reddit
|
|
22
|
-
- [Obtain](https://core.telegram.org/bots/tutorial#obtain-your-bot-token)
|
|
20
|
+
- (Optionally) You'll need an [AWS account](https://aws.amazon.com/) to host a free SimpleDB (best available storage type, also default one). I also recommend hosting the bot on AWS lambda, since it would be free.
|
|
21
|
+
- (Optionally) [Create a Reddit app](https://www.reddit.com/prefs/apps), which would allow more requests to reddit
|
|
22
|
+
- [Obtain a telegram bot token](https://core.telegram.org/bots/tutorial#obtain-your-bot-token)
|
|
23
23
|
|
|
24
24
|
To run it, you'll need some env variables set.
|
|
25
25
|
```
|
data/lib/reddit-to-telegram.rb
CHANGED