redmine_with_git 0.7.4 → 0.7.5

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: fbf62ae26c6002432219aaa9ade8f057364f6291a0454eacc0168e78a5a57310
4
- data.tar.gz: 8dc6d3465c9e6435857f0965edc4a0e08a3de12968dac07509773423e5460a72
3
+ metadata.gz: 0febda365f7df94934022a90dc6bab77c0dfc06a3911ea5ae2bd27f6b79b68e0
4
+ data.tar.gz: 731e3008a701a17eeea1fb131143ae612155d6853c12a1de3d439120149546d1
5
5
  SHA512:
6
- metadata.gz: 5aac2589f918d30495520109f9b7bc39b15d08c9d23e57d14c26a6c0c19b2deb791622f27f03ca04226c2498f2d5b1c66b807d8a83a4197465716c14de55926d
7
- data.tar.gz: cb2528c129c34c56e2847f3d540bc9c01e9be62a3333c8133f7b54251b394d6f4e7731337400148fcc37c7fb74a68c0975fc977734e19abb78a267b7da06e241
6
+ metadata.gz: 0d809dbf07fa8b5bf7bbac6e0f21508a9f64bd7d619c1a9088594318a9493223aabcd321c900c099ef1432d5e25c66dc7c21d4edc020fa757cfd33b12ab39b30
7
+ data.tar.gz: 1dba139b5d14e6041821ca72fca79584ed8a27595e8e2632a36ffd3ce62c4f93250a8b7e45a1b50627b9d8e796b4db070e59dcf083a2623987afe2acad76b481
@@ -20,6 +20,6 @@ Redmine::Plugin.post_register :redmine_with_git do
20
20
 
21
21
  # Source: https://github.com/esquilo-azul/redmine_installer
22
22
  if ::Redmine::Plugin.registered_plugins.keys.include?(:redmine_installer)
23
- requires_redmine_plugin(:redmine_installer, version_or_higher: '0.15.0')
23
+ requires_redmine_plugin(:redmine_installer, version_or_higher: '0.17.0')
24
24
  end
25
25
  end
@@ -6,9 +6,9 @@ set -e
6
6
  export RUBY_PACKAGE="ruby"
7
7
 
8
8
  function task_condition {
9
- programeiro /apt/installed "$RUBY_PACKAGE"
9
+ package_installed apt "$RUBY_PACKAGE"
10
10
  }
11
11
 
12
12
  function task_fix {
13
- programeiro /apt/assert_installed "$RUBY_PACKAGE"
13
+ package_assert apt "$RUBY_PACKAGE"
14
14
  }
@@ -6,9 +6,9 @@ set -e
6
6
  export GITOLITE_PACKAGE='gitolite3'
7
7
 
8
8
  function task_condition {
9
- return $(programeiro /apt/installed "$GITOLITE_PACKAGE")
9
+ package_installed apt "$GITOLITE_PACKAGE"
10
10
  }
11
11
 
12
12
  function task_fix {
13
- programeiro /apt/assert_installed "$GITOLITE_PACKAGE"
13
+ package_assert apt "$GITOLITE_PACKAGE"
14
14
  }
@@ -7,9 +7,9 @@ REDMINE_WITH_GIT_PACKAGES=(build-essential libcurl4-openssl-dev libssh2-1 libssh
7
7
  libgpg-error-dev)
8
8
 
9
9
  function task_condition {
10
- return $(programeiro /apt/installed "${REDMINE_WITH_GIT_PACKAGES[@]}")
10
+ package_installed apt "${REDMINE_WITH_GIT_PACKAGES[@]}"
11
11
  }
12
12
 
13
13
  function task_fix {
14
- programeiro /apt/assert_installed "${REDMINE_WITH_GIT_PACKAGES[@]}"
14
+ package_assert apt "${REDMINE_WITH_GIT_PACKAGES[@]}"
15
15
  }
@@ -6,9 +6,9 @@ set -e
6
6
  PACKAGES=("$SSH_SERVER_PACKAGE")
7
7
 
8
8
  function task_condition {
9
- programeiro /apt/installed "${PACKAGES[@]}"
9
+ package_installed apt "${PACKAGES[@]}"
10
10
  }
11
11
 
12
12
  function task_fix {
13
- programeiro /apt/assert_installed "${PACKAGES[@]}"
13
+ package_assert apt "${PACKAGES[@]}"
14
14
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RedmineWithGit
4
- VERSION = '0.7.4'
4
+ VERSION = '0.7.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmine_with_git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-07 00:00:00.000000000 Z
11
+ date: 2022-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: avm