-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPunkAPI.podspec
38 lines (31 loc) · 1.42 KB
/
PunkAPI.podspec
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
28
29
30
31
32
33
34
35
36
37
38
#
# Be sure to run `pod lib lint PunkAPI.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'PunkAPI'
s.version = '0.3.1'
s.summary = 'A little swift wrapper for PunkAPI by @samjbmason'
s.swift_version = '5.0'
s.description = <<-DESC
"Have you ever wanted to search through Brewdog's expansive back catalogue of beer in a programmatic way? Maybe build a tool that pairs beer with food, or search beers with an abv of more than 4%? Well now your prayers have been answered!"
DESC
s.homepage = 'https://github.com/Oni-zerone/PunkAPI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Andrea Altea' => '[email protected]' }
s.source = { :git => 'https://github.com/Oni-zerone/PunkAPI.git', :tag => "StoriesLayout-" + s.version.to_s }
s.social_media_url = 'https://twitter.com/Oni_zerone'
s.ios.deployment_target = '10.0'
s.default_subspec = 'API'
s.subspec 'API' do |sp|
sp.source_files = 'PunkAPI/Classes/**/*'
end
s.subspec 'PromiseKit' do |sp|
sp.source_files = 'PunkAPI/PromiseKit/Classes/**/*'
sp.dependency 'PunkAPI/API'
sp.dependency 'PromiseKit', '~> 6.8'
end
end