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 +1 -1
- data/lib/bushido/user.rb +1 -0
- data/lib/bushido/version.rb +1 -1
- data/lib/bushido.rb +0 -1
- metadata +3 -3
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 :
|
|
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
|
|
data/lib/bushido/version.rb
CHANGED
data/lib/bushido.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
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-
|
|
17
|
+
date: 2011-01-29 00:00:00 -08:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|