-
Notifications
You must be signed in to change notification settings - Fork 0
/
BasicCommons.podspec
41 lines (34 loc) · 1.3 KB
/
BasicCommons.podspec
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
Pod::Spec.new do |s|
s.name = 'BasicCommons'
s.version = '1.0.0'
s.summary = 'Basic Commons Module'
s.description = <<-DESC
Used to inject the BasicCommons scene
DESC
s.homepage = 'https://japanart1234.wixsite.com/jonolivet/ios-developer-info'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jon Olivet' => 'kevinolivet@yahoo.com' }
s.source = { :git => 'ssh://git@github.com/kevinOlivet/BasicCommons.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = [
'BasicCommons/Classes/**/*',
"BasicCommons/Classes/**/**"
]
s.resources = [
'BasicCommons/Assets/**/*.{storyboard,xib,xcassets,html,json,pdf,otf,ttf,plist,strings}'
]
s.dependency "Alamofire", "4.8.0"
s.dependency 'AlamofireImage', '3.5'
s.dependency "AlamofireNetworkActivityLogger", "2.4.0"
s.dependency "OHHTTPStubs/Swift", "8.0.0"
s.dependency "SwiftKeychainWrapper", "3.4"
# s.script_phases = [
# {
# :name => 'SwiftlintLocalModules',
# :script => '$SRCROOT/../configurations/Build-Phases/swiftlint_locals_modules_execute.sh',
# :show_env_vars_in_log => true,
# :execution_position => :before_compile
# }
# ]
end