hephaestus 0.8.19.1 → 0.8.20.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: b865327c2867d5310e6380abe9bc8373e5a9f1c6f6f203429289930339cb2336
4
- data.tar.gz: 8c86a2e986751e726380db91256428fccca4121fc2c67a4bdc3736c85edaad38
3
+ metadata.gz: 3f8088ab73bdbf15a979d6fdd513540397926cf60477aab98cbae4183d91c5ea
4
+ data.tar.gz: be21d10c4f3eb1d0a6daee637aa60918c14fed591c6f48e4e604c92265c36da0
5
5
  SHA512:
6
- metadata.gz: 1764e34d18f231797dd25c5fc81714d9e223e487a1e0deb778f7f59aba1f2cd9945d24d1fb3f970985809650c7d7e3d9c3e631b7b352e34bacdb5a66feee3e8d
7
- data.tar.gz: f48c666ed401ef5ad6f6ea3e0fd840b80f892bb4a04a067939aa1ed2849050594467abf6e78a6a65f66388477444c9cd6120aaebcef2577811d5c6f7336be11e
6
+ metadata.gz: 7a9c935935d656368789cec0b5bcecb1c1677f371b7ca85bd85fe3c4092f5e8f8fc82dd328b7ed87e4e28221dcd68e06f4029451e4651de4cd85b7c0bb948dce
7
+ data.tar.gz: '09302f963deadd5b75da5c4e92aed732b4d099e903ac6b8992b3cbd19ae216c81a3cf886011fb50b72415713bb982394f63d08c81757c89803ac28bed27df8ab'
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [v0.8.20.1] - 10-04-2025
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.20...v0.8.20.1
3
+ # [v0.8.20] - 10-04-2025
4
+ ## What's Changed
5
+ * Provide a generic reoauth route by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/123
6
+
7
+
8
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.19.1...v0.8.20
1
9
  # [v0.8.19.1] - 09-04-2025
2
10
  **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.19...v0.8.19.1
3
11
  # [v0.8.19] - 08-04-2025
@@ -11,9 +11,15 @@ module Hephaestus
11
11
  end
12
12
 
13
13
  def edit
14
+ set_step
14
15
  render("settings/edit")
15
16
  end
16
17
 
18
+ def reoauth
19
+ set_step
20
+ render("settings/reoauth")
21
+ end
22
+
17
23
  def set_step
18
24
  @step = params.fetch(:step, 1).to_i || 1
19
25
  end
@@ -111,12 +111,16 @@ module Hephaestus
111
111
  $CHILD_STATUS.success?
112
112
  end
113
113
 
114
+ def compiling_assets?
115
+ ENV.fetch("PRECOMPILING", nil).present?
116
+ end
117
+
114
118
  def include_sudo?
115
119
  ENV.fetch("DOCKER", false) == "1" ? "sudo -E " : ""
116
120
  end
117
121
 
118
122
  # we need to check if the 1Password CLI is installed and load it ASAP,
119
123
  # because it contains all the secrets
120
- check_dependencies! unless Rails.env.local?
124
+ check_dependencies! if !Rails.env.local? && !compiling_assets?
121
125
  end
122
126
  end
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.8.19.1"
5
+ VERSION = "0.8.20.1"
6
6
  RAILS_VERSION = ">= 8.0"
7
7
  RUBY_VERSION = File
8
8
  .read("#{File.dirname(__FILE__)}/../../.ruby-version")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hephaestus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.19.1
4
+ version: 0.8.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-09 00:00:00.000000000 Z
11
+ date: 2025-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootsnap