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.
Files changed (4) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/stella/cli.rb +6 -6
  3. data/stella.gemspec +1 -1
  4. metadata +1 -1
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  :MAJOR: 2
2
2
  :MINOR: 1
3
3
  :PATCH: 1
4
- :BUILD: '001'
4
+ :BUILD: '002'
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, 11
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 "Please check your credentials!"
107
- STDERR.puts " e.g."
108
- STDERR.puts " export STELLA_ACCOUNT=youraccount"
109
- STDERR.puts " export STELLA_KEY=yourapikey"
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 " stella -A youraccount -K yourapikey checkup #{@argv.first}"
111
+ STDERR.puts " stella -A youraccount -K yourapikey checkup #{@argv.first}"
112
112
  end
113
113
 
114
114
  def example
data/stella.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{stella}
8
- s.version = "2.1.1.001"
8
+ s.version = "2.1.1.002"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Delano Mandelbaum"]
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: stella
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.1.1.001
5
+ version: 2.1.1.002
6
6
  platform: ruby
7
7
  authors:
8
8
  - Delano Mandelbaum