Method: MultiGit::Config#each
- Defined in:
- lib/multi_git/config.rb
#each ⇒ Object
Expensive. Use only for debug
139 140 141 142 143 144 145 |
# File 'lib/multi_git/config.rb', line 139 def each return to_enum unless block_given? each_explicit_key do |*key| next if default?(*key) yield key, get(*key) end end |