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 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", [location.country].join(", ")]
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
@@ -13,7 +13,7 @@ module T
13
13
 
14
14
  # @return [Integer]
15
15
  def self.patch
16
- 1
16
+ 2
17
17
  end
18
18
 
19
19
  # @return [String, NilClass]
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.1
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
@@ -1,10 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .rvmrc
5
- .yardoc
6
- Gemfile.lock
7
- coverage/*
8
- doc/*
9
- log/*
10
- pkg/*
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --order random
data/.travis.yml DELETED
@@ -1,8 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 1.8.7
4
- - 1.9.2
5
- - 1.9.3
6
- - rbx-18mode
7
- - rbx-19mode
8
- - ruby-head
data/Gemfile DELETED
@@ -1,7 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- platforms :jruby do
4
- gem 'jruby-openssl', '~> 0.7'
5
- end
6
-
7
- gemspec
data/spec/fixtures/.trc DELETED
@@ -1,13 +0,0 @@
1
- ---
2
- profiles:
3
- testcli:
4
- abc123:
5
- token: 428004849-cebdct6bwobn
6
- username: testcli
7
- consumer_key: abc123
8
- consumer_secret: asdfasd223sd2
9
- secret: epzrjvxtumoc
10
- configuration:
11
- default_profile:
12
- - testcli
13
- - abc123
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