Files
GitHawk/Local Pods/GitHubAPI/GitHubAPI.podspec
Ryan Nystrom 45335eb4a0 [WIP] Refactor networking to shared lib (#1602)
* [WIP] Refactor networking to shared lib

* notification models as codable and tests

* default request params

* break out into files

* fix tests

* check notification values

* add milestones

* add milestone response

* repo notifications

* refactor v3 response

* refactor to support passing response to response initializer

* add release fetch and model

* add examples from githawk

* notifications working

* almost all notifications requests migrated

* finish notification migration, add graphql request/response

* replace issue requests

* replace milestones request

* fetch assignees migrated

* readme fetch migrated

* migrate badge request

* delete unused request from client

* remove paging

* nearly done w/ migration

* local build green

* refactor gql fetches, replace mutations

* build green, slim down client

* strip session manager from client

* everything working
2018-03-04 21:35:36 -05:00

14 lines
569 B
Ruby

Pod::Spec.new do |spec|
spec.name = 'GitHubAPI'
spec.version = '0.1.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/rnystrom/githawk'
spec.authors = { 'Ryan Nystrom' => 'rnystrom@whoisryannystrom.com' }
spec.summary = '.'
spec.source = { :git => 'https://github.com/rnystrom/githawk/githawk.git', :tag => '#{s.version}' }
spec.source_files = 'GitHubAPI/*.swift'
spec.platform = :ios, '10.0'
spec.dependency 'Alamofire', '~> 4.4.0'
spec.dependency 'Apollo', '~> 0.7.0-alpha.5'
end