Class: Insup::Tracker::SimpleTracker
- Inherits:
-
Insup::Tracker
- Object
- Insup::Tracker
- Insup::Tracker::SimpleTracker
- Defined in:
- lib/insup/tracker/simple_tracker.rb
Overview
Simple tracker: will list all tracked files as changed
Instance Method Summary collapse
Methods inherited from Insup::Tracker
#all_files, #changes, find_tracker, #ignored_files, #initialize, #tracked_files, tracker
Constructor Details
This class inherits a constructor from Insup::Tracker
Instance Method Details
#raw_changes ⇒ Object
6 7 8 9 10 |
# File 'lib/insup/tracker/simple_tracker.rb', line 6 def raw_changes tracked_files.map do |p| Insup::TrackedFile.new(p, Insup::TrackedFile::MODIFIED) end end |