-
Notifications
You must be signed in to change notification settings - Fork 12
/
IGDB-SWIFT-API.podspec
20 lines (19 loc) · 1.01 KB
/
IGDB-SWIFT-API.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'IGDB-SWIFT-API'
s.version = ENV['LIB_VERSION'] || '0.4.4'
s.summary = 'Wrapper for IGDBs API written in Swift.'
s.description = "A Swift wrapper for the IGDB.com Free Video Game Database API."
s.documentation_url = "https://api-docs.igdb.com"
s.homepage = 'https://github.com/husnjak/IGDB-API-SWIFT'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Filip Husnjak' => '[email protected]' }
s.source = { :git => 'https://github.com/husnjak/IGDB-API-SWIFT.git', :tag => s.version.to_s }
s.platforms = { :ios => "12.2", :osx => "10.15", :watchos => "7" }
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '7.0'
s.swift_version = '5.0'
s.source_files = 'Sources/IGDB-SWIFT-API/**/*.swift'
s.dependency 'SwiftProtobuf', '~> 1.25.1'
s.dependency 'Just', '~> 0.8.0'
end