-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRecoilSwift.podspec
25 lines (20 loc) · 998 Bytes
/
RecoilSwift.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
Pod::Spec.new do |s|
s.name = 'RecoilSwift'
s.version = '0.3.0'
s.summary = 'RecoilSwift is a next generation state management library'
s.description = <<-DESC
RecoilSwift is a lightweight & reactive swift state management library. It's an alternate option to replace of the `Redux(reswift/tca)` or `MVVM`
DESC
s.homepage = 'https://github.com/hollyoops/RecoilSwift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '[email protected]' => '[email protected]' }
s.source = { :git => 'https://github.com/hollyoops/RecoilSwift.git', :tag => s.version.to_s }
s.platform = :ios, '13.0'
s.source_files = 'Sources/**/*.swift'
s.exclude_files = 'Sources/**/*Tests.swift'
s.swift_version = '5'
s.dependency 'Hooks', '~> 0.0.4'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/**/*Tests.Swift', 'Sources/**/*Tests.swift'
end
end