-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJeraUtils.podspec
More file actions
72 lines (50 loc) · 2.24 KB
/
Copy pathJeraUtils.podspec
File metadata and controls
72 lines (50 loc) · 2.24 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '8.0'
s.name = "JeraUtils"
s.summary = "Basic Tools for App Development in Jera"
s.requires_arc = true
s.version = "0.4.0"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alessandro Nakamuta" => "warthog@jera.com.br" }
s.homepage = "https://github.com/aleufms/JeraUtils"
s.source = { :git => "https://github.com/aleufms/JeraUtils.git", :tag => "#{s.version}"}
s.framework = "UIKit"
#Swift
s.dependency 'Cartography', '= 0.7.0'
s.dependency 'Kingfisher', '= 2.6.1'
s.dependency 'ReachabilitySwift', '= 2.4'
s.dependency 'TZStackView', '= 1.2.0'
s.dependency 'Material'
s.dependency 'ChameleonFramework/Swift'
s.dependency 'FontAwesome.swift'
s.dependency 'Moya-ObjectMapper/RxSwift'
s.dependency 'RxCocoa'
#Adicione essas linhas Podfile do seu projeto
#Podfile Swift 2.3
# pod 'Material', :git => 'https://github.com/CosmicMind/Material', :branch => 'swift-2.3'
# pod 'ChameleonFramework', :git => 'https://github.com/ViccAlexander/Chameleon', :tag => '2.1.0'
# pod 'FontAwesome.swift', :git => 'https://github.com/thii/FontAwesome.swift', :tag => '0.10.1'
# pod 'Moya-ObjectMapper/RxSwift', :git => 'https://github.com/ivanbruel/Moya-ObjectMapper',:tag => '1.4'
# pod 'Moya', :git => 'https://github.com/Moya/Moya', :tag => '7.0.3'
# pod 'RxCocoa', :git => 'https://github.com/ReactiveX/RxSwift', :tag => '2.6.0'
# pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift', :tag => '2.6.0'
#e no final
# post_install do |installer|
# installer.pods_project.targets.each do |target|
# target.build_configurations.each do |configuration|
# configuration.build_settings['SWIFT_VERSION'] = "2.3"
# end
# end
# end
#Obj-C
s.dependency 'HMSegmentedControl', '~> 1.5'
s.dependency 'INSPullToRefresh', '~> 1.1'
s.dependency 'MMDrawerController', '~> 0.6'
s.dependency 'NSStringMask', '~> 1.2'
s.dependency 'SpinKit', '~> 1.2'
s.dependency 'TPKeyboardAvoiding', '~> 1.3'
s.source_files = "JeraUtils/**/*.{swift}"
# s.resources = "JeraUtils/**/*.{storyboard,xcassets,otf,ttf}"
s.resource_bundles = { 'JeraUtils' => ['JeraUtils/**/*.{xib,storyboard,xcassets,otf,ttf}'] }
end