| 1234567891011121314151617181920212223 |
- # frozen_string_literal: true
- require "bundler/gem_tasks"
- require "minitest/test_task"
- Minitest::TestTask.create
- desc 'install and run organize'
- task :test_organize => :install do
- sh 'fotos organize -s ~/Downloads/bemol-2025/bemol-2025-hania -d ~/Desktop/bemol-test'
- end
- desc 'install and run build'
- task :test_build => :install do
- sh 'fotos build -s ~/Desktop/bemol-test -d ~/Desktop/bemol-test -t'
- end
- desc 'cleanup'
- task :cleanup do
- sh 'rm -rf ~/Desktop/bemol-test'
- end
- task default: :test
|