- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBit.podspec
More file actions
Latest commit
21 lines (16 loc) · 689 Bytes
/
Copy pathBit.podspec
File metadata and controls
21 lines (16 loc) · 689 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='Bit'
s.version='1.1.0'
s.summary='Bit operation library in Swift.'
s.description=<<-DESC
A handy tool for anyone messing with bits and bytes.
DESC
s.homepage='https://github.com/mlachmish/Bit'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Matan Lachmish'=>'mlachmish@gmail.com'}
s.source={:git=>'https://github.com/mlachmish/Bit.git',:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/mlachmish'
s.ios.deployment_target='8.0'
s.source_files='Bit/**/*'
s.requires_arc=true
end