tweetomator 1.0.0 → 1.0.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/Gemfile.lock +1 -1
- data/README.md +34 -0
- data/lib/tweetomator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 368f3d6c1da912eb69d810c61e386757297d2a6c
|
4
|
+
data.tar.gz: 4b8e612e33795422d42682c85b7681caa4cdbfe0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f678c9b9b8d995be89fcf676bc3094ede7842e028309a3af639976c48f0214e1227100cf5eb03bcc1d186377c7384b9bf6e1c0019ff7f9d7408f79e83cf5721
|
7
|
+
data.tar.gz: 39a356415934cca7dd4fe0b73e726787c89f4dde9694d9de3c0356d5bc4832242c653b1906535822a8b65f42d2648c55bc514edc3954fa69cedfa0a2bd1e3669
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -18,8 +18,42 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
+
**Third-party API Keys required:
|
22
|
+
|
23
|
+
- Twitter: https://dev.twitter.com
|
24
|
+
* Create a new app and set the permissions to *read and write
|
25
|
+
- Flickr: https://www.flickr.com/services/apps/create/apply
|
26
|
+
|
21
27
|
Create a new instance of each config class in config/config.rb
|
22
28
|
|
29
|
+
(name/type)
|
30
|
+
|
31
|
+
**TwitterConfig
|
32
|
+
|
33
|
+
- consumer_key / String
|
34
|
+
- consumer_secret / String
|
35
|
+
- access_token / String
|
36
|
+
- access_token_secret / String
|
37
|
+
- username / String
|
38
|
+
- tweet_max_length / int
|
39
|
+
|
40
|
+
**FlickrConfig
|
41
|
+
|
42
|
+
- api_key / String
|
43
|
+
- shared_secret / String
|
44
|
+
|
45
|
+
**TweetomatorConfig
|
46
|
+
|
47
|
+
- twitter_config / TwitterConfig
|
48
|
+
- flickr_config / FlickrConfig
|
49
|
+
- topics / Array (String)
|
50
|
+
- blacklist / Array (String)
|
51
|
+
- stop_words / Array (String)
|
52
|
+
- delay_in_seconds int
|
53
|
+
|
54
|
+
|
55
|
+
Create a new Tweetomator
|
56
|
+
|
23
57
|
e.g.
|
24
58
|
|
25
59
|
twitter_config = TwitterConfig.new([...])
|
data/lib/tweetomator/version.rb
CHANGED