redmineup 1.0.9 → 1.0.11

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: 785a28d029a642ecf01ce919e3c4590b2e393bec640da155fb289eef8aedd1b9
4
- data.tar.gz: 4fcb6f8c483751c3a110adbcadc6d2ad78191b0204fc1178623d03b968a50e3b
3
+ metadata.gz: 9e598cbcf77d2b144b190a8c7640115025f9d09e10831e48357d38bb8f40f869
4
+ data.tar.gz: 2e07a723c8ec404883353f83777c95094d21d5f4a8a6a3f44ecea264d175aee1
5
5
  SHA512:
6
- metadata.gz: bf9f8165edb02007ef48a4f8cb56a3f89d60f11fdf771706037b701d1da24017933a057961bc941e19a2afa96affcd269341b14b5443cb76d39c34dff4c5553a
7
- data.tar.gz: fdc12c196149feb894ab2b02e46d0c216007e40adb9982e121ec208a80a1e5fa9ce77dbc66430ec54a806b9c87cc855a8d12fa0539db1bc539dcc33cf072b392
6
+ metadata.gz: 0a765e2cd45f2725f88f739bec80508bf7dfc7bdde5ee37825c16583c7fbaef8e89486daab5ae4003fb2472621630bb3045c10e2c5452069ecb46089ea5a66d0
7
+ data.tar.gz: 49b3819f6aa2f322d2157366956c8139a4da1922c67d7ea7d804e567d2df3ce41726ac0096df4a986681f2961ff4b03a858437c991ae9d4f8511c13792448ecc
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0"?>
2
2
  <svg xmlns="http://www.w3.org/2000/svg" class="icon--sprite">
3
3
  <defs>
4
- <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" id="icon--money">
4
+ <symbol viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" id="icon--money">
5
5
  <path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0" /><path d="M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4" /><path d="M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4" /><path d="M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4" /><path d="M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5" /><path d="M5 15v1m0 -8v1" />
6
6
  </symbol>
7
7
  </defs>
data/doc/CHANGELOG CHANGED
@@ -4,6 +4,10 @@ Redmine UP gem - general functions for plugins (tags, vote, viewing, currency)
4
4
  Copyright (C) 2011-2025 Kirill Bezrukov (RedmineUP)
5
5
  https://www.redmineup.com/
6
6
 
7
+ == 2025-02-04 v1.0.11
8
+
9
+ * Fixed bug with Redmine language settings
10
+
7
11
  == 2025-02-04 v1.0.9
8
12
 
9
13
  * Added regex_replace Liquid filter
@@ -1,3 +1,3 @@
1
1
  module Redmineup
2
- VERSION = '1.0.9'
2
+ VERSION = '1.0.11'
3
3
  end
data/lib/redmineup.rb CHANGED
@@ -56,7 +56,7 @@ module Redmineup
56
56
  end
57
57
  end
58
58
 
59
- require 'application_record' unless defined?(ApplicationRecord)
59
+ require 'application_record' if !defined?(ApplicationRecord) && Rails.version < '7.2.2'
60
60
 
61
61
  if defined?(ActiveRecord::Base)
62
62
  ActiveRecord::Base.send :include, Redmineup::ActsAsList::List
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmineup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - RedmineUP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-04 00:00:00.000000000 Z
11
+ date: 2025-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails