Skip to content

Commit 7e883f0

Browse files
committed
Update pod summary for 0.1.0 release
1 parent ee09910 commit 7e883f0

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

BuildMode.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
Pod::Spec.new do |s|
1010
s.name = 'BuildMode'
1111
s.version = '0.1.0'
12-
s.summary = 'Indicates whether the iOS Build is simulator, debuggable, enterprise or distribution build. It also indicates whether the build should use sandbox or production services from Apple'
12+
s.summary = 'Provides info about the iOS app for simulator, debuggable, enterprise or distribution builds to use sandbox or production cloud from Apple'
1313
s.swift_versions = '5'
1414
s.description = <<-DESC
1515
Parses the provisioning profile and entitlements from the main bundle and uses un-official heuristics to determine whether a build is for simulator, debuggable, enterprise or distribution.
16-
This helps determine when the app should use sandbox or production services from Apple in the server-side.
16+
This helps determine when the app should use sandbox or production cloud services from Apple in the server-side.
1717
DESC
1818

1919
s.homepage = 'https://github.com/bithavoc/BuildMode'

BuildMode/Classes/ProvisioningProfile.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public func ProvisioningProfileFrom(bundle: Bundle = Bundle.main) -> Provisionin
6060
guard let plistData = plistText.data(using: .isoLatin1) else {
6161
return nil
6262
}
63-
guard let plist = try? PropertyListSerialization.propertyList(from: plistData, format: nil) as! [String:Any] else {
64-
return nil
65-
}
66-
print("plist", plist)
63+
// guard let plist = try? PropertyListSerialization.propertyList(from: plistData, format: nil) as! [String:Any] else {
64+
// return nil
65+
// }
66+
// print("plist", plist)
6767
let profile = try! PropertyListDecoder().decode(ProvisioningProfile.self, from: plistData)
6868
return profile
6969
}

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)