depengine 0.0.24 → 0.0.25
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/depengine/dsl/deployment.rb +2 -1
- data/lib/depengine/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58eac664e9bf26554ead846e029147915ddf170a
|
4
|
+
data.tar.gz: f9635ee66a7e3df20420b9411b1ad8006f0d221e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6f93eceda68872f39e7bf93134095aa22bb033c8f766ef2fe3d7d6f9e4a8639bcd587c579e03588cafbca335dc716fb07b97e0fc26e2c9708ff6b8114a1e61f
|
7
|
+
data.tar.gz: c81fe62e2db885153b2a3ffbd6e60c46b063d5d7dc7bb11f7ded89b5bd32a5634c2b87b0ec963cf9b4981d9482b50134e45d87e80c4059525dfb72f910e3dc3c
|
@@ -687,11 +687,12 @@ module Deployment
|
|
687
687
|
end
|
688
688
|
|
689
689
|
def git_submodule(submodule_option, options={})
|
690
|
-
Helper.validates_presence_of options[:
|
690
|
+
Helper.validates_presence_of options[:git_submodule_option] || @cdb['git_submodule_option'] , "submodule_option not set "
|
691
691
|
|
692
692
|
publisher = Publisher::Git.new
|
693
693
|
publisher.repository_url = options[:git_repository_url] || @cdb['git_repository_url']
|
694
694
|
publisher.repository_local_dir = options[:git_repository_local] || @cdb['git_repository_local']
|
695
|
+
publisher.submodule_option = options[:git_submodule_option] || @cdb['git_submodule_option'] || "--recursive"
|
695
696
|
publisher.submodule(submodule_option, options)
|
696
697
|
end
|
697
698
|
|
data/lib/depengine/version.rb
CHANGED