20 lines
727 B
Ruby
20 lines
727 B
Ruby
|
|
Pod::Spec.new do |s|
|
|
s.name = "LeadKit"
|
|
s.version = "0.0.3"
|
|
s.summary = "iOS framework with a bunch of tools for rapid development"
|
|
s.homepage = "https://github.com/TouchInstinct/LeadKit"
|
|
s.license = "Apache License, Version 2.0"
|
|
s.author = "Touch Instinct"
|
|
s.platform = :ios, "8.0"
|
|
s.source = { :git => "https://github.com/TouchInstinct/LeadKit.git" }
|
|
s.source_files = "LeadKit/LeadKit/**/*.swift"
|
|
|
|
s.dependency "CocoaLumberjack/Swift", '~> 2.2'
|
|
s.dependency "ModelMapper", '~> 3.0'
|
|
s.dependency "RxSwift", '~> 2.6'
|
|
s.dependency "RxCocoa", '~> 2.6'
|
|
s.dependency "Alamofire", '~> 3.4'
|
|
s.dependency "RxAlamofire", '~> 1.1'
|
|
end
|