geordi 9.4.0 → 9.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/Gemfile.lock +1 -1
- data/exe/b +1 -2
- data/exe/dumple +1 -1
- data/lib/geordi/settings.rb +3 -3
- data/lib/geordi/util.rb +1 -1
- data/lib/geordi/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: acfbd833f5f9da8e6b157b99109fdb1568d496678446b80d23f972e997601fb6
|
4
|
+
data.tar.gz: 4baee0e83ea956375deb9a379ae620e2c27482045e5f1a0b75f2fcc16017de57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b98db037dd7d2b647236996c529102e486c30abb7b5037b138db6048ad366a6dfb39d367df8354f3a2a51441eb59382ff908d777bca04a6320efb6ea1fc1562
|
7
|
+
data.tar.gz: 4fd187318f0439a29e1ecf59de2bfebabc3de278b02a82a9b1587e493b11a6d2a24e74f25d702108b3b45b1fd252ad4c1360e66e1399ec034db3684cfce826a6
|
data/CHANGELOG.md
CHANGED
@@ -10,7 +10,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
10
10
|
### Breaking changes
|
11
11
|
|
12
12
|
|
13
|
-
## 9.4.
|
13
|
+
## 9.4.1 2023-01-09
|
14
|
+
|
15
|
+
### Compatible changes
|
16
|
+
|
17
|
+
- Ruby 3.2 support
|
18
|
+
|
19
|
+
|
20
|
+
## 9.4.0 2022-12-09
|
14
21
|
|
15
22
|
### Compatible changes
|
16
23
|
* `branch` command: Git user initials are now stored in config file
|
data/Gemfile.lock
CHANGED
data/exe/b
CHANGED
data/exe/dumple
CHANGED
data/lib/geordi/settings.rb
CHANGED
@@ -77,10 +77,10 @@ module Geordi
|
|
77
77
|
global_path = GLOBAL_SETTINGS_FILE_NAME
|
78
78
|
local_path = LOCAL_SETTINGS_FILE_NAME
|
79
79
|
|
80
|
-
global_settings = if File.
|
80
|
+
global_settings = if File.exist?(global_path)
|
81
81
|
YAML.safe_load(File.read(global_path))
|
82
82
|
end
|
83
|
-
local_settings = if File.
|
83
|
+
local_settings = if File.exist?(local_path)
|
84
84
|
YAML.safe_load(File.read(local_path))
|
85
85
|
end
|
86
86
|
|
@@ -88,7 +88,7 @@ module Geordi
|
|
88
88
|
unless ENV[SETTINGS_WARNED]
|
89
89
|
check_for_invalid_keys(global_settings, ALLOWED_GLOBAL_SETTINGS, global_path)
|
90
90
|
check_for_invalid_keys(local_settings, ALLOWED_LOCAL_SETTINGS, local_path)
|
91
|
-
Interaction.warn "Unsupported config file \".firefox-version\". Please remove it." if File.
|
91
|
+
Interaction.warn "Unsupported config file \".firefox-version\". Please remove it." if File.exist?('.firefox-version')
|
92
92
|
|
93
93
|
ENV[SETTINGS_WARNED] = 'true'
|
94
94
|
end
|
data/lib/geordi/util.rb
CHANGED
@@ -80,7 +80,7 @@ module Geordi
|
|
80
80
|
def binstub_or_fallback(executable)
|
81
81
|
binstub_file = "bin/#{executable}"
|
82
82
|
|
83
|
-
File.
|
83
|
+
File.exist?(binstub_file) ? binstub_file : "bundle exec #{executable}"
|
84
84
|
end
|
85
85
|
|
86
86
|
def console_command(environment)
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geordi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.4.
|
4
|
+
version: 9.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henning Koch
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
119
|
- !ruby/object:Gem::Version
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
|
-
rubygems_version: 3.3.
|
122
|
+
rubygems_version: 3.3.9
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: Collection of command line tools we use in our daily work with Ruby, Rails
|