hephaestus 0.8.3 → 0.8.3.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: ed93f514ac91692c68eaac49059790dc4a3a391e6040449279d76acff1416e14
4
- data.tar.gz: 547f7f2a54db6489684616b5f54fa900f1aa93c47d81a8606355f9d7f1f549de
3
+ metadata.gz: 688c4f3a753643db48809917ef35d7c2d5a62f32d7fe77e29bbe3b1e3ca6832a
4
+ data.tar.gz: 2228781a2b6bf3218e45f7a687e0216298d9fb67414db9fd48a6bec6de24d6ba
5
5
  SHA512:
6
- metadata.gz: c39f56ef20d9be6f04b04e7a6e3db474346c788fa1c1fd5fe7ef7fd989cfdd21a09e80745cec4032e3df7469908f3b5abc6ec97448411d710e52335117a426a8
7
- data.tar.gz: 39e3eda1114b13ad074cae157cb824946d2ab10b4fb682c45fff6cd8c551e2f3e8445534b629de1510101b1191d837b1a3531178eda3a1e5bc11101fbda9797a
6
+ metadata.gz: 659cb0f005822338eb2973bae5136bb41bc23388c925c79e6facf292021816cd5e27a8b39363f6ebf55e570416d766c65deceffb313a9f32d5959178751f229c
7
+ data.tar.gz: 2bdf24c8da1ab8fa4a86cc93b3237e7ddc375f3735f03db6cd837efb1618e43b6bde2851391700226dfe8790ac263451a8331c0f3eb172eee5fa2a3ae82d8253
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.8.3.1] - 26-11-2024
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.3...v0.8.3.1
1
3
  # [v0.8.3] - 26-11-2024
2
4
  **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.2...v0.8.3
3
5
  # [v0.8.2] - 25-11-2024
@@ -65,10 +65,10 @@ module Hephaestus
65
65
  # we need to check if the 1Password CLI is installed and load it ASAP,
66
66
  # because it contains all the secrets
67
67
  def fetch_infra_secret(label:, default:)
68
- if productionish?
69
- op_read("op://Infra/Global Secrets/#{label}")
70
- else
68
+ if Rails.env.local?
71
69
  ENV.fetch(label, default.is_a?(Pathname) ? default.read : default)
70
+ else
71
+ op_read("op://Infra/Global Secrets/#{label}")
72
72
  end
73
73
  end
74
74
  end
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.8.3"
5
+ VERSION = "0.8.3.1"
6
6
  RAILS_VERSION = ">= 8.0"
7
7
  RUBY_VERSION = File
8
8
  .read("#{File.dirname(__FILE__)}/../../.ruby-version")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hephaestus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian