Method: MultiGit::Config::Section#each

Defined in:
lib/multi_git/config.rb

#eachObject

Expensive. Use only for debug



42
43
44
45
46
47
48
# File 'lib/multi_git/config.rb', line 42

def each
  return to_enum unless block_given?
  each_explicit_key do |key|
    next if default?(key)
    yield key, get(key)
  end
end