-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIOPatternLock.podspec
More file actions
29 lines (22 loc) · 854 Bytes
/
IOPatternLock.podspec
File metadata and controls
29 lines (22 loc) · 854 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
27
28
29
Pod::Spec.new do |s|
s.name = 'IOPatternLock'
s.summary = 'An easy-to-use, customizable Android Pattern Lock view for iOS'
s.version = '1.0.6'
s.author = 'Ilker OZCAN'
s.homepage = 'https://github.com/ilk33r/IOPatternLock'
s.license = { :type => 'MIT' }
s.platform = :ios, '9.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/ilk33r/IOPatternLock.git', :tag => '1.0.6' }
s.ios.deployment_target = '9.0'
s.default_subspecs = 'Default'
s.module_name = 'IOPatternLock'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.frameworks = 'Foundation', 'UIKit'
s.subspec 'Default' do |ss|
ss.public_header_files = [ 'IOPatternLock/IOPatternLock.h',
'IOPatternLock/Protocols/IOPatternLockDelegate.h',
'IOPatternLock/Views/IOPatternLockView.h' ]
ss.source_files = 'IOPatternLock/**/*.{h,m}'
end
end