redmineup 1.1.0 → 1.1.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: 1d9641fde0d380147805eb9c4a091b952e944d8fe20b7b3ca50e49a0a30b3caa
4
- data.tar.gz: 62481de6881b314734528adc59139a120b3abc2dc86298ffcd6c1ee8a0d1c69d
3
+ metadata.gz: 76f5a4d3899e50e2b909d22cbe8f194b5ff0dc4fb98a50c3768766f4e3f78bb2
4
+ data.tar.gz: ede3c4a7c7409f0ad15b7597a7d86b3e6725a1b70c2e3d8df4ff3318fe431a71
5
5
  SHA512:
6
- metadata.gz: '0790f736703855ee89e2755bd4e314f71d2c49da6a2294b5f777e0e14175d624502ac260bcf4e8f50b4c29b491b2bbf39aed0e3c64d0807b5b780e9dca394c0d'
7
- data.tar.gz: 7e96ce727a5557d41275e0d6b16b0047d7e3d922eb3557fed5c653a54b2ea4925eff773eafa5b1cd81fedce2408afb007e8508d359285b4a9d46d11fb0d40d78
6
+ metadata.gz: 1917ae06cddf7acfc504d10fe84e58467f7952826b61ea86fd1e202cccf588d9a883ffc6f1b37cc452b758aca7f072b42986852da53833b135a417f7e294ddcd
7
+ data.tar.gz: e14175ab0a0ab34fcf0915e0f07b36f2728bdcb0af63b163024d7c92fa4e04e2adaafa44de43506acd3e1ddfaac2518581930b678408aa5f4e09cfe6cfb8311e
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-10-24 v1.1.1
8
+
9
+ * Fixed activation for sprite_icon patch
10
+
7
11
  == 2025-07-24 v1.1.0
8
12
 
9
13
  * Added ActionCable methods
@@ -3,12 +3,10 @@ module Redmineup
3
3
  module Compatibility
4
4
  module SpritePatch
5
5
  def self.included(base)
6
- base.send(:include, InstanceMethods)
7
- end
8
-
9
- module InstanceMethods
10
- def sprite_icon(icon_name, label = nil, icon_only: false, size: '18', css_class: nil, sprite: "icons", plugin: nil, rtl: false)
11
- label
6
+ base.class_eval do
7
+ def sprite_icon(icon_name, label = nil, icon_only: false, size: '18', css_class: nil, sprite: "icons", plugin: nil, rtl: false)
8
+ label
9
+ end
12
10
  end
13
11
  end
14
12
  end
@@ -16,6 +14,6 @@ module Redmineup
16
14
  end
17
15
  end
18
16
 
19
- unless ActionView::Base.included_modules.include?(Redmineup::Patches::Compatibility::SpritePatch)
20
- ActionView::Base.send(:include, Redmineup::Patches::Compatibility::SpritePatch)
17
+ unless ApplicationHelper.included_modules.include?(Redmineup::Patches::Compatibility::SpritePatch)
18
+ ApplicationHelper.send(:include, Redmineup::Patches::Compatibility::SpritePatch)
21
19
  end
@@ -1,3 +1,3 @@
1
1
  module Redmineup
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
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.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - RedmineUP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-24 00:00:00.000000000 Z
11
+ date: 2025-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails