-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOceanComponents.template
48 lines (40 loc) · 1.82 KB
/
OceanComponents.template
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
39
40
41
42
43
44
45
46
47
48
#
# Be sure to run `pod lib lint BluTokens.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 = 'OceanComponents'
s.version = #VERSION_NAME#
s.summary = 'OceanComponents are components created by theo for use in Blu applications'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
OceanComponents are components created by theo for use in Blu applications
Project created with the objective use components created by OceanTokens.
DESC
s.homepage = 'https://github.com/ocean-ds/ocean-ios'
s.license = { :type => 'GPL-3.0', :file => 'LICENSE' }
s.author = { 'Blu IP' => '[email protected]' }
s.source = { :git => 'https://github.com/ocean-ds/ocean-ios.git',
:tag => 'OceanComponents-' + s.version.to_s }
s.ios.deployment_target = '13.0'
s.swift_versions = ['5.0']
s.dependency 'OceanTokens', '3.8.1-1402'
s.dependency 'SPStorkController'
s.dependency 'FSCalendar'
s.dependency 'SkeletonView'
s.dependency 'SDWebImage'
s.dependency 'DGCharts'
s.dependency 'EasyTipView'
s.source_files = 'OceanComponents/Classes/**/*'
s.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER': 'br.com.blu.OceanComponents' }
s.resource_bundles = {
'OceanComponents' => ['OceanComponents/Resources/**/*']
}
end