Method: MultiGit::Config::Section#each_explicit_key
- Defined in:
- lib/multi_git/config.rb
#each_explicit_key ⇒ Object
34 35 36 37 38 39 |
# File 'lib/multi_git/config.rb', line 34 def each_explicit_key return to_enum(:each_explicit_key) unless block_given? config.each_explicit_key do |sec, subsec, key| yield(key) if sec == section && subsec == subsection end end |