hawk 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hawk/builder.rb +1 -1
- data/lib/hawk/version.rb +1 -1
- data/templates/Hawkfile +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7754b1a938c6eea5dfa57debb94416d0017034b1
|
4
|
+
data.tar.gz: 10e0daa0ec1a1e8d734c8be62371d9bb8522a9a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e06e2e9eae18f1f0ebcdd6328977f54410eafefc84a4ce0e17603a707d7e17e9aa30094c3bbf4b841adf14dc73a2f80aa915064a6c6ee7df004eaa25f450f533
|
7
|
+
data.tar.gz: e4402746bca82a04a4eb598ff67bb84713bc866f09c3240e04298927923adc8e4af9d1fe00b4af445a007e7a9787ba1aacd1eb0ae7a550868589fa23a20cf88d
|
data/lib/hawk/builder.rb
CHANGED
@@ -50,7 +50,7 @@ module Hawk
|
|
50
50
|
the_app_file = app_file # Do this before below so output happens in the right order
|
51
51
|
|
52
52
|
print "Signing app..."
|
53
|
-
output = `/usr/bin/xcrun -sdk iphoneos PackageApplication -v -s "#{@signing_identity || "
|
53
|
+
output = `/usr/bin/xcrun -sdk iphoneos PackageApplication -v -s "#{@signing_identity || "iPhone Distribution"}" -o #{@ipa_file} #{the_app_file} 2>&1`
|
54
54
|
if $?.to_i != 0
|
55
55
|
puts "error (text follows)"
|
56
56
|
abort output
|
data/lib/hawk/version.rb
CHANGED
data/templates/Hawkfile
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
#
|
6
6
|
# XCode project information - used to configure how your app is built and signed
|
7
7
|
#
|
8
|
-
# The signing identity to sign your app with. Defaults to '
|
9
|
-
#signing_identity '
|
8
|
+
# The signing identity to sign your app with. Defaults to 'iPhone Distribution'
|
9
|
+
#signing_identity 'iPhone Distribution'
|
10
10
|
#
|
11
11
|
# The project file to load (this is usually found automatically)
|
12
12
|
#project 'SampleProject.xcodeproj'
|