redmine_events_manager 0.5.1 → 0.5.2
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/db/migrate/20160509152749_create_delayed_jobs.rb +2 -2
- data/db/migrate/20160717222418_create_event_exceptions.rb +2 -2
- data/db/migrate/20180331122033_create_listener_options.rb +2 -2
- data/db/migrate/20180419202618_add_enabled_to_listener_options.rb +2 -2
- data/db/migrate/20180711170315_rename_plugin_events_manager_to_redmine_events_manager.rb +2 -2
- data/dependencies.yaml +1 -1
- data/lib/redmine_events_manager/patches/issue_patch.rb +0 -2
- data/lib/redmine_events_manager/patches/issue_relation_patch.rb +0 -2
- data/lib/redmine_events_manager/patches/journal_patch.rb +0 -2
- data/lib/redmine_events_manager/patches/time_entry_patch.rb +0 -2
- data/lib/redmine_events_manager/version.rb +1 -1
- data/redmine_events_manager.gemspec +2 -2
- data/spec/models/event_exception_spec.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee43893f28dc19842862134f30287669bcaf4a9ab81cef7c36278a862d9d3bf9
|
|
4
|
+
data.tar.gz: 9bfdf9b4902772a9efea0ca690e061520d7d299cc42efa1305110edc0d82a6ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ed4d27b5a70f7c3bcd8a4107320f3b9fbd0a4dfda32a0ae5830350a0b2287e15b4d2ef87d01cb3e00e049e7edf592af488295dcf1e240fe9fabca06b2d79c51
|
|
7
|
+
data.tar.gz: 78b325084efcb0f0901f1d9496a9a077fef7324ecc6543443d2bd54619daeb1f54df9dd003aee24e6f606735a7224231ab0b871d8146b0568d75dcc4f6f90dfc
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
class CreateDelayedJobs < (
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
Rails.version < '5.2' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
|
|
5
|
+
)
|
|
6
6
|
def self.up # rubocop:disable Metrics/MethodLength
|
|
7
7
|
create_table :delayed_jobs, force: true do |table|
|
|
8
8
|
table.integer :priority, default: 0, null: false # Allows some jobs to jump to the front of
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
class CreateEventExceptions < (
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
Rails.version < '5.2' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
|
|
5
|
+
)
|
|
6
6
|
def change # rubocop:disable Metrics/MethodLength
|
|
7
7
|
create_table :event_exceptions do |t|
|
|
8
8
|
t.string :event_entity
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
class CreateListenerOptions < (
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
Rails.version < '5.2' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
|
|
5
|
+
)
|
|
6
6
|
def change
|
|
7
7
|
create_table :listener_options do |t|
|
|
8
8
|
t.string :listener_class
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
class AddEnabledToListenerOptions < (
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
Rails.version < '5.2' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
|
|
5
|
+
)
|
|
6
6
|
def change
|
|
7
7
|
add_column :listener_options, :enabled, :boolean, null: false, default: true
|
|
8
8
|
end
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
class RenamePluginEventsManagerToRedmineEventsManager < (
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
Rails.version < '5.2' ? ActiveRecord::Migration : ActiveRecord::Migration[4.2]
|
|
5
|
+
)
|
|
6
6
|
class Settings < ActiveRecord::Base
|
|
7
7
|
end
|
|
8
8
|
|
data/dependencies.yaml
CHANGED
|
@@ -16,10 +16,10 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.require_paths = ['lib']
|
|
17
17
|
s.files = `git ls-files`.split("\n")
|
|
18
18
|
s.test_files = `git ls-files spec test`.split("\n") # rubocop:disable Gemspec/DeprecatedAttributeAssignment
|
|
19
|
-
s.required_ruby_version = '>= 2
|
|
19
|
+
s.required_ruby_version = '>= 3.2'
|
|
20
20
|
|
|
21
21
|
s.add_dependency 'delayed_job_active_record', '~> 4.1', '>= 4.1.11'
|
|
22
22
|
|
|
23
23
|
# Test/development gems
|
|
24
|
-
s.add_development_dependency 'eac_rails_gem_support', '~> 0.
|
|
24
|
+
s.add_development_dependency 'eac_rails_gem_support', '~> 0.13', '>= 0.13.1'
|
|
25
25
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redmine_events_manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo Henrique Bogoni
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: delayed_job_active_record
|
|
@@ -36,20 +36,20 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '0.
|
|
39
|
+
version: '0.13'
|
|
40
40
|
- - ">="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.
|
|
42
|
+
version: 0.13.1
|
|
43
43
|
type: :development
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: '0.
|
|
49
|
+
version: '0.13'
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 0.
|
|
52
|
+
version: 0.13.1
|
|
53
53
|
description:
|
|
54
54
|
email:
|
|
55
55
|
executables: []
|
|
@@ -106,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
106
106
|
requirements:
|
|
107
107
|
- - ">="
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: '2
|
|
109
|
+
version: '3.2'
|
|
110
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
111
|
requirements:
|
|
112
112
|
- - ">="
|