-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEntropyString.podspec
27 lines (20 loc) · 1.14 KB
/
EntropyString.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# coding: utf-8
Pod::Spec.new do |s|
s.name = "EntropyString"
s.version = "3.0.3"
s.summary = "Efficiently generate cryptographically strong random strings of specified entropy from various character sets."
s.description = <<-DESC
Efficiently generate cryptographically strong and secure random strings of specified entropy from various character sets for use when probabilisticly unique string identifiers are needed. Entropy is calculated from a total number of strings and acceptable risk of a repeat.
DESC
s.homepage = "https://github.com/EntropyString/EntropyString-Swift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "knoxen" => "[email protected]", "dingo sky" => "[email protected]" }
s.social_media_url = "http://twitter.com/knoxen"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/EntropyString/EntropyString-Swift.git", :tag => "#{s.version}" }
s.source_files = "Sources/*.swift"
# s.public_header_files = "#{s.name}/{s.name}.h"
end