-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGABoardGameGeek.podspec
More file actions
27 lines (22 loc) · 1.08 KB
/
GABoardGameGeek.podspec
File metadata and controls
27 lines (22 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'GABoardGameGeek'
s.version = '2.0.0'
s.summary = 'A Swift Library for interacting with the BoardGameGeek XMLAPI2'
s.description = <<-DESC
This library provides easy-to-use abstractions for interacting with the BoardGameGeek (BGG) XMLAPI2,
as well as convenient models which provide provide programmatic access to the data, without having
to deal with the complexities of parsing and error-checking the XML.
DESC
s.homepage = 'https://github.com/gca3020/GABoardGameGeek'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Geoff Amey' => 'gca3020@users.noreply.github.com' }
s.source = { :git => 'https://github.com/gca3020/GABoardGameGeek.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.12'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '10.0'
s.source_files = 'Sources/GABoardGameGeek/**/*'
s.swift_version = '5.0'
s.dependency 'Alamofire'
s.dependency 'SWXMLHash'
end