Skip to content

Commit 569fc07

Browse files
author
David Benko
committed
Release v0.1.0
1 parent 83fb612 commit 569fc07

3 files changed

Lines changed: 30 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# ObjectiveTLS CHANGELOG
2+
3+
## 0.1.0
4+
5+
Initial release.

ObjectiveTLS.podspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
3+
# valid spec and remove all comments before submitting the spec.
4+
#
5+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
6+
#
7+
Pod::Spec.new do |s|
8+
s.name = "ObjectiveTLS"
9+
s.version = File.read('VERSION')
10+
s.summary = "Encryption for data in transit; ObjectiveTLS will secure data for transit similar to the handshake protocol of TLS."
11+
s.description = <<-DESC
12+
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.
13+
DESC
14+
s.homepage = "https://github.com/DavidBenko/Objective-TLS"
15+
s.license = 'MIT'
16+
s.author = { "David Benko" => "dbenko@prndl.us" }
17+
s.source = { :git => "https://github.com/DavidBenko/Objective-TLS.git", :tag => s.version.to_s }
18+
s.social_media_url = 'https://twitter.com/davidwbenko'
19+
20+
s.platform = :ios
21+
s.requires_arc = true
22+
23+
s.source_files = 'ObjectiveTLS'
24+
end

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

0 commit comments

Comments
 (0)