-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetovaAnalytics.podspec
More file actions
34 lines (29 loc) · 939 Bytes
/
MetovaAnalytics.podspec
File metadata and controls
34 lines (29 loc) · 939 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
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'MetovaAnalytics'
s.version = '1.1.0'
s.summary = 'MetovaAnalytics is an analytics scaffolding framework.'
s.homepage = 'http://metova.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = {
'Metova, Inc.' => 'pods@metova.com',
'Nick Griffith' => 'nick.griffith@metova.com',
'Chris Martin' => 'chris.martin@metova.com',
'Chris Dillard' => 'chris.dillard@metova.com'
}
s.source = { :git => 'https://github.com/metova/MetovaAnalytics.git', :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.swift_version = '4.2'
s.default_subspecs = 'Core'
s.subspec 'Core' do |core|
core.source_files = [
'MetovaAnalytics/Core',
'MetovaAnalytics/Core/**/*.{h,m,swift}'
]
core.public_header_files = [
'MetovaAnalytics/Core/**/*.h'
]
core.exclude_files = [
'MetovaAnalytics/Core/Exclude'
]
end
end