twsh 0.3.2 → 0.4.0
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 +3 -0
- data/bin/twsh +1 -1
- data/lib/myun2/twitter_shell/shell.rb +3 -0
- data/lib/myun2/twitter_shell/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: 24834b86fff05996f38adaf1cb37a2bce681cf46
|
|
4
|
+
data.tar.gz: a101230727eb845e810bfad185c36f83a3043145
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5429e70ef437988d945a689b5b37cf74f2a082303b7c803827540620de1efe0fba1af61bc1cafcb89b4baa18db5b477b4e57a5362d11b4fb31a634c78d5f319a
|
|
7
|
+
data.tar.gz: d95cacd919ab56ab318f58eb2e6808fd379ce63ab5c1fc1eba4c4630d32f2430410af0dbb43d97fc6cefb9682f136b43ccf9e860c32ed978ddb08536b14b9903
|
data/README.md
CHANGED
|
@@ -24,10 +24,13 @@ Please access shown URL and permit, and input PIN code.
|
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
$ tweet <post text>
|
|
27
|
+
$ post <post text>
|
|
28
|
+
$ update <post text>
|
|
27
29
|
# Tweet post text.
|
|
28
30
|
|
|
29
31
|
$ ls
|
|
30
32
|
# Show your home-timeline (shown 30 charactors tweet text, and only 20 tweets count.)
|
|
33
|
+
# Option 'l': detail timeline (timestamp and user id, full tweet text)
|
|
31
34
|
|
|
32
35
|
$ tail
|
|
33
36
|
# Realtime show your home-timeline
|
data/bin/twsh
CHANGED