redmine_with_git 0.7.3 → 0.7.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2219380d4334bafe782080437e1bcd84ebff15941299c8bbaf2f2771864083e9
4
- data.tar.gz: 228fe248d3a5e5d9e9d023aee75579a5d0485b3686cf5fac3055129db9437267
3
+ metadata.gz: 0febda365f7df94934022a90dc6bab77c0dfc06a3911ea5ae2bd27f6b79b68e0
4
+ data.tar.gz: 731e3008a701a17eeea1fb131143ae612155d6853c12a1de3d439120149546d1
5
5
  SHA512:
6
- metadata.gz: 1b347512823f7c5851d9657ae37ea6723a045b6416207e2d483aebd1a0f68abe9778e9262a979e331c88cc94e7fe93592e62380806d5145d00bbb482eb64a6db
7
- data.tar.gz: cfe10d54564b08047d5b5d5147c0e1730906f5eb2e1a4f80c8698c82aa1dcdd378e697ea11cefe82827a9ff40a2f8f76e1cbad6c55bf2e7654c4820e4722f854
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
  }
@@ -10,7 +10,7 @@ module RedmineWithGit
10
10
  private
11
11
 
12
12
  def before_clear
13
- raise(<<~MESSAGE) unless ::RedminePluginsHelper.settings_table_exist?
13
+ raise(<<~MESSAGE) unless ::RedminePluginsHelper::Available.settings?
14
14
  Settings table does not exist.
15
15
  MESSAGE
16
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RedmineWithGit
4
- VERSION = '0.7.3'
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.3
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-06-22 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