Merge branch 'release/v0.0.4'

This commit is contained in:
2011-03-02 01:09:04 +00:00
4 changed files with 11 additions and 3 deletions

5
.document Normal file
View File

@@ -0,0 +1,5 @@
README.md
lib/**/*.rb
bin/*
features/**/*.feature
LICENSE

2
.rspec Normal file
View File

@@ -0,0 +1,2 @@
--format documentation
--color

View File

@@ -26,10 +26,11 @@ if ARGV.size > 0
puts " Private Account: #{user.protected ? "Yes" : "No"}"
else
puts "@#{username}:"
puts " Not Found"
puts " Error: Not Found"
end
rescue Twhois::InvalidUsername => e
puts "\"#{username}\" is not a valid Twitter username"
puts "@#{username}:"
puts " Error: Invalid Username"
end
end
else

View File

@@ -1,5 +1,5 @@
# encoding: utf-8
module Twhois
VERSION = "0.0.3"
VERSION = "0.0.4"
end