depengine 0.0.26 → 0.0.27

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
  SHA1:
3
- metadata.gz: bc27657a899c8213f57f27b19a20ed4e2798b5a8
4
- data.tar.gz: 18f6c77771286b3515acc747597d9298da5edd6c
3
+ metadata.gz: 32fea509480666bf40405f710fccdba27dae57b1
4
+ data.tar.gz: bf020af61701b2c9e7cefff607e010d619a9786d
5
5
  SHA512:
6
- metadata.gz: 405f48cadee245604596f6ae316237bfea861f5dad3ef0b13e2cd0cd9e00d5392e912705c24995dff505ce7bd7a101eac0320d1054e9b9a311a33237388baa35
7
- data.tar.gz: 06bca4547b4a6c01227914b68b6dd617bba9f9f9bdc342b4e24d73742f39b91605e0999115080ef757e0b6a81c79a3f207b430b5e4d59c38212f5b9e5e3d85c7
6
+ metadata.gz: c0ed143347cbc7a5864fe9fd34e1e4f7f035a2c8bae7b228863dd52577863e9e49fbb7427045cdfce5eacc311585cd28ac41c21f81f5ee564492739d7d8866fe
7
+ data.tar.gz: 50b03cd8ee4b44434a03a3a98057f05a7f4ed2709036f087b24096516f42eacb7d9e86c78fa0052724f521323cc91ef8305de102fa7aa7e77e14002f184ca244
@@ -686,13 +686,10 @@ module Deployment
686
686
  publisher.checkout(branch_name, options)
687
687
  end
688
688
 
689
- def git_submodule(options={})
690
- Helper.validates_presence_of options[:git_submodule_option] || @cdb['git_submodule_option'] , "submodule_option not set "
691
-
689
+ def git_submodule(submodule_option, options={})
692
690
  publisher = Publisher::Git.new
693
691
  publisher.repository_url = options[:git_repository_url] || @cdb['git_repository_url']
694
692
  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"
696
693
  publisher.submodule(submodule_option, options)
697
694
  end
698
695
 
@@ -2,7 +2,6 @@ module Publisher
2
2
  class Git
3
3
  attr_accessor :repository_url
4
4
  attr_accessor :repository_local_dir
5
- attr_accessor :submodule_option
6
5
 
7
6
  def fetch(options={})
8
7
  Helper.validates_presence_of repository_url, "repository_url not set"
@@ -1,3 +1,3 @@
1
1
  module Depengine
2
- VERSION = "0.0.26"
2
+ VERSION = "0.0.27"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: depengine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.26
4
+ version: 0.0.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Automatisierung