all_images 0.11.0 → 0.11.2

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: 49e26db69f4f2c9fd83c5b96c046f7c40b59c62fcfde0217d6a85392ab1963b5
4
- data.tar.gz: 695517081a33db301dcde83390c400d1ec745a4df2de45ce49ff53790caf5e66
3
+ metadata.gz: 867a957c23f40a51b4635d1dcf7c64b4f9048225817a2232d95592c8256fc64b
4
+ data.tar.gz: e06511c7ff41ad563b4af373b4e7e92c0c33e79a4e55c520fa45649505288f06
5
5
  SHA512:
6
- metadata.gz: 9461d9f48d5c2c52c70b33a9ad698bf819bcfdc23751a2e0dd580e5196fa752e9c5bc76d7268b92e7fccf3f6dd80226bc0f4aed8d1af81374dcd3f863ef81512
7
- data.tar.gz: 2de6051d772b9cf0db28880bdf0d1e37cb6bca8d1b5054951e03d6e5076d1190763e34a1eab077baa826ee4705f0c879b496d20a1b8ea6f4e9171293e732c689
6
+ metadata.gz: 4a075147ba9985c917d8d3f39b8243121940c279664b882d149c29cbafbb6c5eb1605392cace3645287efd46077d643f9f59aac5b272a8e25f0ec738b4e5a83e
7
+ data.tar.gz: 1f9c2f731c5be7be717434ae98f79e87c09f5df34845a0e6c42e95e3c19eba8fc488c1e18e04f35cf5c80d989d48c5c56e648cc9c764ab3d3e2a19eab6764d8e
data/CHANGES.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-01-02 v0.11.2
4
+
5
+ - Updated rake execution to use `bundle exec` for consistent dependency
6
+ management
7
+
8
+ ## 2026-01-02 v0.11.1
9
+
10
+ - Handle `nil` configuration gracefully when retrieving images to improve
11
+ robustness
12
+ - Escape escape sequences in config script
13
+ - Maintain backward compatibility while making the application more resilient
14
+ to configuration issues
15
+
3
16
  ## 2026-01-02 v0.11.0
4
17
 
5
18
  - Added `CHANGES.md` file to package by updating the `changelog` configuration
data/all_images.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: all_images 0.11.0 ruby lib
2
+ # stub: all_images 0.11.2 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "all_images".freeze
6
- s.version = "0.11.0".freeze
6
+ s.version = "0.11.2".freeze
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
@@ -85,7 +85,7 @@ class AllImages::App
85
85
  # @return [ Array<String> ] an array containing the names of Docker images
86
86
  # to be processed by the application
87
87
  def images
88
- Array(@config['images'])
88
+ Array(@config&.[]('images'))
89
89
  end
90
90
 
91
91
  # Prints the given text using green colored output
@@ -23,12 +23,12 @@ module AllImages::Config
23
23
  RUN gem install bundler gem_hadar
24
24
 
25
25
  script: &script |-
26
- echo -e "\e[1m"
26
+ echo -e "\\e[1m"
27
27
  ruby -v
28
- echo -e "\e[0m"
28
+ echo -e "\\e[0m"
29
29
  bundle update --all
30
30
  bundle install --jobs=$(getconf _NPROCESSORS_ONLN)
31
- rake spec
31
+ bundle exec rake spec
32
32
 
33
33
  fail_fast: true
34
34
 
@@ -1,6 +1,6 @@
1
1
  module AllImages
2
2
  # AllImages version
3
- VERSION = '0.11.0'
3
+ VERSION = '0.11.2'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: all_images
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank