This repository has been archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate to swift 3 * Update tests * Update project settings * Update docs * Update readme * Update for Unbox 2 * Specify Swift versions * Update Travis CI config * Minor project updates * Update podspec
- Loading branch information
Showing
19 changed files
with
172 additions
and
144 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
language: objective-c | ||
osx_image: xcode7.3 | ||
osx_image: xcode8 | ||
|
||
env: | ||
global: | ||
|
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "Alamofire/Alamofire" ~> 3.0 | ||
github "JohnSundell/Unbox" ~> 1.5 | ||
github "Alamofire/Alamofire" ~> 4.0 | ||
github "JohnSundell/Unbox" ~> 2.0 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "Alamofire/Alamofire" "3.4.1" | ||
github "JohnSundell/Unbox" "1.9" | ||
github "Alamofire/Alamofire" "4.0.1" | ||
github "JohnSundell/Unbox" "2.0" |
Submodule Alamofire
updated
79 files
Submodule Unbox
updated
19 files
+0 −6 | .slather.yml | |
+1 −1 | .swift-version | |
+5 −50 | .travis.yml | |
+0 −6 | Gemfile | |
+0 −79 | Gemfile.lock | |
+70 −89 | README.md | |
+597 −649 | Sources/Unbox.swift | |
+491 −360 | Tests/UnboxTests.swift | |
+2 −2 | Unbox.podspec | |
+31 −1 | Unbox.xcodeproj/project.pbxproj | |
+1 −1 | Unbox.xcodeproj/xcshareddata/xcschemes/Unbox-OSX.xcscheme | |
+1 −1 | Unbox.xcodeproj/xcshareddata/xcschemes/Unbox-iOS.xcscheme | |
+1 −1 | Unbox.xcodeproj/xcshareddata/xcschemes/Unbox-tvOS.xcscheme | |
+1 −1 | Unbox.xcodeproj/xcshareddata/xcschemes/Unbox-watchOS.xcscheme | |
+0 −10 | ci/after_success.sh | |
+0 −3 | ci/before_install.sh | |
+0 −14 | ci/deploy.sh | |
+0 −29 | ci/lib/travis_helpers.sh | |
+0 −27 | ci/script.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "UnboxedAlamofire" | ||
s.version = "1.0.1" | ||
s.version = "2.0" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.summary = "Alamofire + Unbox: the easiest way to download and decode JSON into swift objects." | ||
s.homepage = "https://github.com/serejahh/UnboxedAlamofire" | ||
s.author = { "Serhii Butenko" => "[email protected]" } | ||
s.source = { :git => 'https://github.com/serejahh/UnboxedAlamofire.git', :tag => s.version.to_s } | ||
s.source = { :git => 'https://github.com/serejahh/UnboxedAlamofire.git', :tag => s.version } | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.10' | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.11' | ||
s.watchos.deployment_target = '2.0' | ||
s.tvos.deployment_target = '9.0' | ||
|
||
s.requires_arc = 'true' | ||
s.source_files = 'UnboxedAlamofire/**/*.swift' | ||
s.dependency 'Alamofire', '~> 3.0' | ||
s.dependency 'Unbox', '~> 1.5' | ||
s.dependency 'Alamofire', '~> 4.0' | ||
s.dependency 'Unbox', '~> 2.0' | ||
end |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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.