-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBeatChain.podspec
19 lines (18 loc) · 1 KB
/
BeatChain.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "BeatChain"
s.version = "1.0.0"
s.summary = "BeatChain is a manager for saving and retrieving string values into keychain written in swift."
s.description = <<-DESC
BeatChain is a manager for saving and retrieving string values into keychain written in swift. iOS devices, you can add, retrieve and delete
items from keychain.
DESC
s.homepage = "https://github.com/beatlabs/BeatChain"
s.license = { :type => "Apache Licence, Version 2.0", :file => "LICENSE" }
s.authors = { "ΒΕΑΤ" => "iosteam@thebeat.co" }
s.social_media_url = "http://twitter.com/taxibeat"
s.source = { :git => "https://github.com/beatlabs/BeatChain.git", :tag => "#{s.version}" }
s.platform = :ios, '10.0'
s.source_files = ["BeatChain/**/*.swift", "BeatChain/BeatChain.h"]
s.swift_version = "4.2"
s.swift_versions = ['4.0', '4.2', '5.0']
end