-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRedux.swift.podspec
27 lines (24 loc) · 1.12 KB
/
Redux.swift.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
Pod::Spec.new do |s|
s.name = 'Redux.swift'
s.module_name = 'Redux'
s.version = '5.0.0'
s.summary = 'An implementation of a predictable state container in Swift.'
s.description = <<-DESC
Redux.swift is an implementation of a predictable state container, written in Swift. It aims to enforce separation of concerns and a unidirectional data flow by keeping your entire app state in a single data structure that cannot be mutated directly, instead relying on an action dispatch mechanism to describe changes.
DESC
s.homepage = 'https://github.com/fellipecaetano/Redux.swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Fellipe Caetano' => '[email protected]' }
s.source = { :git => 'https://github.com/fellipecaetano/Redux.swift.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.subspec 'Basic' do |ss|
ss.source_files = ['Source/**/*.swift']
ss.exclude_files = ['Source/Rx/**/*.swift']
end
s.subspec 'Rx' do |ss|
ss.source_files = ['Source/**/*.swift']
ss.dependency 'RxSwift'
end
s.default_subspec = 'Basic'
end