Files
shenzhen/bin/ipa
Mattt Thompson 65f09d9fd6 Squashed commit of the following:
commit dcffcc8dc095a4afa4144353e3caf8ab08072b0b
Author: Mattt Thompson <m@mattt.me>
Date:   Wed Mar 26 06:52:53 2014 -0700

    Parsing and displaying mobileprovision plist file in table

commit 44416a36fb760eb6957f113d099532b4ddd1fdf7
Author: Mattt Thompson <m@mattt.me>
Date:   Wed Mar 26 06:35:01 2014 -0700

    Updating gemspec

commit 483954cf466903a00c4fbd490321454f74fb7ec7
Author: Mattt Thompson <m@mattt.me>
Date:   Wed Mar 26 06:34:54 2014 -0700

    Refactoring and renaming show command to info

commit 877bb504199c769a10e90351a2a906dbcb273129
Author: Nicola Brisotto <nicolabrisotto@gmail.com>
Date:   Fri Jan 24 12:04:41 2014 +0100

    remove unused zip lib config

commit a28721c96c1f802c763006a0d41b8b9323d0f716
Author: Nicola Brisotto <nicolabrisotto@gmail.com>
Date:   Fri Jan 24 11:17:15 2014 +0100

    add the show command to print the embedded.mobileprovision profile of an ipa
2014-03-26 06:53:04 -07:00

26 lines
561 B
Ruby
Executable File

#!/usr/bin/env ruby
require 'dotenv'
Dotenv.load
require 'commander/import'
require 'terminal-table'
$:.push File.expand_path("../../lib", __FILE__)
require 'shenzhen'
HighLine.track_eof = false # Fix for built-in Ruby
program :version, Shenzhen::VERSION
program :description, 'Build and distribute iOS apps (.ipa files)'
program :help, 'Author', 'Mattt Thompson <m@mattt.me>'
program :help, 'Website', 'http://mattt.me'
program :help_formatter, :compact
global_option('--verbose') { $verbose = true }
default_command :help
require 'shenzhen/commands'