twhois 0.0.3 → 0.0.4

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.
Files changed (5) hide show
  1. data/.document +5 -0
  2. data/.rspec +2 -0
  3. data/bin/twhois +3 -2
  4. data/lib/twhois/version.rb +1 -1
  5. metadata +5 -3
@@ -0,0 +1,5 @@
1
+ README.md
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/bin/twhois CHANGED
@@ -26,10 +26,11 @@ if ARGV.size > 0
26
26
  puts " Private Account: #{user.protected ? "Yes" : "No"}"
27
27
  else
28
28
  puts "@#{username}:"
29
- puts " Not Found"
29
+ puts " Error: Not Found"
30
30
  end
31
31
  rescue Twhois::InvalidUsername => e
32
- puts "\"#{username}\" is not a valid Twitter username"
32
+ puts "@#{username}:"
33
+ puts " Error: Invalid Username"
33
34
  end
34
35
  end
35
36
  else
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Twhois
4
- VERSION = "0.0.3"
4
+ VERSION = "0.0.4"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twhois
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jim Myhrberg
@@ -76,7 +76,9 @@ extensions: []
76
76
  extra_rdoc_files: []
77
77
 
78
78
  files:
79
+ - .document
79
80
  - .gitignore
81
+ - .rspec
80
82
  - .rvmrc
81
83
  - Gemfile
82
84
  - LICENSE