Sha256: 86a4247fb70a1ce0bea63421ae364f7475495ac11b746d5804fcad3c045e66fb

Contents?: true

Size: 320 Bytes

Versions: 1

Compression:

Stored size: 320 Bytes

Contents

module Tlapse
  module Doctor
    def doctor
      print "Checking gphoto2..."
      if `which gphoto2`.empty?
        raise "Could not find gphoto2 :("
      end
      puts "ok!"

      print "Checking camera..."
      # TODO: Check camera
      puts "ok!"

      puts "Looks good!"
    end
  end # Doctor
end # Tlapse

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tlapse-0.0.6 lib/tlapse/doctor.rb