redmine_crm 0.0.62 → 0.0.63
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 +4 -4
- data/doc/CHANGELOG +4 -0
- data/lib/redmine_crm/compatibility/routing_mapper_patch.rb +2 -0
- data/lib/redmine_crm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6f025a0e487391530abd90ac50a2e4eae82f8f7dfe2a111b94fdf5bee72e49c
|
|
4
|
+
data.tar.gz: f4b6416ab62493a9909739545c70ec32ec22334409e07bf1270d6127a1149fcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd9eb904c28266a1d335f7b797c107686d74661bde31dee567de54c1aed2f556721b18621c1b2a03607f129d698e6b46525a325b5ca33c27663b7bce281c1b6a
|
|
7
|
+
data.tar.gz: c8e0342ed8a4f60fc7bb56d4e7b91d4e19f5b677fcb88f8f5dbe196515f86139a98c4f48ad003e3061b0b066fdac46c25128d4fc8889711cb70e2a6f68858a25
|
data/doc/CHANGELOG
CHANGED
|
@@ -4,6 +4,10 @@ Redmine crm gem - general functions for plugins (tags, vote, viewing, currency)
|
|
|
4
4
|
Copyright (C) 2011-2023 RedmineUP
|
|
5
5
|
https://www.redmineup.com/
|
|
6
6
|
|
|
7
|
+
== 2023-12-26 v0.0.63
|
|
8
|
+
|
|
9
|
+
* Compatibility fixes with attachment routes
|
|
10
|
+
|
|
7
11
|
== 2023-11-15 v0.0.62
|
|
8
12
|
|
|
9
13
|
* Redmine 5.1 compatibility fixes
|
|
@@ -12,6 +12,8 @@ module RedmineCrm
|
|
|
12
12
|
|
|
13
13
|
module InstanceMethods
|
|
14
14
|
def constraints_with_redmine_crm(options = {}, &block)
|
|
15
|
+
return constraints_without_redmine_crm(options, &block) unless options.is_a?(Hash)
|
|
16
|
+
|
|
15
17
|
options[:object_type] = /.+/ if options[:object_type] && options[:object_type].is_a?(Regexp)
|
|
16
18
|
constraints_without_redmine_crm(options, &block)
|
|
17
19
|
end
|
data/lib/redmine_crm/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redmine_crm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.63
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RedmineUP
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-12-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|