-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNanoID.podspec
More file actions
26 lines (22 loc) · 844 Bytes
/
NanoID.podspec
File metadata and controls
26 lines (22 loc) · 844 Bytes
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
Pod::Spec.new do |s|
s.name = "NanoID"
s.version = "1.0.3"
s.summary = "Secure, unique, and configurable ID generator"
s.description = <<-DESC
Another Swift implementation of Nano ID. Includes secure & insecure randomizers.
DESC
s.homepage = "https://github.com/Tundaware/NanoID"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "George Cox" => "george@tundaware.com" }
s.social_media_url = "https://twitter.com/Tundaware"
s.source = {
:git => "https://github.com/Tundaware/NanoID.git",
:tag => s.version.to_s
}
s.swift_version = '5.1'
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '4.0'
s.osx.deployment_target = '10.11'
s.source_files = 'Sources/NanoID/**/*.swift'
end