-
Notifications
You must be signed in to change notification settings - Fork 3
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 #50 from futuredapp/develop
Release v1.0.0
- Loading branch information
Showing
55 changed files
with
1,108 additions
and
1,276 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @futuredapp/ios |
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,19 @@ | ||
name: Swift | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: swift build | ||
- name: Run tests | ||
run: swift test |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,36 +1,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "FTAPIKit" | ||
s.version = "0.6.0" | ||
s.summary = "Declarative, generic REST API framework using URLSession and Codable" | ||
s.description = <<-DESC | ||
Protocol-oriented REST API library for communication with REST API. | ||
APIEndpoint protocols allow description of the API access points | ||
and the requests/responses codable types. APIAdapter handles execution | ||
of calls to this endpoints. | ||
s.name = "FTAPIKit" | ||
s.version = "1.0.0" | ||
s.summary = "Declarative, generic and protocol-orented REST API framework using URLSession and Codable" | ||
s.description = <<-DESC | ||
Protocol-oriented framework for communication with REST APIs. | ||
Endpoint protocols describe the API resource access points | ||
and the requests/responses codable types. Server protocol describes web services | ||
and enables the user to call endoints in a type-safe manner. | ||
DESC | ||
s.homepage = "https://github.com/futuredapp/FTAPIKit" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Matěj Kašpar Jirásek" => "[email protected]" } | ||
s.social_media_url = "https://twitter.com/Futuredapps" | ||
s.default_subspec = 'Core' | ||
s.swift_version = "5.0" | ||
s.ios.deployment_target = "8.0" | ||
s.osx.deployment_target = "10.10" | ||
s.watchos.deployment_target = "2.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.source = { :git => "https://github.com/futuredapp/FTAPIKit.git", :tag => s.version.to_s } | ||
s.homepage = "https://github.com/futuredapp/FTAPIKit" | ||
s.license = { type: "MIT", file: "LICENSE" } | ||
s.author = { "Matěj Kašpar Jirásek": "[email protected]" } | ||
s.social_media_url = "https://twitter.com/Futuredapps" | ||
|
||
s.subspec 'Core' do |ss| | ||
ss.source_files = "Sources/FTAPIKit/*" | ||
ss.framework = "Foundation" | ||
ss.ios.framework = "MobileCoreServices" | ||
ss.tvos.framework = "MobileCoreServices" | ||
ss.watchos.framework = "MobileCoreServices" | ||
end | ||
s.source = { git: "https://github.com/futuredapp/FTAPIKit.git", tag: s.version.to_s } | ||
s.source_files = "Sources/FTAPIKit/*" | ||
|
||
s.subspec 'PromiseKit' do |ss| | ||
ss.source_files = Dir['Sources/FTAPIKitPromiseKit/*'] | ||
ss.dependency 'PromiseKit', '~> 6.0' | ||
ss.dependency 'FTAPIKit/Core' | ||
end | ||
s.framework = "Foundation" | ||
s.ios.framework = "MobileCoreServices" | ||
s.tvos.framework = "MobileCoreServices" | ||
s.watchos.framework = "MobileCoreServices" | ||
|
||
s.swift_version = "5.0" | ||
s.ios.deployment_target = "8.0" | ||
s.osx.deployment_target = "10.10" | ||
s.watchos.deployment_target = "2.0" | ||
s.tvos.deployment_target = "9.0" | ||
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
Oops, something went wrong.