krausefx-shenzhen 0.14.1 → 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9dcf3992465f173b3273dd22c4bfd5d71b42dd7
4
- data.tar.gz: c526db6c2bcc0fd7f45e9b2612d0a393f11670db
3
+ metadata.gz: a44fb21ddf87f1d149e47ddd3f49666a18bbf101
4
+ data.tar.gz: 63d44790fb82ff5e1d9068e9283acb6584d19b47
5
5
  SHA512:
6
- metadata.gz: ae852791af679b572b4e39726a661a4cbcbac2d8dab9bc0c460fe0b7903b4369e83690b63d7eeb4ec244657f9c82e7c998de3e29b0de867de2f2153a4f6fba3d
7
- data.tar.gz: f02238a3d2be2e1e02bada918969fe3031a78a50b342e945c42c1db77b82c86df2bd4adc6303a46b1476ba9963239f71e274d8812cd77dd89a484bc0ffc7d0ea
6
+ metadata.gz: d78b7fc8ca36e003eb1d9d1bd7136d1d407b03f306fbb99938e3bf8ec90c27ed3ff0ff143984cc1119f2e0c453efb8b7aa940dc9c9807811d4c9af917669a92f
7
+ data.tar.gz: ee495654a96c8cdd2c6d8ddf66bbbb5d243418a1edaa70d8c5509c2fdccaa656b6126ccf19c9bf0ea9307ef682993841a6bc027764ef64eadba335a5d29b8302
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- krausefx-shenzhen (0.14.1)
4
+ krausefx-shenzhen (0.14.2)
5
5
  aws-sdk (~> 1.0)
6
6
  commander (~> 4.3)
7
7
  dotenv (>= 0.7)
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ![Shenzhen](https://raw.github.com/nomad/nomad.github.io/assets/shenzhen-banner.png)
2
2
 
3
+ ## This is a fork from [nomad shenzhen](https://github.com/nomad/shenzhen) which fixes issues with the Apple Watch.
4
+
3
5
  Create `.ipa` files and distribute them from the command line, using any of the following methods:
4
6
 
5
7
  - [iTunes Connect](https://itunesconnect.apple.com)
@@ -0,0 +1,25 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'dotenv'
4
+ Dotenv.load
5
+
6
+ require 'commander/import'
7
+ require 'terminal-table'
8
+
9
+ $:.push File.expand_path("../../lib", __FILE__)
10
+ require 'shenzhen'
11
+
12
+ HighLine.track_eof = false # Fix for built-in Ruby
13
+
14
+ program :version, Shenzhen::VERSION
15
+ program :description, 'Build and distribute iOS apps (.ipa files)'
16
+
17
+ program :help, 'Author', 'Mattt Thompson <m@mattt.me>'
18
+ program :help, 'Website', 'http://mattt.me'
19
+ program :help_formatter, :compact
20
+
21
+ global_option('--verbose') { $verbose = true }
22
+
23
+ default_command :help
24
+
25
+ require 'shenzhen/commands'
@@ -1,3 +1,3 @@
1
1
  module Shenzhen
2
- VERSION = '0.14.1'
2
+ VERSION = '0.14.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: krausefx-shenzhen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattt Thompson
@@ -208,7 +208,8 @@ dependencies:
208
208
  version: '0'
209
209
  description: CLI for Building & Distributing iOS Apps (.ipa Files)
210
210
  email: m@mattt.me
211
- executables: []
211
+ executables:
212
+ - krausefx-ipa
212
213
  extensions: []
213
214
  extra_rdoc_files: []
214
215
  files:
@@ -217,6 +218,7 @@ files:
217
218
  - ./LICENSE
218
219
  - ./README.md
219
220
  - ./Rakefile
221
+ - ./krausefx-shenzhen-0.14.1.gem
220
222
  - ./lib/shenzhen.rb
221
223
  - ./lib/shenzhen/agvtool.rb
222
224
  - ./lib/shenzhen/commands.rb
@@ -237,6 +239,7 @@ files:
237
239
  - ./lib/shenzhen/version.rb
238
240
  - ./lib/shenzhen/xcodebuild.rb
239
241
  - ./shenzhen.gemspec
242
+ - bin/krausefx-ipa
240
243
  homepage: http://nomad-cli.com
241
244
  licenses:
242
245
  - MIT