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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97ef2212b1a8f95156b775dda16fc0db73b6cee054c2a87909c4e66e3e016061
4
- data.tar.gz: 8e8db7c3128364ce377a8dfc0370f56cff50cea97224961b29b7723e7d9b1ea7
3
+ metadata.gz: acfbd833f5f9da8e6b157b99109fdb1568d496678446b80d23f972e997601fb6
4
+ data.tar.gz: 4baee0e83ea956375deb9a379ae620e2c27482045e5f1a0b75f2fcc16017de57
5
5
  SHA512:
6
- metadata.gz: fff144b88f312d7152cab557932d7499205aa5ac7469b9142da7ae740e9c81bc25f77633fab010bc84379aef5a18c29cb7a118783a235a9e4f272409b101239f
7
- data.tar.gz: f4486cd4786412a46d7bd98e22d312fcb998f87d98c6948ca6ce3605f5f882127b53d381caea050d58adfe2bc358d081eab99016132bf61dcf621cce7be892bb
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.0 2022-12-20
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- geordi (9.4.0)
4
+ geordi (9.4.1)
5
5
  thor (~> 1)
6
6
 
7
7
  GEM
data/exe/b CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  call = ARGV.dup
4
- call = ['bundle', 'exec'] + call if File.exists?('Gemfile')
4
+ call = ['bundle', 'exec'] + call if File.exist?('Gemfile')
5
5
  exec *call
6
-
data/exe/dumple CHANGED
@@ -27,7 +27,7 @@ end
27
27
 
28
28
  def cd_to_project_root(fail_gently)
29
29
  current = Dir.pwd
30
- until File.exists?(DB_CONFIG_PATH)
30
+ until File.exist?(DB_CONFIG_PATH)
31
31
  Dir.chdir '..'
32
32
  if current == Dir.pwd
33
33
  if fail_gently
@@ -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.exists?(global_path)
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.exists?(local_path)
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.exists?('.firefox-version')
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.exists?(binstub_file) ? binstub_file : "bundle exec #{executable}"
83
+ File.exist?(binstub_file) ? binstub_file : "bundle exec #{executable}"
84
84
  end
85
85
 
86
86
  def console_command(environment)
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '9.4.0'.freeze
2
+ VERSION = '9.4.1'.freeze
3
3
  end
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.0
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: 2022-12-20 00:00:00.000000000 Z
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.26
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