bushido 0.0.6 → 0.0.7

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/bin/bushido CHANGED
@@ -48,7 +48,7 @@ command = ARGV.first
48
48
 
49
49
  if command
50
50
  case command.downcase.to_sym
51
- when :reauth then Bushido::User.reauth
51
+ when :login then Bushido::User.reauth
52
52
  when :remove_account then Bushido::User.clear_config
53
53
  when :claim then Bushido::App.claim(ARGV[1])
54
54
  when :list then Bushido::App.list()
data/lib/bushido/user.rb CHANGED
@@ -40,6 +40,7 @@ module Bushido
40
40
  def retrieve_account(msg)
41
41
  puts "#{msg} Enter your username and password, and we'll either retrieve if from your existing account on our servers, or create a new account for you."
42
42
  credentials = self.prompt_for_credentials
43
+ puts "Please wait while we look up the account information..."
43
44
 
44
45
  result = Bushido::Command.put_command "#{Bushido::Temple}/users/verify", {:email => credentials[:email], :password => credentials[:password]}, {:force => true}
45
46
 
@@ -1,3 +1,3 @@
1
1
  module Bushido
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
data/lib/bushido.rb CHANGED
@@ -10,6 +10,5 @@ module Bushido
10
10
  require "bushido/command"
11
11
  require "bushido/app"
12
12
 
13
-
14
13
  Temple = ENV["HOST"] || "http://nok.tea.sh/"
15
14
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 6
9
- version: 0.0.6
8
+ - 7
9
+ version: 0.0.7
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sean Grove
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-01-26 00:00:00 -08:00
17
+ date: 2011-01-29 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency