redmine_events_manager 0.5.1 → 0.5.3
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/.gitignore +1 -1
- data/SelfGemfile +1 -1
- data/config/locales/en.yml +7 -0
- 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 +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6bb8f76a0b1f33532b1b75f25bf20f4d2c39e2e452bbc48b7b74fc173b203ef
|
|
4
|
+
data.tar.gz: 68dff6e904b9e4071f04f75f5291f86f44f8cfebde41c2398de879824a128420
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '092ed46664c11598cd302754080c065a16f857a9e3763ad4d8bdcb89788af7aaa3d33c57af01369a716ab5f0abd8e9240101b754a2ee0c41f9e44971eaa6abfc'
|
|
7
|
+
data.tar.gz: 851b374da56528f62ae0a96ecc3952dfe7d14bb4b3886cd209032c4fb151d2df1a11b9b05ad3d9905ec93d2d8bcf64ddf934737cd6d5ff17150af1b3dcd2d3af
|
data/.gitignore
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/
|
|
1
|
+
/SelfGemfile.local
|
|
2
2
|
/SelfGemfile.lock
|
data/SelfGemfile
CHANGED
|
@@ -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.2'
|
|
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.3
|
|
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-08-02 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.2
|
|
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.2
|
|
53
53
|
description:
|
|
54
54
|
email:
|
|
55
55
|
executables: []
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- assets/stylesheets/application.css
|
|
68
68
|
- bin/bundle
|
|
69
69
|
- config/initializers/001_requires.rb
|
|
70
|
+
- config/locales/en.yml
|
|
70
71
|
- config/locales/pt-BR.yml
|
|
71
72
|
- config/routes.rb
|
|
72
73
|
- db/migrate/20160509152749_create_delayed_jobs.rb
|
|
@@ -106,7 +107,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
106
107
|
requirements:
|
|
107
108
|
- - ">="
|
|
108
109
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: '2
|
|
110
|
+
version: '3.2'
|
|
110
111
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
112
|
requirements:
|
|
112
113
|
- - ">="
|