forked from sharplet/EnumeratorKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EnumeratorKit.podspec
38 lines (29 loc) · 1.17 KB
/
EnumeratorKit.podspec
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
30
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = 'EnumeratorKit'
s.version = '1.0.0'
s.summary = 'Ruby-style enumeration in Objective-C.'
s.description = <<-EOS
EnumeratorKit is a collection enumeration library modelled after
Ruby's Enumerable module and Enumerator class.
It allows you to work with collections of objects in a very
compact, expressive way, and to chain enumerator operations together
to form higher-level operations.
EnumeratorKit extends the Foundation collection classes, and enables
you to easily include the same functionality in your own custom
collection classes.
EOS
s.requires_arc = true
s.homepage = 'https://github.com/sharplet/EnumeratorKit'
s.license = 'MIT'
s.author = { 'Adam Sharp' => '[email protected]' }
s.source = { :git => 'https://github.com/sharplet/EnumeratorKit.git', :tag => "#{s.version}" }
s.source_files = 'EnumeratorKit/EnumeratorKit.h'
s.default_subspec = 'Core'
s.subspec 'Core' do |e|
e.source_files = 'EnumeratorKit/Core'
e.dependency 'EnumeratorKit/EKFiber'
end
s.subspec 'EKFiber' do |f|
f.source_files = 'EnumeratorKit/EKFiber'
end
end