hephaestus 0.7.5.2 → 0.7.5.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: 928d807b8d8d2e174125ee833463fc3fa97deef22893eba2305b80379faa0b4b
4
- data.tar.gz: 016a160f195a5a18f07696dbe869d6af34abc44e30e92182bbf340303144b18e
3
+ metadata.gz: c3194bd2f901487254193134cea8684e93c3c9610a1af40bec9ab3669a343b41
4
+ data.tar.gz: cb07a5bcc0ec613ae2fa438fc10db957bf55cf222bb14c6ad5815a68bf2a0a96
5
5
  SHA512:
6
- metadata.gz: fade394953bbc451fbec3fb027fd85473ab28b3640ad06839aeec27042e6f8f2521204167bf8df8c97ebaddc52124c4b0874c42e2a6ac65ed3108f0f4c7aed9a
7
- data.tar.gz: 50027e4dda386f3156fa6c9e13684f3f474c192ab1f5d5af9de497dce2ed223105f2bfc6d923f131b00f1f880637298f5da2a17636c2a46d02012ea6e2262bdb
6
+ metadata.gz: 880abf42e09fe3b55aa0a48d1cc6acd5c42de3bb64c01400d821832beb01dfbab324fe40a0e32e4cc6d233e4a7972bb24de2b41142f7b5e5cc4fde68c37a852d
7
+ data.tar.gz: cf22ec5af5aea6921156206f262ec49f8f63bca2d397140edf5cf7236001efea40a83ca991e54d7463211a5143a9a44e8afcb113b75f05dd09911f47419b0cf3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # [v0.7.5.3] - 20-11-2024
2
+ **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.5.2...v0.7.5.3
1
3
  # [v0.7.5.2] - 20-11-2024
2
4
  **Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.7.5.1...v0.7.5.2
3
5
  # [v0.7.5.1] - 20-11-2024
@@ -4,18 +4,20 @@
4
4
  require "slack_webhook_logger"
5
5
 
6
6
  Rails.application.configure do
7
- SlackWebhookLogger.setup do |config|
8
- # Webhook URL
9
- #
10
- # The URL where messages will be sent.
11
- config.webhook_url = Hephaestus::SLACK_LOG_URL
7
+ config.after_initialize do
8
+ SlackWebhookLogger.setup do |config|
9
+ # Webhook URL
10
+ #
11
+ # The URL where messages will be sent.
12
+ config.webhook_url = Hephaestus::SLACK_LOG_URL
12
13
 
13
- # The minimum error level to see in Slack.
14
- #
15
- # All log levels are supported, but don't do anything less then :warn since Slack only allows one message
16
- # per minute.
17
- config.level = :WARN
14
+ # The minimum error level to see in Slack.
15
+ #
16
+ # All log levels are supported, but don't do anything less then :warn since Slack only allows one message
17
+ # per minute.
18
+ config.level = :WARN
18
19
 
19
- config.ignore_patterns = [/Can't verify CSRF token authenticity/, /is not a valid MIME type/]
20
+ config.ignore_patterns = [/Can't verify CSRF token authenticity/, /is not a valid MIME type/]
21
+ end
20
22
  end
21
23
  end
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Hephaestus
5
- VERSION = "0.7.5.2"
5
+ VERSION = "0.7.5.3"
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.7.5.2
4
+ version: 0.7.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian