- Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathPESGraph.podspec
More file actions
Latest commit
15 lines (12 loc) · 581 Bytes
/
Copy pathPESGraph.podspec
File metadata and controls
15 lines (12 loc) · 581 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.newdo |s|
s.name="PESGraph"
s.version="0.2.1"
s.summary="Objective-C implementation of a Graph, along with Dijkstra's algorithm for shortest path finding"
s.homepage="https://github.com/snyderp/PESGraph"
s.license={:type=>'BSD2',:file=>'LICENSE.txt'}
s.author={"Peter Snyder"=>"snyderp@gmail.com"}
s.source={:git=>"https://github.com/snyderp/PESGraph.git",:tag=>"v0.2.1"}
s.source_files='PESGraph','PESGraph/*.{h,m}'
s.framework='Foundation'
s.requires_arc=true
end