-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMERLin.podspec
34 lines (26 loc) · 1.14 KB
/
MERLin.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
Pod::Spec.new do |s|
s.platform = :ios
s.version = "3.0.2"
s.ios.deployment_target = '10.0'
s.name = "MERLin"
s.summary = "A framework to build an event based, reactive architecture for swift iOS projects"
s.swift_version = '5.0'
s.description = <<-DESC
MERLin' is a reactive framework that aims to simplify the adoption of an events based architectural style within an iOS app. It emphasise the concept of modularity, taking to the highest level the principle of separation of concerns.
DESC
s.requires_arc = true
s.license = { :type => "MIT" }
s.homepage = "https://www.pfrpg.net"
s.author = { "Giuseppe Lanza" => "[email protected]" }
s.source = {
:git => "https://github.com/gringoireDM/MERLin.git",
:tag => s.version.to_s
}
s.dependency 'LNZWeakCollection', '~>1.3.2'
s.dependency 'EnumKit', '~>1.1'
s.dependency 'RxEnumKit', '~>1.0'
s.dependency 'RxSwift', '~>5.1'
s.dependency 'RxCocoa', '~>5.1'
s.framework = "UIKit"
s.source_files = "MERLin/MERLin/**/*.swift", "MERLin/MERLin/**/*.{h,m}"
end