-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCBHMapReduceKit.podspec
More file actions
25 lines (16 loc) · 950 Bytes
/
CBHMapReduceKit.podspec
File metadata and controls
25 lines (16 loc) · 950 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 |spec|
spec.name = 'CBHMapReduceKit'
spec.version = '1.1.0'
spec.module_name = 'CBHMapReduceKit'
spec.summary = 'Adds map, filter, and reduce methods to common collection types.'
spec.homepage = 'https://github.com/chris-huxtable/CBHMapReduceKit'
spec.license = { :type => 'ISC', :file => 'LICENSE' }
spec.author = { 'Chris Huxtable' => 'chris@huxtable.ca' }
spec.social_media_url = 'https://twitter.com/@Chris_Huxtable'
spec.osx.deployment_target = '10.11'
spec.source = { :git => 'https://github.com/chris-huxtable/CBHMapReduceKit.git', :tag => "v#{spec.version}" }
spec.requires_arc = true
spec.public_header_files = 'CBHMapReduceKit/*.h'
#spec.private_header_files = 'CBHMapReduceKit/_*.h'
spec.source_files = 'CBHMapReduceKit/*.{h,m}'
end