-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTapglueElements.podspec
More file actions
26 lines (23 loc) · 970 Bytes
/
TapglueElements.podspec
File metadata and controls
26 lines (23 loc) · 970 Bytes
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
#
# Be sure to run `pod lib lint elements.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'TapglueElements'
s.version = '0.1.4'
s.summary = 'elements provides a full UX on top of Tapglue'
s.license = 'Apache License, Version 2.0'
s.author = { 'Tapglue' => 'devs@tapglue.com' }
s.source = { :git => 'https://github.com/tapglue/elements-ios.git', :tag => "v#{s.version}" }
s.homepage = 'https://developers.tapglue.com/docs/ios'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{swift}'
s.resource_bundles = {
'TapglueElements' => ['Pod/Classes/**/*.{lproj,storyboard,xib,xcassets,json,imageset,png}']
}
s.dependency 'Tapglue', '1.1.8'
end