Method: FileTracker#each_pending
- Defined in:
- lib/captured/file_tracker.rb
#each_pending ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/captured/file_tracker.rb', line 30 def each_pending @tracked_files.each_pair do |key, value| if(value == :pending) yield(key) end end end |