forked from krzyzanowskim/MKDataScanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMKDataScanner.podspec
More file actions
25 lines (20 loc) · 963 Bytes
/
MKDataScanner.podspec
File metadata and controls
25 lines (20 loc) · 963 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
Pod::Spec.new do |s|
s.name = "MKDataScanner"
s.version = "0.2"
s.summary = "NSScanner for NSData and files."
s.description = "MKDataScanner is for raw data, what NSScanner is for NSString."
s.homepage = "https://github.com/krzyzanowskim/MKDataScanner"
s.license = { :type => 'BSD', :file => 'LICENSE.txt' }
s.source = { :git => "https://github.com/krzyzanowskim/MKDataScanner.git", :tag => "#{s.version}" }
s.authors = {'Marcin Krzyżanowski' => 'marcin.krzyzanowski@hakore.com'}
s.social_media_url = "https://twitter.com/krzyzanowskim"
s.ios.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.ios.header_dir = 'MKDataScanner'
s.osx.platform = :osx, '10.9'
s.osx.deployment_target = '10.9'
s.osx.header_dir = 'MKDataScanner'
s.source_files = 'MKDataScanner/*.{h,m}'
s.public_header_files = 'MKDataScanner/*.h'
s.requires_arc = true
end