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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7824c265f2574563f36ba3b30ce70a5fd9226015
4
- data.tar.gz: c80f2c7bd6b004597f6fbf24b7c979629757b646
3
+ metadata.gz: 7754b1a938c6eea5dfa57debb94416d0017034b1
4
+ data.tar.gz: 10e0daa0ec1a1e8d734c8be62371d9bb8522a9a0
5
5
  SHA512:
6
- metadata.gz: 18b6b4209a5e95b681ba18e8930a397fad4be16b7de81f65d8a8417fba911f7b68b8b329fdf00d932f5f04535724c453ce7039c7e6b0a1c7c43386376c560464
7
- data.tar.gz: 011e230f0c8375e2f72a223d0408f849f70b483b90d46093517d424f7fd10aa158b0a862ab588b636d4cb3c26477592b550e20bcc63fdb6811c42bdfecc3a4fa
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 || "iOS Distribution"}" -o #{@ipa_file} #{the_app_file} 2>&1`
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
@@ -1,3 +1,3 @@
1
1
  module Hawk
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
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 'iOS Distribution'
9
- #signing_identity 'iOS Distribution'
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'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hawk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mat Trudel