awl_tags_twitter 0.0.3 → 0.0.4
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 +13 -0
- data/lib/awl_tags_twitter/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: 06da5412d7099fde11466cfa6582eaf26143f3d4
|
4
|
+
data.tar.gz: e9ce964c75c6536693e815cc5d67a777b7aa3c09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 916e82e1c69d5f7da8ef60bcfebbceea897e712c5d9b6f32a43414836bf5c8b01a18c434c24a2a6002bc3ef53124ce99dad90bafcf42f6ad4710955bf20e1c59
|
7
|
+
data.tar.gz: 7e46781ca72540c521da3e5cae43da093fadce1f56b7705efec2047dcdbd3f2a0f6494cbc18fce1192560e6750afd32e16c43e4ed7d019d9342612cc65a60d2c
|
data/README.md
CHANGED
@@ -14,6 +14,19 @@ $ awl_tags_twitter cache-all [--dry]
|
|
14
14
|
$ awl_tags_twitter tweet --config /path/to/config/file [--dry]
|
15
15
|
```
|
16
16
|
|
17
|
+
### Twitter credentials
|
18
|
+
1. Create a file to hold your credentials
|
19
|
+
2. Paste in the following (including your actual credentials
|
20
|
+
|
21
|
+
```
|
22
|
+
{
|
23
|
+
"consumer_key":"<CONSUMER KEY>",
|
24
|
+
"consumer_secret":"<CONSUMER_SECRET>",
|
25
|
+
"access_token":"<ACCESS_TOKEN>",
|
26
|
+
"access_token_secret":"<ACCESS_TOKEN_SECRET>"
|
27
|
+
}
|
28
|
+
```
|
29
|
+
|
17
30
|
### How to retweet a previous Article
|
18
31
|
|
19
32
|
1. You should locate the gem installation location
|