-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated README, updated podspec to require ARC, bumped to version 1.0.9
- Loading branch information
1 parent
3956766
commit 456225c
Showing
2 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "STPrivilegedTask" | ||
s.version = "1.0.7" | ||
s.summary = "An NSTask-like wrapper around Mac OS X Security Framework's AuthorizationExecuteWithPrivileges()" | ||
s.description = "An NSTask-like wrapper around AuthorizationExecuteWithPrivileges() in the Security API to run shell commands with root privileges in Mac OS X." | ||
s.version = "1.0.8" | ||
s.summary = "An NSTask-like wrapper around the macOS Security Framework's AuthorizationExecuteWithPrivileges()" | ||
s.description = "An NSTask-like wrapper around AuthorizationExecuteWithPrivileges() in the Security API to run shell commands with root privileges on macOS." | ||
s.homepage = "http://github.com/sveinbjornt/STPrivilegedTask" | ||
s.license = { :type => 'BSD' } | ||
s.author = { "Sveinbjorn Thordarson" => "sveinbjorn@sveinbjorn.org" } | ||
s.osx.deployment_target = "10.8" | ||
s.source = { :git => "https://github.com/sveinbjornt/STPrivilegedTask.git", :tag => "1.0.7" } | ||
s.source = { :git => "https://github.com/sveinbjornt/STPrivilegedTask.git", :tag => "1.0.8" } | ||
s.source_files = "STPrivilegedTask.{h,m}" | ||
s.exclude_files = "PrivilegedTaskExample" | ||
s.public_header_files = "STPrivilegedTask.h" | ||
s.framework = "Security" | ||
s.requires_arc = false | ||
s.requires_arc = true | ||
end |