hephaestus 0.8.19 → 0.8.19.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: bbdf4f3a5c6472e793f2e4a5cca2d8588d8fc7edf8a713db536671e48c5b8adc
4
- data.tar.gz: 1d85b74ed6a67234ef911135c6a25d51f2ae5f015d8eec3dd2f8e45611144d9d
3
+ metadata.gz: b865327c2867d5310e6380abe9bc8373e5a9f1c6f6f203429289930339cb2336
4
+ data.tar.gz: 8c86a2e986751e726380db91256428fccca4121fc2c67a4bdc3736c85edaad38
5
5
  SHA512:
6
- metadata.gz: 53815be1097fac20d441f5a63be128e8cd0af9cbb152a02b1b449747aa376623dd3079ff84f9fca003174464688cd1b321ec448f6cfd42e3c7ef72ca3195bff2
7
- data.tar.gz: 8398911ad7a8a1359e803dfc07dd88a0d42fde211a75f16fbc0c20a28fa4fc1cdb95f874e29c002423090f35179c490b3d5b58f189c78506fb873fdd3d57ebb0
6
+ metadata.gz: 1764e34d18f231797dd25c5fc81714d9e223e487a1e0deb778f7f59aba1f2cd9945d24d1fb3f970985809650c7d7e3d9c3e631b7b352e34bacdb5a66feee3e8d
7
+ data.tar.gz: f48c666ed401ef5ad6f6ea3e0fd840b80f892bb4a04a067939aa1ed2849050594467abf6e78a6a65f66388477444c9cd6120aaebcef2577811d5c6f7336be11e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.8.19.1] - 09-04-2025
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.19...v0.8.19.1
1
3
  # [v0.8.19] - 08-04-2025
2
4
  ## What's Changed
3
5
  * Protect staff pages with basic auth by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/120
@@ -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.19.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
4
+ version: 0.8.19.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-08 00:00:00.000000000 Z
11
+ date: 2025-04-09 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