redmine-installer 2.0.1.rc1 → 2.0.2
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/lib/redmine-installer/redmine.rb +9 -0
- data/lib/redmine-installer/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df3d0422ae2a8334b0425d08435be1d8bbdd2bfc
|
|
4
|
+
data.tar.gz: 1e91b682ff8842a92c3962cc0d32452742834842
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b82ba9c160c1b5c703ab9b42c201d71748358c0cd3f9cf95b5ccf9f98425e037b0a96f0272188010ccb6744ff41bc506055c47508389996e741b20fffefdd952
|
|
7
|
+
data.tar.gz: 0dbe5c8c89bad0e82cb7bcd6a980837d15a4474d481cb678374194362004fc4ab618014143b31f14f1186cd494bd14f3d3427c3acc8bcce9d8f2c9730154e5ba
|
|
@@ -43,6 +43,10 @@ module RedmineInstaller
|
|
|
43
43
|
File.join(root, 'config', 'configuration.yml')
|
|
44
44
|
end
|
|
45
45
|
|
|
46
|
+
def gemfile_local_path
|
|
47
|
+
File.join(root, 'Gemfile.local')
|
|
48
|
+
end
|
|
49
|
+
|
|
46
50
|
def files_path
|
|
47
51
|
File.join(root, FILES_DIR)
|
|
48
52
|
end
|
|
@@ -282,6 +286,11 @@ module RedmineInstaller
|
|
|
282
286
|
FileUtils.cp(other_redmine.configuration_yml_path, configuration_yml_path)
|
|
283
287
|
end
|
|
284
288
|
|
|
289
|
+
# Copy Gemfile.local
|
|
290
|
+
if File.exist?(other_redmine.gemfile_local_path)
|
|
291
|
+
FileUtils.cp(other_redmine.gemfile_local_path, gemfile_local_path)
|
|
292
|
+
end
|
|
293
|
+
|
|
285
294
|
# Copy files
|
|
286
295
|
if task.options.copy_files_with_symlink
|
|
287
296
|
FileUtils.rm_rf(files_path)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redmine-installer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ondřej Moravčík
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|
|
@@ -184,9 +184,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
184
184
|
version: 2.1.0
|
|
185
185
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
186
|
requirements:
|
|
187
|
-
- - "
|
|
187
|
+
- - ">="
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
|
-
version:
|
|
189
|
+
version: '0'
|
|
190
190
|
requirements: []
|
|
191
191
|
rubyforge_project:
|
|
192
192
|
rubygems_version: 2.5.2
|