Sha256: 8d4d7598d3464b2feedc835d4288034f7c6a851ff0220d9c84b87baf0dd559a7

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 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.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
  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.2 bin/snapshot