-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathSolar-dev.podspec
More file actions
18 lines (18 loc) · 849 Bytes
/
Solar-dev.podspec
File metadata and controls
18 lines (18 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Solar-dev"
s.module_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