-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMVVMKit.podspec
More file actions
36 lines (25 loc) · 948 Bytes
/
MVVMKit.podspec
File metadata and controls
36 lines (25 loc) · 948 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
35
36
Pod::Spec.new do |spec|
spec.name = "MVVMKit"
spec.version = "0.1.1"
spec.summary = "MVVM Architecture Framework"
spec.description = <<-DESC
MVVM Architecture Framework
DESC
spec.homepage = "https://github.com/IsaAliev/"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "IsaAliev" => "isaaliev12@gmail.com" }
spec.platform = :ios, "11.2"
spec.source = { :git => "https://github.com/IsaAliev/MVVMKit.git", :tag => spec.version }
spec.source_files = "MVVMKit/**/*.{swift}"
spec.swift_version = "5.0"
spec.dependency "SnapKit"
spec.subspec 'RxSwift' do |sp|
sp.dependency "RxSwift"
sp.dependency "RxDataSources"
sp.source_files = 'MVVMKit/Base/*.{swift}', 'MVVMKit/Rx/**/*.{swift}'
end
spec.subspec 'Bond' do |sp|
sp.dependency "Bond"
sp.source_files = 'MVVMKit/Base/*.{swift}', 'MVVMKit/Bond/*.{swift}'
end
end