diff options
author | Danilo Sousa <code@danilosousa.net> | 2016-02-19 22:17:37 -0200 |
---|---|---|
committer | Danilo Sousa <code@danilosousa.net> | 2016-02-19 22:17:37 -0200 |
commit | c098f57f5dfc4588673ac62083611736c8a75136 (patch) | |
tree | 53daffc4fffea78fb136dd2344b78c067316fa37 /lib/oxidized | |
parent | 3a57984ed70d7d217147b4d7341dff86aeceed70 (diff) |
refactor `#remote_repo` to not rely on `#single_repo?` config
even in the case we have groups, we can assume is only one
repository if the `remote_repo` config is a String.
Diffstat (limited to 'lib/oxidized')
-rw-r--r-- | lib/oxidized/hook/githubrepo.rb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/oxidized/hook/githubrepo.rb b/lib/oxidized/hook/githubrepo.rb index 0c75c68..7fc6677 100644 --- a/lib/oxidized/hook/githubrepo.rb +++ b/lib/oxidized/hook/githubrepo.rb @@ -55,15 +55,10 @@ class GithubRepo < Oxidized::Hook end def remote_repo(node) - if node.group.nil? || single_repo? + if node.group.nil? || cfg.remote_repo.is_a?(String) cfg.remote_repo else cfg.remote_repo[node.group] end end - - def single_repo? - Oxidized.config.output.git.single_repo? - end - end |