redmine-installer 3.0.3 → 3.0.4

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: 6c9869a501d3dcf4507d322231719ddde19a2400ffeb4dec5b787022d56feaf6
4
- data.tar.gz: 2ce91c210790b53a131f7601021c628182d3c2bbf1acaec09682ef38f8e2dc98
3
+ metadata.gz: 9450a735c9c20b8910cb08ca186e9fc9976bfbb197cab77eefdd9b6562851238
4
+ data.tar.gz: 13b7de04427fb0d0eaf31ea86cba3fb57e0de1e7cdbafc2018b2bdebd3fdcecf
5
5
  SHA512:
6
- metadata.gz: 8362e7eeaa8f3a69e3e94c261c2e5d5ba7bc9a9ba656280cffd9bc409bb263b43f340a9b6c5332a35a08e92f0a1930381f28f9a3b9605a6c146834c509d39319
7
- data.tar.gz: 9892532cced7f3c064b6d9afdb8587648e89bee2e50db2e8a9f08bd44a18c22ac4bafb45c8ffafa4dea6551608827024b694ff14551115056f161f5639f90a8e
6
+ metadata.gz: fd6bb2c7a814d64f2b90142e7bc69556d7b04166fe38cd40a41c12ac529bf2c4bc1ace41f2d2c7ba4f5b9a2f71386885cf06efdc5fcdb1148df1758b3a05f0f7
7
+ data.tar.gz: '09612016c647b872ec8b2d142b760711c9ece53ba406f24a3a264c354596a9dd62d56294adcfa790c8b4163490632ee3458e1e78a38a76a9c963317b381bd593'
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:3.1.2-bullseye
1
+ FROM ruby:3.1.4-bullseye
2
2
  LABEL org.opencontainers.image.authors="support@easysoftware.com"
3
3
  RUN apt-get update && apt-get -y install lsb-release wget curl vim
4
4
  RUN wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb -O percona-release_latest_all.deb &&\
data/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Redmine installer
2
2
 
3
+ > [!WARNING]
4
+ > :exclamation: THIS TOOL IS NO LONGER MAINTAINED.
5
+ > Easy Software Ltd. has stopped maintaining this tool. We are switching to dockerized installation and upgrade process. Please use our docker images for installation.
6
+ >
7
+ > Feel free to contact our support if you have any questions.
8
+
3
9
  Easy way hot to install/upgrade Redmine, Easy Redmine or Easy Project.
4
10
 
5
11
  Please do not run installer on background. It may happen that process will be paused by some event. For example database may require enter password during backuping database.
data/gems.locked CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- redmine-installer (3.0.3)
4
+ redmine-installer (3.0.4)
5
5
  bundler (>= 2.3.7)
6
6
  commander
7
7
  pastel (~> 0.8.0)
@@ -15,10 +15,10 @@ GEM
15
15
  specs:
16
16
  childprocess (4.1.0)
17
17
  coderay (1.1.3)
18
- commander (4.6.0)
19
- highline (~> 2.0.0)
18
+ commander (5.0.0)
19
+ highline (~> 3.0.0)
20
20
  diff-lcs (1.5.0)
21
- highline (2.0.3)
21
+ highline (3.0.1)
22
22
  method_source (1.0.0)
23
23
  pastel (0.8.0)
24
24
  tty-color (~> 0.5)
@@ -55,13 +55,14 @@ GEM
55
55
  tty-cursor (~> 0.7)
56
56
  tty-screen (~> 0.8)
57
57
  wisper (~> 2.0)
58
- tty-screen (0.8.1)
58
+ tty-screen (0.8.2)
59
59
  tty-spinner (0.8.0)
60
60
  tty-cursor (>= 0.5.0)
61
- unicode-display_width (2.4.2)
61
+ unicode-display_width (2.5.0)
62
62
  wisper (2.0.1)
63
63
 
64
64
  PLATFORMS
65
+ arm64-darwin-23
65
66
  x86_64-darwin-21
66
67
  x86_64-linux
67
68
 
@@ -73,4 +74,4 @@ DEPENDENCIES
73
74
  rspec (~> 3.11.0)
74
75
 
75
76
  BUNDLED WITH
76
- 2.3.22
77
+ 2.5.5
@@ -1,5 +1,5 @@
1
1
  module RedmineInstaller
2
2
 
3
- VERSION = '3.0.3'
3
+ VERSION = '3.0.4'
4
4
 
5
5
  end
@@ -16,7 +16,6 @@ Gem::Specification.new do |spec|
16
16
  "source_code_uri" => "https://github.com/easyredmine/redmine-installer",
17
17
  "changelog_uri" => "https://github.com/easyredmine/redmine-installer/blob/master/CHANGELOG.md",
18
18
  }
19
- # spec.required_rubygems_version = '>= 3.3.12'
20
19
 
21
20
  files = `git ls-files -z`.split("\x0") - Dir.glob("{spec/**/*,docker-compose.yml,.github/**/*}")
22
21
  spec.files = files
@@ -24,7 +23,7 @@ Gem::Specification.new do |spec|
24
23
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
25
24
  spec.require_paths = ['lib']
26
25
 
27
- spec.required_ruby_version = '>= 3.1.2', '< 3.1.3'
26
+ spec.required_ruby_version = '>= 3.1.2'
28
27
 
29
28
  spec.add_runtime_dependency 'bundler', '>= 2.3.7'
30
29
  spec.add_runtime_dependency 'commander'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmine-installer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.3
4
+ version: 3.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondřej Moravčík
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-01-16 00:00:00.000000000 Z
12
+ date: 2024-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -209,16 +209,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
209
209
  - - ">="
210
210
  - !ruby/object:Gem::Version
211
211
  version: 3.1.2
212
- - - "<"
213
- - !ruby/object:Gem::Version
214
- version: 3.1.3
215
212
  required_rubygems_version: !ruby/object:Gem::Requirement
216
213
  requirements:
217
214
  - - ">="
218
215
  - !ruby/object:Gem::Version
219
216
  version: '0'
220
217
  requirements: []
221
- rubygems_version: 3.3.22
218
+ rubygems_version: 3.3.26
222
219
  signing_key:
223
220
  specification_version: 4
224
221
  summary: Easy way how install/upgrade Redmine, EasyRedmine or EasyProject.