Sha256: 269f91c28b4949102e453d4e959bc6e1cc0f7b7f43eb28f154eaa37ac30dccdb

Contents?: true

Size: 1.43 KB

Versions: 1

Compression:

Stored size: 1.43 KB

Contents

#!/usr/bin/env ruby

$:.push File.expand_path("../../lib", __FILE__)

require 'snapshot'
require 'commander/import'
require 'snapshot/update_checker'
require 'snapshot/dependency_checker'
require 'snapshot/snapfile_creator'
require 'snapshot/snapshot_config'

HighLine.track_eof = false


# Commander
program :version, Snapshot::VERSION
program :description, 'CLI for \'Snapshot\' - Automatic taking of screenshots on all simulator types in all languages.'
program :help, 'Author', 'Felix Krause <krausefx@gmail.com>'
program :help, 'Website', 'http://felixkrause.at'
program :help, 'GitHub', 'https://github.com/krausefx/snapshot'
program :help_formatter, :compact

global_option('--verbose') { $verbose = true }


Snapshot::UpdateChecker.verify_latest_version

default_command :run

command :run do |c|
  c.syntax = 'snapshot'
  c.description = 'Run the script, to take all the screenshots'
  c.option '--snapfile STRING', String, 'Custom path for your Snapfile'
  c.option '--noclean', 'Skips the clean process when running snapshot.'

  c.action do |args, options|
    Snapshot::SnapshotConfig.shared_instance(options.snapfile) if options.snapfile # to set the custom Snapfile path if given
    Snapshot::Runner.new.work(clean: !options.noclean)
  end
end

command :init do |c|
  c.syntax = 'snapshot init'
  c.description = "Creates a new Snapfile in the current directory"

  c.action do |args, options|
    Snapshot::SnapfileCreator.create('.')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
snapshot-0.3.3 bin/snapshot