forked from ceeK/Solar
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolar.podspec
More file actions
Latest commit
17 lines (17 loc) · 818 Bytes
/
Copy pathSolar.podspec
File metadata and controls
17 lines (17 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.newdo |s|
s.name="Solar"
s.version="3.0.1"
s.summary="A Swift library for generating Sunrise and Sunset times."
s.description="A Swift library for generating Sunrise and Sunset times. All calculations take place locally without the need for a network request."
s.homepage="http://github.com/ceek/solar"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Chris Howell"=>"chris.kevin.howell@gmail.com"}
s.ios.deployment_target='9.0'
s.watchos.deployment_target='3.0'
s.tvos.deployment_target='9.0'
s.osx.deployment_target='10.9'
s.source={:git=>"https://github.com/ceek/Solar.git",:tag=>"#{s.version}"}
s.source_files="Solar/*.{swift}"
s.requires_arc=true
s.swift_version="5.0"
end