diff options
author | Clement Parisot <clement.parisot@uni.lu> | 2017-04-12 14:02:28 +0200 |
---|---|---|
committer | Clement Parisot <clement.parisot@uni.lu> | 2017-04-12 14:39:19 +0200 |
commit | b0ad6abc0ae43c2af414aadd3e4fac4fe325dd0a (patch) | |
tree | 3d57391f7b5a19fbbb45060f0c8dddae0383c379 /lib/oxidized/node.rb | |
parent | 339bf606b646f127e7f5a4544613cfafeaa28f8a (diff) |
Add new output GitCrypt
Signed-off-by: Clement Parisot <clement.parisot@uni.lu>
Diffstat (limited to 'lib/oxidized/node.rb')
-rw-r--r-- | lib/oxidized/node.rb | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/lib/oxidized/node.rb b/lib/oxidized/node.rb index 6f89b56..cf71e48 100644 --- a/lib/oxidized/node.rb +++ b/lib/oxidized/node.rb @@ -166,18 +166,32 @@ module Oxidized end def resolve_repo opt - return unless is_git? opt - - remote_repo = Oxidized.config.output.git.repo - - if remote_repo.is_a?(::String) - if Oxidized.config.output.git.single_repo? || @group.nil? - remote_repo + if is_git? opt + remote_repo = Oxidized.config.output.git.repo + + if remote_repo.is_a?(::String) + if Oxidized.config.output.git.single_repo? || @group.nil? + remote_repo + else + File.join(File.dirname(remote_repo), @group + '.git') + end + else + remote_repo[@group] + end + elsif is_gitcrypt? opt + remote_repo = Oxidized.config.output.gitcrypt.repo + + if remote_repo.is_a?(::String) + if Oxidized.config.output.gitcrypt.single_repo? || @group.nil? + remote_repo + else + File.join(File.dirname(remote_repo), @group + '.git') + end else - File.join(File.dirname(remote_repo), @group + '.git') + remote_repo[@group] end else - remote_repo[@group] + return end end @@ -212,5 +226,9 @@ module Oxidized (opt[:output] || Oxidized.config.output.default) == 'git' end + def is_gitcrypt? opt + (opt[:output] || Oxidized.config.output.default) == 'gitcrypt' + end + end end |