Module: EacLauncher::Git::Base::DirtyFiles
- Included in:
- EacLauncher::Git::Base
- Defined in:
- lib/eac_launcher/git/base/dirty_files.rb
Instance Method Summary collapse
Instance Method Details
#dirty_files ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/eac_launcher/git/base/dirty_files.rb', line 11 def dirty_files eac_git.dirty_files.map do |df| ::OpenStruct.new( df.to_h.merge(path: df.path.to_path, absolute_path: df.absolute_path.to_path) ) end end |