rails_app_version 1.3.0 → 1.3.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: c41e184fea20b627c872461c8fa973f24e1d7796ab17f285139254c5dea9347b
4
- data.tar.gz: 37a270bd254b40ae1266f2ccf6ca3333e9eeea4e045487b5c6ba9c71a66f25da
3
+ metadata.gz: bab0a1547a7b7c4aed17de08d9f405752942a40b6aeb6e7ad1ce5b00757de0fb
4
+ data.tar.gz: ae97936999cb05c67d539681bf211313877b06a60b6ed29517f61a090e0f0d3d
5
5
  SHA512:
6
- metadata.gz: 937af3be9c3f04a6fad951baba9534bd55f8c71ffe5b353c3ff57820987b60be5465b771acd4d5409f2501c9b9f36f4fc976d2d01cc2e9945aed274abb14b725
7
- data.tar.gz: 6d8c60f28f77268385bb89eb1c4b791226359bf29b50af21be981e9dac9c69c036f238c31de69830d568b88df7df4eadf6332477de6a1f9295f2a5c0054815d3
6
+ metadata.gz: fee994f66b3c8b4df1ac46e7f62a3d8193200836fc71b9a004581e8dc24695a0cdcb5970513f462d920d32119e4193555b21396fe97635af04ae8c5e1739694e
7
+ data.tar.gz: d643d168ad86edb3ce973dfb35cf9127ca7b014c93cd8f08fbad8c17d2f1309381cc3ee4ca8ce2c8b76f1fc3bc1bf055e068e69f84146ecafceea5f70c32cc96
@@ -20,6 +20,11 @@ module RailsAppVersion
20
20
  print_console_banner
21
21
  end
22
22
 
23
+ initializer "rails_app_version.extend_application", before: :bootstrap_hook do
24
+ Rails::Application.include AppEnvironment
25
+ Rails::Application.include AppVersion
26
+ end
27
+
23
28
  initializer "rails_app_version.fetch_config" do |app|
24
29
  @app_config = load_config(app)
25
30
  @version = Version.create(@app_config[:version], @app_config[:revision])
@@ -34,11 +39,6 @@ module RailsAppVersion
34
39
  end
35
40
  end
36
41
 
37
- initializer "rails_app_version.extend_application" do |app|
38
- Rails::Application.include AppEnvironment
39
- Rails::Application.include AppVersion
40
- end
41
-
42
42
  private
43
43
 
44
44
  def load_config(app)
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsAppVersion
4
- VERSION = "1.3.0"
4
+ VERSION = "1.3.1"
5
5
 
6
6
  class Version < Gem::Version
7
7
  attr_reader :major, :minor, :patch, :pre, :revision
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_version
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdelkader Boudih
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-14 00:00:00.000000000 Z
10
+ date: 2025-03-15 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: railties