-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from RobotsAndPencils/Swift3
Migrate Astro to Swift3
- Loading branch information
Showing
185 changed files
with
12,097 additions
and
7,727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,4 @@ DerivedData | |
# Pods/ | ||
|
||
.idea | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = "Astro" | ||
s.version = "2.0.0" | ||
s.version = "3.0.0" | ||
s.summary = "A RoboPod containing a small collection of utilities for project reuse" | ||
s.homepage = "https://RobotsAndPencils.com" | ||
s.license = { | ||
|
@@ -25,13 +25,15 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI | |
"Chad Sykes" => "[email protected]", | ||
"Colin Gislason" => "[email protected]", | ||
"Dominic Pepin" => "[email protected]", | ||
"Michael Beaureguard" => "[email protected]" | ||
"Michael Beaureguard" => "[email protected]", | ||
"Stephen Gazzard" => "[email protected]" | ||
} | ||
s.source = { :git => "https://github.com/RobotsAndPencils/Astro.git", :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.platform = :ios, '8.0' | ||
s.ios.deployment_target = '9.0' | ||
s.platform = :ios, '9.0' | ||
s.requires_arc = true | ||
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' } | ||
|
||
s.subspec 'Logging' do | log | | ||
log.source_files = 'Astro/Logging/**/*.swift' | ||
|
@@ -40,9 +42,9 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI | |
s.subspec 'Networking' do | net | | ||
net.source_files = 'Astro/Networking/**/*.swift' | ||
net.dependency 'Astro/Logging' | ||
net.dependency 'Alamofire', '~> 3.3' | ||
net.dependency 'Freddy', '~> 2.0' | ||
net.dependency 'SwiftTask', '5.0' | ||
net.dependency 'Alamofire', '~> 4.0' | ||
net.dependency 'Freddy', '~> 3.0' | ||
net.dependency 'SwiftTask', '~> 5.0' | ||
end | ||
|
||
s.subspec 'Security' do | security | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.