gotsha 0.2.2 → 0.2.3

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: ae454dd9d8275719a0a1e4122be0075a6cdb198e5ce294829993d0b1ac3422da
4
- data.tar.gz: b68234f7ebec3d02720f30da620988c7d7b7bf16b53bcba2369711d59ec6ddc7
3
+ metadata.gz: f841293e7364e5d5f54063847dfe476567064dfe1db9a43508b40a25d02dfdef
4
+ data.tar.gz: dd632b63c1459d15cf9ccc8f23e08f772b81737173c2073dc450790a3f672c68
5
5
  SHA512:
6
- metadata.gz: 46efa5956c790a2ab91363ec7ad23fd8713d3945add64766c226e0494f891b637558ba6ddf9219472f9a83957d63e58a346449e755b7bd7b5baf93f7efe955cc
7
- data.tar.gz: 4c8d1e824084191a1d592059e01e22b1c80ff50cf397951c600db91713cdf853e9c4847b101a7aec12b1ba1dddb84990f9bab958caff2a5f801aecad9116bb44
6
+ metadata.gz: 59a83f98f3357c79205f9c5e69410f8d6d2d4e56148d2d7b06fc1ac648adaee2109dcf04d2b58a51c0ee904358c0a5b39ebcd032c4fcd2dedbbe21af0a877205
7
+ data.tar.gz: 3250fdc837dce2ddb76103cfc0a4754517a21f41f434a5b7e5ce2d2664a75cc0f53785a944938072949397bae10ec9f4c2c90acbaf8a105946066997d870133f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [0.2.3] - 2025-10-14
2
+
3
+ - Add support for running on CI (ENV var GOTSHA_CI)
4
+ - Fix changelog link
5
+
1
6
  ## [0.2.2] - 2025-10-13
2
7
 
3
8
  - Fix to ensure everything works on Mac as well
@@ -25,6 +25,8 @@ module Gotsha
25
25
  attr_reader :action_name
26
26
 
27
27
  def verify_configuration!
28
+ return if UserConfig.get(:ci)
29
+
28
30
  return if action_name.to_s == INIT_SETUP_ACTION
29
31
 
30
32
  raise(Errors::HardFail, "config files not found, please run `gotsha init` first") if UserConfig.blank?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gotsha
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gotsha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vitek Meloun
@@ -74,7 +74,7 @@ licenses:
74
74
  metadata:
75
75
  homepage_uri: https://www.gotsha.org/
76
76
  source_code_uri: https://github.com/melounvitek/gotsha
77
- changelog_uri: https://github.com/melounvitek/gotsha
77
+ changelog_uri: https://github.com/melounvitek/gotsha/blob/master/CHANGELOG.md
78
78
  rdoc_options: []
79
79
  require_paths:
80
80
  - lib