gleis 0.7.0 → 0.7.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 +6 -0
- data/lib/gleis/config.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: e3280f3d9b314f1cec830590c37979bf254307805c88f1f411bf2c65b483c39c
|
4
|
+
data.tar.gz: 53c27f8be4e7b691bd3c1892cb806cdd3b3c65a9b92cda48826b60513bd6952f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8eb3cfbd61e91cb7488875ebe179cf09954fee641bbb510b1b33c1f0bd0495d53ed3a101b34b49deb8d408e707ec6002e8abc477e4259a108be021206ba6e7c
|
7
|
+
data.tar.gz: 4f543eb031d9c696be13dfce9f9638e429776ca65974041a06419d5ab9e159eb679cbc75fe22fb59e45a0ae550fc9a3294b761bdd29a306568af9e5b388b56be
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ 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.7.1 - 2020-03-20
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
|
12
|
+
- API URL to use .app top-level domain
|
13
|
+
|
8
14
|
## 0.7.0 - 2020-03-07
|
9
15
|
|
10
16
|
### Changed
|
data/lib/gleis/config.rb
CHANGED
@@ -2,7 +2,7 @@ module Gleis
|
|
2
2
|
# Global parameters of gleis gem and app config env variables
|
3
3
|
class Config
|
4
4
|
# Override default API URL if GLEIS_API_URL env variable is set
|
5
|
-
API_URL = ENV['GLEIS_API_URL'].nil? ? 'https://api.basel.gleis.
|
5
|
+
API_URL = ENV['GLEIS_API_URL'].nil? ? 'https://api.basel.gleis.app/' : ENV['GLEIS_API_URL']
|
6
6
|
API_VERSION = 'v0'.freeze
|
7
7
|
SSH_KEY_FILE_BASE = Dir.home + '/.ssh/gleis'
|
8
8
|
TOKEN_FILE = Dir.home + '/.gleis-token'
|
data/lib/gleis/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gleis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Bigler
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|