-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added `Client` protocol docs - #2
- Loading branch information
Aron Balog
committed
Mar 6, 2018
1 parent
83cd6f2
commit e02efd5
Showing
53 changed files
with
322 additions
and
60 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
target 'Vox' do | ||
use_frameworks! | ||
|
||
pod 'Alamofire', '~> 4.7' | ||
|
||
target 'VoxTests' do | ||
inherit! :search_paths | ||
|
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,15 +1,18 @@ | ||
PODS: | ||
- Alamofire (4.7.0) | ||
- Nimble (7.0.3) | ||
- Quick (1.2.0) | ||
|
||
DEPENDENCIES: | ||
- Alamofire (~> 4.7) | ||
- Nimble | ||
- Quick | ||
|
||
SPEC CHECKSUMS: | ||
Alamofire: 907e0a98eb68cdb7f9d1f541a563d6ac5dc77b25 | ||
Nimble: 7f5a9c447a33002645a071bddafbfb24ea70e0ac | ||
Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08 | ||
|
||
PODFILE CHECKSUM: 66b133f477257acc4bcbde7cbe44557233e54c46 | ||
PODFILE CHECKSUM: d6370329bd52b0306d7c72b4a2cf75a0248944c9 | ||
|
||
COCOAPODS: 1.4.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
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,13 +1,26 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'Vox' | ||
spec.version = '1.0.4' | ||
spec.license = 'MIT' | ||
spec.summary = 'A Swift JSONAPI framework' | ||
spec.author = 'Aron Balog' | ||
spec.homepage = 'http://undabot.com' | ||
spec.source = { :git => 'https://github.com/aronbalog/Vox.git', :tag => spec.version } | ||
spec.source_files = 'Vox/**/*' | ||
spec.requires_arc = true | ||
spec.xcconfig = { 'SWIFT_VERSION' => '4.0' } | ||
spec.platform = :ios, '8.0' | ||
spec.name = 'Vox' | ||
spec.version = '1.1.0' | ||
spec.license = 'MIT' | ||
spec.summary = 'A Swift JSONAPI framework' | ||
spec.author = 'Aron Balog' | ||
spec.homepage = 'http://undabot.com' | ||
spec.source = { :git => 'https://github.com/aronbalog/Vox.git', :tag => spec.version } | ||
spec.requires_arc = true | ||
spec.xcconfig = { 'SWIFT_VERSION' => '4.0' } | ||
spec.platform = :ios, '8.0' | ||
spec.default_subspec = 'Core' | ||
|
||
spec.subspec 'Core' do |core| | ||
core.source_files = 'Vox/Core/**/*.{swift,m,h}' | ||
end | ||
|
||
spec.subspec 'Alamofire' do |alamofire| | ||
alamofire.source_files = 'Vox/Plugins/Alamofire/**/*.{swift}' | ||
alamofire.pod_target_xcconfig = { | ||
'SWIFT_ACTIVE_COMPILATION_CONDITIONS' => 'ALAMOFIRE', | ||
} | ||
alamofire.dependency 'Vox/Core' | ||
alamofire.dependency 'Alamofire', '~> 4.7' | ||
end | ||
end |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.