git_worktree_manager 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf1ff1922c431706dce4a8160bbcbac32a7dde11836ca68868d8c503ae07f020
4
- data.tar.gz: 2808f12af4406898b3231f862f2633431c31a51b0d57bd72bef491e1905dc546
3
+ metadata.gz: 71772c1133d8c008dd6944685471fce2e8bd3f6339cf06868daf853190aaf816
4
+ data.tar.gz: 7b9b096bc8fda27573d9732bdb9ec5bdd2584067d84e7a6886b00193c6e9f914
5
5
  SHA512:
6
- metadata.gz: 7e1b102c36f8f93ee543b9979e9cbc09301372b01870515e946e757e0d2211a3e3c4f3098f16c3bcdf42a48598c59951c8b7ef38c5d0d934f4231f86fc9b82aa
7
- data.tar.gz: 7c2c3fe1881d400933e9f46d085d21a45b6c61407939bd05c3a3c3e34c18fee50b05b5acc1c734888bf25420cb52156fd2c7132cbf253e618af05472702e156c
6
+ metadata.gz: c139d086b78dd45d30311064794f36fad0e3a30975a357b15e6cd5e86c78c018f97cbcb7eaa9b48b938954552e2b45e3d7207328f8b8828a09ed1366c3c70222
7
+ data.tar.gz: 530453c1e6115f0bcdb134c2b71d3c10cd6d6741ad8548b94b33143c4418416137e5e159ec3c61614e1baa1a06db00af62cda79db0af59feedf97f5c5a21b331
@@ -76,7 +76,7 @@ module GitWorktreeManager
76
76
  def load_config
77
77
  return {} unless File.exist?(@config_file)
78
78
 
79
- YAML.load_file(@config_file) || {}
79
+ YAML.load_file(@config_file, aliases: true) || {}
80
80
  rescue StandardError => e
81
81
  warn "Warning: Could not load config file: #{e.message}"
82
82
  {}
@@ -101,7 +101,7 @@ module GitWorktreeManager
101
101
 
102
102
  if File.exist?(db_config_path)
103
103
  require 'yaml'
104
- db_config = YAML.load_file(db_config_path)
104
+ db_config = YAML.load_file(db_config_path, aliases: true)
105
105
  return db_config.dig('development', 'database') if db_config.dig('development', 'database')
106
106
  end
107
107
 
@@ -125,7 +125,7 @@ module GitWorktreeManager
125
125
  def load_config
126
126
  return {} unless File.exist?(@config_file)
127
127
 
128
- YAML.load_file(@config_file) || {}
128
+ YAML.load_file(@config_file, aliases: true) || {}
129
129
  rescue StandardError => e
130
130
  warn "Warning: Could not load config file: #{e.message}"
131
131
  {}
@@ -1,3 +1,3 @@
1
1
  module GitWorktreeManager
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_worktree_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franck