lib/frameit/runner.rb in frameit-2.0.1 vs lib/frameit/runner.rb in frameit-2.1.0

- old
+ new

@@ -13,22 +13,24 @@ converter.convert_frames end end def run(path, color = Color::BLACK) - screenshots = Dir.glob("#{path}/**/*.{png,PNG}") + screenshots = Dir.glob("#{path}/**/*.{png,PNG}").uniq # uniq because thanks to {png,PNG} there are duplicates if screenshots.count > 0 screenshots.each do |full_path| next if full_path.include?"_framed.png" next if full_path.include?".itmsp/" # a package file, we don't want to modify that next if full_path.include?"device_frames/" # these are the device frames the user is using + next if full_path.downcase.include?"watch" # we don't care about watches right now begin screenshot = Screenshot.new(full_path, color) screenshot.frame! rescue => ex Helper.log.error ex + Helper.log.error "Backtrace:\n\t#{ex.backtrace.join("\n\t")}" end end else Helper.log.error "Could not find screenshots" end