stella 2.1.1.001 → 2.1.1.002
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/VERSION.yml +1 -1
- data/lib/stella/cli.rb +6 -6
- data/stella.gemspec +1 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/stella/cli.rb
CHANGED
|
@@ -33,7 +33,7 @@ class Stella::CLI < Drydock::Command
|
|
|
33
33
|
@api = Stella::API.new @global.account, @global.key
|
|
34
34
|
ret = @api.post :checkup, :uri => base_uri
|
|
35
35
|
if ret && ret[:runid]
|
|
36
|
-
shortid = ret[:runid].slice 0,
|
|
36
|
+
shortid = ret[:runid].slice 0, 19
|
|
37
37
|
@more_info = @api.site_uri "/checkup/#{shortid}"
|
|
38
38
|
end
|
|
39
39
|
pp @api.response if Stella.debug
|
|
@@ -103,12 +103,12 @@ class Stella::CLI < Drydock::Command
|
|
|
103
103
|
end
|
|
104
104
|
end
|
|
105
105
|
rescue Stella::API::Unauthorized => ex
|
|
106
|
-
STDERR.puts "
|
|
107
|
-
STDERR.puts "
|
|
108
|
-
STDERR.puts "
|
|
109
|
-
STDERR.puts "
|
|
106
|
+
STDERR.puts "Create an account, at no charge! https://www.blamestella.com/signup/free"
|
|
107
|
+
STDERR.puts "Then specify your credentials:"
|
|
108
|
+
STDERR.puts " export STELLA_ACCOUNT=youraccount"
|
|
109
|
+
STDERR.puts " export STELLA_KEY=yourapikey"
|
|
110
110
|
STDERR.puts " OR "
|
|
111
|
-
STDERR.puts "
|
|
111
|
+
STDERR.puts " stella -A youraccount -K yourapikey checkup #{@argv.first}"
|
|
112
112
|
end
|
|
113
113
|
|
|
114
114
|
def example
|
data/stella.gemspec
CHANGED