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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6c7b26fa99c0cd58ee1e6bc13e4bc357d20aa30c3efbc4ca1df02a75948afbc
4
- data.tar.gz: '00183a34218ed5e32012af4b7614438bec200ecf1443cb3a5f4db649aa8dac19'
3
+ metadata.gz: 7e02f076f3c1b878452f2b871436a34c0b195fea3047f2e85dcb9c8af90a9205
4
+ data.tar.gz: 544ab98c2f0599d01429956f5ca0ffef0af593272c929f3652a10cfb3e4f1b6f
5
5
  SHA512:
6
- metadata.gz: 1f5a3a2c3d03f37ff932245225e84c7ffd35c79051db95816598323456e95fa88ab710f66f1b01e9927b897db4df2227cc1a44673431e0eee655be8f5bde897a
7
- data.tar.gz: 43a98d11dc600a57ede04ff2d6279373a3965be64b27084d761e9ffc3f943f4e94147e0f0293504d33ad6ae857ef4cb117f1a0c53964157b533f4240efe62d63
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`, but don't forget to `require` it first then.
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 (memory and local file storage options are available, but no way to switch for now)
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) a telegram 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
  ```
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "pry"
4
-
5
3
  require_relative "reddit_to_telegram/reddit/fetch"
6
4
  require_relative "reddit_to_telegram/store"
7
5
  require_relative "reddit_to_telegram/telegram/post"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RedditToTelegram
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reddit-to-telegram
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Tityuk