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 +4 -4
- data/config/initializers/000_dependencies.rb +1 -1
- data/installer/tasks/apt_ruby.sh +2 -2
- data/installer/tasks/gitolite.sh +2 -2
- data/installer/tasks/redmine_with_git_bundle_requirements.sh +2 -2
- data/installer/tasks/ssh_server.sh +2 -2
- data/lib/redmine_with_git/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: 0febda365f7df94934022a90dc6bab77c0dfc06a3911ea5ae2bd27f6b79b68e0
|
4
|
+
data.tar.gz: 731e3008a701a17eeea1fb131143ae612155d6853c12a1de3d439120149546d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
23
|
+
requires_redmine_plugin(:redmine_installer, version_or_higher: '0.17.0')
|
24
24
|
end
|
25
25
|
end
|
data/installer/tasks/apt_ruby.sh
CHANGED
@@ -6,9 +6,9 @@ set -e
|
|
6
6
|
export RUBY_PACKAGE="ruby"
|
7
7
|
|
8
8
|
function task_condition {
|
9
|
-
|
9
|
+
package_installed apt "$RUBY_PACKAGE"
|
10
10
|
}
|
11
11
|
|
12
12
|
function task_fix {
|
13
|
-
|
13
|
+
package_assert apt "$RUBY_PACKAGE"
|
14
14
|
}
|
data/installer/tasks/gitolite.sh
CHANGED
@@ -6,9 +6,9 @@ set -e
|
|
6
6
|
export GITOLITE_PACKAGE='gitolite3'
|
7
7
|
|
8
8
|
function task_condition {
|
9
|
-
|
9
|
+
package_installed apt "$GITOLITE_PACKAGE"
|
10
10
|
}
|
11
11
|
|
12
12
|
function task_fix {
|
13
|
-
|
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
|
-
|
10
|
+
package_installed apt "${REDMINE_WITH_GIT_PACKAGES[@]}"
|
11
11
|
}
|
12
12
|
|
13
13
|
function task_fix {
|
14
|
-
|
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
|
-
|
9
|
+
package_installed apt "${PACKAGES[@]}"
|
10
10
|
}
|
11
11
|
|
12
12
|
function task_fix {
|
13
|
-
|
13
|
+
package_assert apt "${PACKAGES[@]}"
|
14
14
|
}
|
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
|
+
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-
|
11
|
+
date: 2022-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: avm
|