-
Notifications
You must be signed in to change notification settings - Fork 206
/
EPSignature.podspec
27 lines (24 loc) · 987 Bytes
/
EPSignature.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
Pod::Spec.new do |s|
s.name = "EPSignature"
s.version = "1.0.5"
s.summary = "Signature component for iOS in Swift"
s.description = <<-DESC
Features
1. User can draw the signature either by finger or by apple pencil
2. Ability to save the signature as default signature
3. Ability to load the saved signature
4. Works on both orientations(portrait and landscape)
5. Works on both iPhone and iPad
6. Also can be embedded in any container view
7. Can extract the signature as Image
8. Draws smoothly
DESC
s.homepage = "https://github.com/ipraba/EPSignature"
s.license = 'MIT'
s.author = { "Prabaharan" => "[email protected]" }
s.source = { :git => "https://github.com/ipraba/EPSignature.git", :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.swift'
s.resources = ["Pod/Classes/EPSignatureViewController.xib"]
end