twsh 0.1.2 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83d7739bb9cd300bd46d0ed3812fbc12fb46e2f8
4
- data.tar.gz: 2a6dce01506eedf7630adaf9d76056424a3c923c
3
+ metadata.gz: 5e99332de6eb4f3191bd112bd4388084265644d5
4
+ data.tar.gz: 280d9d88f41195430015d64f448940c9726a0507
5
5
  SHA512:
6
- metadata.gz: 3e5ca5ead5c34ebe63d007b05e641d86a2ca8335a3a3c6734d7a7f80bb80ddcea089a56838d4637409ac214f91b84558b7070cd1940f5b1dbea020d876e9e74d
7
- data.tar.gz: d8102b29b3e18ca0863abda8889b4a8c43a485b92ba8a2d2044e9baeb2c291185a68f0c9f545a991206e23b784e7668c26000764f728ae4a5d25af81a3cca1ae
6
+ metadata.gz: c23ce3c0926f956ee7cdde58e07beb7ed5788ccf9f5764655cecdbac02ce6d04c1d0081d0f673e27dbafc1e59b0fab4629deaa28acb0ef64670540223e4af311
7
+ data.tar.gz: 9b9adbbe08b9c4483c12d38336c699b921d038dd5b4eed0c2be2a89ce5b762055abe94b58448c923a856d4b71d71a57885be1ec6768c737dc3af75ca0dad87fc
data/README.md CHANGED
@@ -13,3 +13,15 @@ $ gem install twsh
13
13
  ```
14
14
  $ twsh
15
15
  ```
16
+
17
+ First time require `login` command.
18
+
19
+ `login` command request authorize to your timeline.
20
+
21
+ Please access shown URL and permit, and input PIN code.
22
+
23
+ # Commands
24
+
25
+ ```
26
+ $ ls # show your home-timeline (shown 30 charactors tweet text, and only 20 tweets count.)
27
+ ```
@@ -18,6 +18,10 @@ module Myun2
18
18
  super
19
19
  end
20
20
 
21
+ def tweet(*params)
22
+ client.update params.join(" ")
23
+ end
24
+
21
25
  def ls(*params)
22
26
  Ls.new(client, *params)
23
27
  end
@@ -1,5 +1,5 @@
1
1
  module Myun2
2
2
  class TwitterShell
3
- VERSION = "0.1.2"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twsh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - myun2