-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRRoostSDK.podspec
More file actions
26 lines (20 loc) · 1.12 KB
/
RRoostSDK.podspec
File metadata and controls
26 lines (20 loc) · 1.12 KB
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
Pod::Spec.new do |s|
s.name = 'RRoostSDK'
s.version = '0.1.6'
s.summary = 'RRoostSDK provides access to utilities and extensions that makes it easy to build applications.'
s.description = <<-DESC
This is the cocoapod for the starter app template for most apps being built by a member of the RedRooster Technologies Inc. development team and it's strategic partners.
DESC
s.homepage = 'https://github.com/redroostertech/RRTech-Starter-App-Template'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'RedRooster Technologies Inc.' => 'info@redroostertec.com' }
s.source = { :git => 'https://github.com/redroostertech/RRTech-Starter-App-Template.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/mwestbrooksjr'
s.platform = :ios, '10.0'
s.ios.deployment_target = '10.0'
s.swift_version = '4.0'
s.source_files = 'RRoostSDK/Classes/**/*'
s.resource_bundles = {
'RRoostSDK' => ['RRoostSDK/Classes/**/*.{ttf,otf,xib}', 'RRoostSDK/Assets/*.{xcassets,imageset,pdf,png}']
}
end