- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEquatableArray.podspec
More file actions
Latest commit
18 lines (15 loc) · 661 Bytes
/
Copy pathEquatableArray.podspec
File metadata and controls
18 lines (15 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.newdo |s|
s.name="EquatableArray"
s.version="2.0.0"
s.summary="A Swift array wrapper that is Equatable"
s.description=<<-DESC
A wrapper arround swift array that is Equatable.
DESC
s.homepage="https://github.com/mikaoj/EquatableArray"
s.license='MIT'
s.author={"Joakim Gyllstrom"=>"joakim@backslashed.se"}
s.source={:git=>"https://github.com/mikaoj/EquatableArray.git",:tag=>s.version.to_s}
s.platform=:ios,'8.0'
s.requires_arc=true
s.source_files='Source/*.swift'
end