-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCycle.podspec
29 lines (29 loc) · 1.03 KB
/
Cycle.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
Pod::Spec.new do |s|
s.name = 'Cycle'
s.version = '0.0.19'
s.summary = 'An experiment in unidirectional-data-flow inspired by Cycle.js.'
s.description = 'Cycle provides a means of writing an app as a filter over a stream of external events.'
s.homepage = 'https://github.com/BrianSemiglia/Cycle.swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = {
:git => 'https://github.com/BrianSemiglia/Cycle.swift.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/brians_'
s.platforms = {
:ios => "8.0",
:osx => "10.10",
:tvos => "9.0",
:watchos => "2.0"
}
s.requires_arc = true
s.swift_version = "4.2"
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Sources/**/*.{h,m,swift}"
ss.framework = "Foundation"
end
s.dependency 'RxSwift', '~> 4.3.0'
s.dependency 'Changeset', '3.1'
end