Skip to content

Commit 942b479

Browse files
committed
testing
1 parent 1b13c25 commit 942b479

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

app/views/shared/_footer.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<footer class="footer mt-auto py-3">
33
<div class="container">
44
<div class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
5-
<!--<p class="col-md-5 mb-0 text-muted">&copy; 2023 <%= _('Peter') %> Giacomo Lombardo Version <%= Settings.version %></p>-->
6-
<p class="col-md-5 mb-0 text-muted">&copy; 2023 <%= _('Peter') %> Giacomo Lombardo Version <%= ENV['GBV.version'] %></p>
5+
<p class="col-md-5 mb-0 text-muted">&copy; 2023 <%= _('Peter') %> Giacomo Lombardo, Version: <%= Settings.version %></p>
6+
<!--<p class="col-md-5 mb-0 text-muted">&copy; 2023 <%= _('Peter') %> Giacomo Lombardo Version <%= ENV['GBV.version'] %></p>-->
77
<%= link_to root_path(locale: locale.to_s), class: "col-md-2 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none" do %>
88
<picture>
99
<% if Settings.brand.nil? || Settings.brand.light_logo.nil? %>

config/application.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
require_relative "boot"
22

33
require "rails/all"
4+
require 'git-version-bump'
5+
46

57
# Require the gems listed in Gemfile, including any gems
68
# you've limited to :test, :development, or :production.
79
Bundler.require(*Rails.groups)
810

11+
912
module PasswordPusher
1013
class Application < Rails::Application
1114
# Initialize configuration defaults for originally generated Rails version.
1215
config.load_defaults 7.0
13-
16+
puts ENV["USER"]
17+
puts Settings.version
18+
# Settings.version = '1.50.0'
19+
VERSION = GVB.version
20+
puts VERSION
1421
# Configuration for the application, engines, and railties goes here.
1522
#
1623
# These settings can be overridden in specific environments using the files

config/settings.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
### Application Defaults
99
#
10-
10+
version: 'v1.51.0'
1111
### URL Pushes
1212
#
1313
# Enable or disable URL based pushes. These allow you to share URLs securely.
@@ -857,3 +857,4 @@ log_to_stdout: false
857857
#
858858
# Environment variable override: PWP__RELATIVE_ROOT='pwpush'
859859
# relative_root: 'pwpush'
860+

0 commit comments

Comments
 (0)