Sha256: 5596ac06a430db5afc284a632383c1ec885ff0f134076391e334bf9d24170c85

Contents?: true

Size: 956 Bytes

Versions: 12

Compression:

Stored size: 956 Bytes

Contents

#!/usr/bin/env ruby

require 'optparse'
require 'methadone'
require 'ProMotion/version'

class App
  include Methadone::Main
  include Methadone::CLILogging
  include Methadone::SH
  
  main do |command, opt|
    case command.to_sym
    when :new then create(opt)
    when :help then show_help
    else show_help
    end

    0 # Good!
  end

  def self.show_help
    info "promotion - Command line tools for ProMotion."
    info "By Jamon Holmgren"
    info ""
    info "Commands:"
    info "  new <appname>"
    info "    Creates a new ProMotion app from a template."
  end

  def self.create(name)
    return puts "Usage: promotion new <appname>" unless name.to_s.length > 0
    info "Creating new ProMotion iOS app #{name}"
    sh "motion create --template=https://github.com/jamonholmgren/promotion-template.git #{name}"
  end

  description "Command line for ProMotion."

  arg :command
  arg :opt, :optional

  version ProMotion::VERSION

  go!
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
ProMotion-3.0.0 bin/promotion
ProMotion-2.8.2 bin/promotion
ProMotion-2.8.1 bin/promotion
ProMotion-2.8.0 bin/promotion
ProMotion-2.7.1 bin/promotion
ProMotion-2.7.0 bin/promotion
ProMotion-2.6.1 bin/promotion
ProMotion-2.6.0 bin/promotion
ProMotion-2.5.0 bin/promotion
ProMotion-2.5.0.beta1 bin/promotion
ProMotion-2.4.2 bin/promotion
ProMotion-2.4.1 bin/promotion