t 0.6.1 → 0.6.2
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.
- data/lib/t/cli.rb +1 -1
- data/lib/t/version.rb +1 -1
- metadata +2 -9
- data/.gitignore +0 -10
- data/.rspec +0 -2
- data/.travis.yml +0 -8
- data/Gemfile +0 -7
- data/spec/fixtures/.trc +0 -13
- data/t.gemspec +0 -34
data/lib/t/cli.rb
CHANGED
@@ -396,7 +396,7 @@ module T
|
|
396
396
|
elsif location.state && location.country
|
397
397
|
array << ["Location", [location.state, location.country].join(", ")]
|
398
398
|
elsif location.country
|
399
|
-
array << ["Location",
|
399
|
+
array << ["Location", location.country]
|
400
400
|
end
|
401
401
|
end
|
402
402
|
array << ["Retweets", number_with_delimiter(status.retweet_count)] unless status.retweet_count.zero?
|
data/lib/t/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: t
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -292,15 +292,10 @@ executables:
|
|
292
292
|
extensions: []
|
293
293
|
extra_rdoc_files: []
|
294
294
|
files:
|
295
|
-
- .gitignore
|
296
|
-
- .rspec
|
297
|
-
- .travis.yml
|
298
|
-
- Gemfile
|
299
295
|
- LICENSE.md
|
300
296
|
- README.md
|
301
297
|
- Rakefile
|
302
298
|
- bin/t
|
303
|
-
- lib/t.rb
|
304
299
|
- lib/t/cli.rb
|
305
300
|
- lib/t/collectable.rb
|
306
301
|
- lib/t/core_ext/enumerable.rb
|
@@ -313,9 +308,9 @@ files:
|
|
313
308
|
- lib/t/search.rb
|
314
309
|
- lib/t/set.rb
|
315
310
|
- lib/t/version.rb
|
311
|
+
- lib/t.rb
|
316
312
|
- spec/cli_spec.rb
|
317
313
|
- spec/delete_spec.rb
|
318
|
-
- spec/fixtures/.trc
|
319
314
|
- spec/fixtures/501_ids.json
|
320
315
|
- spec/fixtures/501_users_list.json
|
321
316
|
- spec/fixtures/access_token
|
@@ -344,7 +339,6 @@ files:
|
|
344
339
|
- spec/rcfile_spec.rb
|
345
340
|
- spec/search_spec.rb
|
346
341
|
- spec/set_spec.rb
|
347
|
-
- t.gemspec
|
348
342
|
homepage: http://github.com/sferik/t
|
349
343
|
licenses: []
|
350
344
|
post_install_message:
|
@@ -372,7 +366,6 @@ summary: CLI for Twitter
|
|
372
366
|
test_files:
|
373
367
|
- spec/cli_spec.rb
|
374
368
|
- spec/delete_spec.rb
|
375
|
-
- spec/fixtures/.trc
|
376
369
|
- spec/fixtures/501_ids.json
|
377
370
|
- spec/fixtures/501_users_list.json
|
378
371
|
- spec/fixtures/access_token
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
data/Gemfile
DELETED
data/spec/fixtures/.trc
DELETED
data/t.gemspec
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
require File.expand_path("../lib/t/version", __FILE__)
|
3
|
-
|
4
|
-
Gem::Specification.new do |gem|
|
5
|
-
gem.add_dependency 'actionpack', ['>= 2.3.11', '< 4']
|
6
|
-
gem.add_dependency 'activesupport', ['>= 2.3.11', '< 4']
|
7
|
-
gem.add_dependency 'launchy', '~> 2.0'
|
8
|
-
gem.add_dependency 'geokit', '~> 1.6'
|
9
|
-
gem.add_dependency 'highline', '~> 1.6'
|
10
|
-
gem.add_dependency 'json', '~> 1.6'
|
11
|
-
gem.add_dependency 'oauth', '~> 0.4'
|
12
|
-
gem.add_dependency 'retryable', '~> 1.2'
|
13
|
-
gem.add_dependency 'thor', '~> 0.15.0.rc2'
|
14
|
-
gem.add_dependency 'twitter', ['~> 2.2', '>= 2.2.3']
|
15
|
-
gem.add_development_dependency 'pry'
|
16
|
-
gem.add_development_dependency 'rake'
|
17
|
-
gem.add_development_dependency 'rspec'
|
18
|
-
gem.add_development_dependency 'simplecov'
|
19
|
-
gem.add_development_dependency 'timecop'
|
20
|
-
gem.add_development_dependency 'webmock'
|
21
|
-
gem.author = "Erik Michaels-Ober"
|
22
|
-
gem.bindir = 'bin'
|
23
|
-
gem.description = %q{A command-line power tool for Twitter.}
|
24
|
-
gem.email = 'sferik@gmail.com'
|
25
|
-
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
26
|
-
gem.files = `git ls-files`.split("\n")
|
27
|
-
gem.homepage = 'http://github.com/sferik/t'
|
28
|
-
gem.name = 't'
|
29
|
-
gem.require_paths = ['lib']
|
30
|
-
gem.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if gem.respond_to? :required_rubygems_version=
|
31
|
-
gem.summary = %q{CLI for Twitter}
|
32
|
-
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
33
|
-
gem.version = T::Version.to_s
|
34
|
-
end
|