-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApolloDeveloperKit.podspec
22 lines (22 loc) · 1.34 KB
/
ApolloDeveloperKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "ApolloDeveloperKit"
spec.version = "0.15.0"
spec.summary = "Visual debugger for Apollo iOS GraphQL client"
spec.description = <<-DESC
ApolloDeveloperKit is an iOS library which works as a bridge between Apollo iOS client and Apollo Client Developer tools.
This library adds an ability to watch the sent queries or mutations simultaneously, and also has the feature to request arbitrary operations from embedded GraphiQL console.
DESC
spec.homepage = "https://github.com/manicmaniac/ApolloDeveloperKit"
spec.screenshots = "https://user-images.githubusercontent.com/1672393/92017937-6fcc7d00-ed8f-11ea-8611-baf3aef386cf.png"
spec.documentation_url = "https://manicmaniac.github.io/ApolloDeveloperKit"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = { "Ryosuke Ito" => "rito.0305@gmail.com" }
spec.ios.deployment_target = '9.0'
spec.osx.deployment_target = '10.10'
spec.source = { :git => "https://github.com/manicmaniac/ApolloDeveloperKit.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/ApolloDeveloperKit/**/*.swift"
spec.resource = "Sources/ApolloDeveloperKit/Assets"
spec.cocoapods_version = '>= 1.7.0'
spec.swift_versions = ['5.0', '5.1', '5.2', '5.3']
spec.dependency "Apollo", ">= 0.34.0", "< 0.38.0"
end