#!/usr/bin/env ruby $:.push File.expand_path("../../lib", __FILE__) require 'frameit' require 'commander/import' require 'frameit/update_checker' require 'frameit/dependency_checker' HighLine.track_eof = false # Commander program :version, Frameit::VERSION program :description, 'Find all screenshots in current folder and put a nice frame around it. This will duplicate the images.' program :help, 'Author', 'Felix Krause ' program :help, 'Website', 'http://felixkrause.at' program :help, 'GitHub', 'https://github.com/krausefx/frameit' program :help_formatter, :compact global_option('--verbose') { $verbose = true } Frameit::UpdateChecker.verify_latest_version default_command :black command :black do |c| c.syntax = 'frameit black' c.action do |args, options| Frameit::DependencyChecker.check_dependencies Frameit::Editor.new.run('.', Frameit::Editor::Color::BLACK) end end command :silver do |c| c.syntax = 'frameit silver' c.action do |args, options| Frameit::DependencyChecker.check_dependencies Frameit::Editor.new.run('.', Frameit::Editor::Color::SILVER) end end alias_command :white, :silver def shared_run(c) c.description = 'Find all screenshots in current folder and put a nice frame around it. This will duplicate the images.' end