bas 1.7.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9f505d7850c3919b347404145a4726ff844ff013cd88d53c2c6cd7048813433
4
- data.tar.gz: d4cbd5a13c738328e1e3cb6ac074e0f99651a9b1164ed950b513a82755925d81
3
+ metadata.gz: 63490ab5165fd3aa1793a7521272869addb0ebd691d65e7e300b757af770b6fe
4
+ data.tar.gz: 834e5ff6ebe43795ddfd94fa19f7d3435cd6ae99fc24902abdec2a8c3215ce3d
5
5
  SHA512:
6
- metadata.gz: a72da3b92488a3bd5dbed765bceca52d37673b56d30fa993b8edf086222ca87590c8c660fd7ffaa40a676468475570e3fd17e1ba18ef82dbff81bd5dd12eb4df
7
- data.tar.gz: 7d4f3bc5aa96f8d47c9ed28b12997ff51c91c933d639e13ded66e857e5dffd7add4883765a648bcebf7ee06a25b593ccaed8ce00da4a676e5b86b0a03f07228a
6
+ metadata.gz: 97a51249e553a947453084004b2c4701f801bd43a9b14c439721fe1f3e2262813ac541ce0326262997757368eddfc46e08390938f116eef3eb75ecdb80d5e41d
7
+ data.tar.gz: 2d0d10c08ae2c5a1810e88c624e42d11dbf16ecacc45184185f0ff55caf27a0819b37baeb645991d3eac1ace9595dd1fedba1c4c7939460d824acfaa0fcc1d86
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ # 1.7.1 (11.02.2025)
4
+ - [Fix absolute_path in order to execute the scripts](https://github.com/kommitters/bas/pull/133)
5
+
3
6
  # 1.7.0 (10.02.2025)
4
7
  - [Add orchestrator logic into the gem](https://github.com/kommitters/bas/issues/130)
5
8
  - [Improve and update test suite](https://github.com/kommitters/bas/issues/129)
@@ -85,7 +85,9 @@ module Bas
85
85
 
86
86
  def execute(script)
87
87
  puts "Executing #{script[:path]} at #{current_time}"
88
- system("ruby ", script[:path])
88
+ absolute_path = File.expand_path(script[:path], __dir__)
89
+
90
+ system("ruby", absolute_path)
89
91
  end
90
92
  end
91
93
  end
data/lib/bas/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bas
4
4
  # Gem version
5
- VERSION = "1.7.0"
5
+ VERSION = "1.7.1"
6
6
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bas
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - kommitters Open Source
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-02-10 00:00:00.000000000 Z
10
+ date: 2025-02-11 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: httparty