redmineup 1.0.7 → 1.0.8
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08acb095c1f949aee4c07b3cb4a9ff4c39ee22047d02108cc776f6f9a5a332c7'
|
4
|
+
data.tar.gz: 7639a6bb42193a8f9b274bb588e47f726e3be608c0ba789dc3c5ec7ce870f063
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 386b10e29e1a3b77520fc92b7e1b5837336d57bec75ef7fd129ecf7dd8cd4e64c0cae5424dec169ff4e5ca2ae5dc378ac984973c5fd2eed982f9c7e8a76812d5
|
7
|
+
data.tar.gz: 164fa573d77747b767fdee953beec2c0c9c373bb7366a6426bbe5efbc6c741a608326402dccb348e1c499d545e6b26fb6e8008306b0ce39633d1b6530c313d88
|
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-01-31 v1.0.8
|
8
|
+
|
9
|
+
* Fixed compatibility patch for Redmine < 5
|
10
|
+
|
7
11
|
== 2025-01-29 v1.0.7
|
8
12
|
|
9
13
|
* Fixed parse_inline_attachments Liquid filter
|
@@ -16,6 +16,6 @@ module Redmineup
|
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
19
|
-
unless
|
20
|
-
|
19
|
+
unless ActionView::Base.included_modules.include?(Redmineup::Patches::Compatibility::SpritePatch)
|
20
|
+
ActionView::Base.send(:include, Redmineup::Patches::Compatibility::SpritePatch)
|
21
21
|
end
|
@@ -4,7 +4,7 @@ end
|
|
4
4
|
if Redmine::VERSION.to_s < "5"
|
5
5
|
require 'redmineup/patches/compatibility/user_patch'
|
6
6
|
end
|
7
|
-
|
7
|
+
if Redmine::VERSION.to_s < "6"
|
8
8
|
require 'redmineup/patches/compatibility/sprite_patch'
|
9
9
|
end
|
10
10
|
require 'redmineup/patches/compatibility/routing_mapper_patch'
|
data/lib/redmineup/version.rb
CHANGED
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.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- RedmineUP
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|