-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Benko
committed
Jun 10, 2014
1 parent
83fb612
commit 569fc07
Showing
3 changed files
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# ObjectiveTLS CHANGELOG | ||
|
||
## 0.1.0 | ||
|
||
Initial release. |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a | ||
# valid spec and remove all comments before submitting the spec. | ||
# | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
Pod::Spec.new do |s| | ||
s.name = "ObjectiveTLS" | ||
s.version = File.read('VERSION') | ||
s.summary = "Encryption for data in transit; ObjectiveTLS will secure data for transit similar to the handshake protocol of TLS." | ||
s.description = <<-DESC | ||
Transport Layer Security for securing data payloads in Objective-C. An easy way to secure data by providing a symmetric key for that transaction. Keys are generated on the fly and every message will have a new key. | ||
DESC | ||
s.homepage = "https://github.com/DavidBenko/Objective-TLS" | ||
s.license = 'MIT' | ||
s.author = { "David Benko" => "[email protected]" } | ||
s.source = { :git => "https://github.com/DavidBenko/Objective-TLS.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/davidwbenko' | ||
|
||
s.platform = :ios | ||
s.requires_arc = true | ||
|
||
s.source_files = 'ObjectiveTLS' | ||
end |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.0 |