Class: Captured
- Inherits:
-
Object
- Object
- Captured
- Defined in:
- lib/captured.rb
Class Method Summary collapse
Class Method Details
.config_file ⇒ Object
5 6 7 |
# File 'lib/captured.rb', line 5 def self.config_file "#{ENV['HOME']}/.captured.yml" end |
.run_and_watch!(options) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/captured.rb', line 19 def self.run_and_watch!() require 'captured/fs_events' watch_path = [:watch_path] || "#{ENV['HOME']}/Desktop/" tracker = FileTracker.new() tracker.scan([desktop_dir], :existing) e = FSEvents.new(watch_path) e.run do |paths| tracker.scan paths, :pending tracker.each_pending do |file| FileUploader.upload(file, ) tracker.mark_processed(file) end end end |
.run_once!(options) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/captured.rb', line 9 def self.run_once!() watch_path = [:watch_path] || "#{ENV['HOME']}/Desktop/" Dir["#{watch_path}#{[:watch_pattern]}"].each do |file| if (File.mtime(file).to_i > (Time.now.to_i-10)) puts "#{file} is new" FileUploader.upload(file, ) end end end |