forked from mercadolibre/meli-card-drawer-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MLCardDrawer.podspec
22 lines (20 loc) · 900 Bytes
/
MLCardDrawer.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 |s|
s.name = "MLCardDrawer"
s.version = "1.11.7"
s.summary = "MLCardDrawer for iOS"
s.homepage = "https://github.com/mercadolibre/meli-card-drawer-ios"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Joni Bandoni"
s.source = { :git => "https://github.com/mercadolibre/meli-card-drawer-ios.git", :tag => s.version.to_s }
s.platform = :ios, '13.0'
s.ios.deployment_target = '13.0'
s.requires_arc = true
s.swift_version = '5.6'
s.default_subspec = 'Default'
s.static_framework = true
s.subspec 'Default' do |default|
default.resources = ['Source/Assets/*.bundle']
default.source_files = ['Source/Classes/**/*.{h,m,swift}']
default.resource_bundles = { 'MLCardDrawerResources' => ['Source/Assets/*.xcassets', 'Source/Classes/**/*.xib'] }
end
end