-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTSCollections.podspec
More file actions
36 lines (29 loc) · 1.22 KB
/
TSCollections.podspec
File metadata and controls
36 lines (29 loc) · 1.22 KB
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
Pod::Spec.new do |s|
s.name = "TSCollections"
s.version = "0.3.2
"
s.summary = "Implementation of stack, queue, expanding array and two dimensinal array"
s.description = <<-DESC
TSCollections inclundes implemenations for stack, queue, expanding array and
two dimensional array (implemented with the expanding arrays). There is a subspec
for each collecitons so you only have to include what you need in your code.
DESC
s.homepage = "https://github.com/laptobbe/TSCollections"
s.license = 'MIT'
s.author = { "Tobias Sundstrand" => "tobias.sundstrand@gmail.com" }
s.source = { :git => "https://github.com/laptobbe/TSCollections.git", :tag => s.version.to_s }
s.requires_arc = true
s.subspec "TSStack" do |sp|
sp.source_files = "Classes/NSMutableArray+TSStack.{h,m}"
end
s.subspec "TSQueue" do |os|
os.source_files = "Classes/NSMutableArray+TSQueue.{h,m}"
end
s.subspec "TSExpandingArray" do |a|
a.source_files = "Classes/TSExpandingArray.{h,m}"
end
s.subspec "TSTwoDimensionalArray" do |k|
k.source_files = "Classes/TSTwoDimensionalArray.{h,m}"
k.dependency "TSCollections/TSExpandingArray"
end
end