gleis 0.6.0 → 0.6.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/gleis/application.rb +1 -1
- data/lib/gleis/utils.rb +1 -1
- data/lib/gleis/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f595c8c3587b99fa398578b43db43b378dce98afc0f1cdee68b506ce5dc87ab
|
4
|
+
data.tar.gz: 2fa3e5d4d559525f12b7e6dd788b4a474dc22a573f371f70f9f6c8c3aa93529f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7682a421028b5fb6e87bb415d3261403730007447e11ff4faf200cb9095f4549288c2be7de977de234ffef60d6649fe71d93fcc86d2a301d255aa3a2d6084f3
|
7
|
+
data.tar.gz: 14a4ccf7189065ef3c3d98c304fb9e23593b952bcab8b2e7db502e6c182655c689c7b8eaf38e68f6b5a9fcaae477fbc48c6f47b0419ee89973a8368fe70bfb7f
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,16 @@ All notable changes to the Gleis CLI will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## 0.6.1 - 2019-08-20
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
|
12
|
+
- Required Ruby version from 2.3 to 2.2 in order to support Travis CI dpl
|
13
|
+
|
14
|
+
### Removed
|
15
|
+
|
16
|
+
- Occurrences of Numeric#positive? method in order to support Ruby <2.3
|
17
|
+
|
8
18
|
## 0.6.0 - 2019-08-20
|
9
19
|
|
10
20
|
### Added
|
data/lib/gleis/application.rb
CHANGED
@@ -180,7 +180,7 @@ module Gleis
|
|
180
180
|
token = Token.check
|
181
181
|
body = API.request('get', "ps/#{app_name}", token)
|
182
182
|
puts 'Failed to get processes.' unless body['success'] == 1
|
183
|
-
if body['data'] && body['data'].size && body['data'].size
|
183
|
+
if body['data'] && body['data'].size && body['data'].size >= 1
|
184
184
|
body['data'].each_with_index do |service, index|
|
185
185
|
puts "=== #{service[0]}: `#{service[1]['command']}`"
|
186
186
|
if service[1]['tasks'].empty?
|
data/lib/gleis/utils.rb
CHANGED
data/lib/gleis/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gleis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Bigler
|
@@ -178,7 +178,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
178
178
|
requirements:
|
179
179
|
- - ">="
|
180
180
|
- !ruby/object:Gem::Version
|
181
|
-
version: '2.
|
181
|
+
version: '2.2'
|
182
182
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
183
183
|
requirements:
|
184
184
|
- - ">="
|