tw 0.4.8 → 0.4.9
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/History.txt +4 -0
- data/README.md +1 -1
- data/lib/tw/app/main.rb +7 -2
- data/lib/tw/version.rb +1 -1
- data/tw.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a095bf61b2bf54db952118086cb877976ebca0fa
|
|
4
|
+
data.tar.gz: 0fe9205a6a60d0916b53c204532c7c0f8e90b230
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c22ec61f65d94cfed33628e8ec3aef0d834db1525a45adf6cf35fd5bdc470a5792d6d251d6b10601f53aaf2ad688e248c92671f25d33a692702aa52eef9c9ba
|
|
7
|
+
data.tar.gz: b50bb9bb6e02eaed4d2cf9b5e5857b73eb922c9fcc4973ac5baee72ac155bb4286dc3379566b19e275aeeabb3741d46e6f3bb0eddd9eec425ae6bb59459f2cc0
|
data/History.txt
CHANGED
data/README.md
CHANGED
data/lib/tw/app/main.rb
CHANGED
|
@@ -76,7 +76,7 @@ module Tw::App
|
|
|
76
76
|
|
|
77
77
|
if @parser.has_option? :help
|
|
78
78
|
STDERR.puts "Tw - Twitter client on Ruby v#{Tw::VERSION}"
|
|
79
|
-
STDERR.puts " http://shokai.github.
|
|
79
|
+
STDERR.puts " http://shokai.github.io/tw"
|
|
80
80
|
STDERR.puts
|
|
81
81
|
STDERR.puts @parser.help
|
|
82
82
|
STDERR.puts
|
|
@@ -90,6 +90,7 @@ module Tw::App
|
|
|
90
90
|
STDERR.puts " tw --stream:filter=ruby,java"
|
|
91
91
|
STDERR.puts " tw --dm:to=username \"hello!\""
|
|
92
92
|
STDERR.puts "id tw @shokai --id"
|
|
93
|
+
STDERR.puts " tw @shokai --id=334749349588377601"
|
|
93
94
|
STDERR.puts 'reply tw "@shokai wow!!" --id=334749349588377601'
|
|
94
95
|
STDERR.puts " tw --fav=334749349588377601"
|
|
95
96
|
STDERR.puts " tw --rt=334749349588377601"
|
|
@@ -111,7 +112,11 @@ module Tw::App
|
|
|
111
112
|
|
|
112
113
|
auth
|
|
113
114
|
if @parser.argv.size < 1
|
|
114
|
-
|
|
115
|
+
if @parser.has_param? :status_id
|
|
116
|
+
client.show_status @parser[:status_id]
|
|
117
|
+
else
|
|
118
|
+
Render.display client.mentions, @parser[:format]
|
|
119
|
+
end
|
|
115
120
|
elsif all_requests?(@parser.argv)
|
|
116
121
|
Render.display Parallel.map(@parser.argv, :in_threads => @parser.argv.size){|arg|
|
|
117
122
|
if user = username?(arg)
|
data/lib/tw/version.rb
CHANGED
data/tw.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
|
|
|
9
9
|
gem.email = ["hashimoto@shokai.org"]
|
|
10
10
|
gem.description = %q{CUI Twitter Client.}
|
|
11
11
|
gem.summary = gem.description
|
|
12
|
-
gem.homepage = "http://shokai.github.
|
|
12
|
+
gem.homepage = "http://shokai.github.io/tw"
|
|
13
13
|
gem.license = "MIT"
|
|
14
14
|
|
|
15
15
|
gem.files = `git ls-files`.split($/).reject{|i| i=="Gemfile.lock" }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sho Hashimoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: twitter
|
|
@@ -173,7 +173,7 @@ files:
|
|
|
173
173
|
- test/test_t_co.rb
|
|
174
174
|
- test/test_tw.rb
|
|
175
175
|
- tw.gemspec
|
|
176
|
-
homepage: http://shokai.github.
|
|
176
|
+
homepage: http://shokai.github.io/tw
|
|
177
177
|
licenses:
|
|
178
178
|
- MIT
|
|
179
179
|
metadata: {}
|