-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathGPassword.podspec
More file actions
28 lines (24 loc) · 1.1 KB
/
GPassword.podspec
File metadata and controls
28 lines (24 loc) · 1.1 KB
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
28
Pod::Spec.new do |s|
s.name = "GPassword"
s.version = "1.0.9"
s.summary = "Simple gesture password in swift."
s.description = <<-DESC
This framework help you build your gesture password easily!
DESC
s.homepage = "https://github.com/hackjie/GPassword"
s.license = "MIT"
s.author = { "leoli" => "codelijie@gmail.com" }
s.source = { :git => "https://github.com/hackjie/GPassword.git", :tag => "#{s.version}" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target. You can optionally include the target after the platform.
#
# When using multiple platforms
s.ios.deployment_target = "8.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source_files = "Source/**/*.swift"
# s.public_header_files = "Classes/**/*.h"
end