hephaestus 0.8.19 → 0.8.20

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: bbdf4f3a5c6472e793f2e4a5cca2d8588d8fc7edf8a713db536671e48c5b8adc
4
- data.tar.gz: 1d85b74ed6a67234ef911135c6a25d51f2ae5f015d8eec3dd2f8e45611144d9d
3
+ metadata.gz: 29f08d2285495a0204b82adbb3e7c20f33c01fc6968a6b0fc0e89732b294503a
4
+ data.tar.gz: 998625267b0deaac98f51978f7bf720383d3a1b4bbcbe234bc65e109d1d6fb59
5
5
  SHA512:
6
- metadata.gz: 53815be1097fac20d441f5a63be128e8cd0af9cbb152a02b1b449747aa376623dd3079ff84f9fca003174464688cd1b321ec448f6cfd42e3c7ef72ca3195bff2
7
- data.tar.gz: 8398911ad7a8a1359e803dfc07dd88a0d42fde211a75f16fbc0c20a28fa4fc1cdb95f874e29c002423090f35179c490b3d5b58f189c78506fb873fdd3d57ebb0
6
+ metadata.gz: 6cf59e059f1d1f939179c0b60b8e2d6d0e821736314490918df1026b1f9c176de439db0734c0eca66011c028c608b55352e484acb2b9e51f80ed4a16cdc50dee
7
+ data.tar.gz: d9d76a0dfd09e905c0b27ec64e8848a9c7512998a0911c7bfa1302ecf1fe17c69ded33d7a586694fef7e168d9dd18899b84aca4b65e738ad1861c63b877b25cd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [v0.8.20] - 10-04-2025
2
+ ## What's Changed
3
+ * Provide a generic reoauth route by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/123
4
+
5
+
6
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.19.1...v0.8.20
7
+ # [v0.8.19.1] - 09-04-2025
8
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.19...v0.8.19.1
1
9
  # [v0.8.19] - 08-04-2025
2
10
  ## What's Changed
3
11
  * Protect staff pages with basic auth by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/120
@@ -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
@@ -7,7 +7,7 @@
7
7
 
8
8
  <%= yield :head %>
9
9
 
10
- <%= stylesheet_link_tag "tailwind", media: "all" %>
10
+ <%= stylesheet_link_tag "hephaestus/application", "data-turbo-track": "reload" %>
11
11
  </head>
12
12
  <body>
13
13
 
@@ -41,6 +41,10 @@ module Hephaestus
41
41
  end
42
42
  end
43
43
 
44
+ initializer "hephaestus.assets" do |app|
45
+ app.config.assets.paths << root.join("app/assets/builds")
46
+ end
47
+
44
48
  class << self
45
49
  def insert_routes
46
50
  Rails.application.routes.draw do
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.8.19"
5
+ VERSION = "0.8.20"
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
4
+ version: 0.8.20
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-08 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
@@ -403,7 +403,7 @@ files:
403
403
  - CHANGELOG.md
404
404
  - LICENSE.txt
405
405
  - README.md
406
- - app/assets/tailwind/application.css
406
+ - app/assets/stylesheets/hephaestus/application.css
407
407
  - app/controllers/concerns/hephaestus/responses.rb
408
408
  - app/controllers/concerns/hephaestus/session_auth.rb
409
409
  - app/controllers/concerns/hephaestus/validates_from_yetto.rb