forked from yankodimitrov/SwiftPasscodeLock
- Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathPasscodeLock.podspec
More file actions
Latest commit
executable file
·21 lines (17 loc) · 641 Bytes
/
Copy pathPasscodeLock.podspec
File metadata and controls
executable file
·21 lines (17 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.newdo |s|
s.name='PasscodeLock'
s.version='1.0.3'
s.license={:type=>"MIT",:file=>'LICENSE.txt'}
s.summary='An iOS passcode lock with Touch ID authentication written in Swift.'
s.homepage='https://github.com/velikanov/SwiftPasscodeLock'
s.authors={'Yanko Dimitrov'=>'','Chris Ziogas'=>'',}
s.source={:git=>'https://github.com/velikanov/SwiftPasscodeLock.git'}
s.ios.deployment_target='8.0'
s.source_files='PasscodeLock/*.{h,swift}',
'PasscodeLock/*/*.{swift}'
s.resources=[
'PasscodeLock/Views/PasscodeLockView.xib',
'PasscodeLock/en.lproj/*'
]
s.requires_arc=true
end