-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVISPER-Reactive.podspec
31 lines (24 loc) · 1.16 KB
/
VISPER-Reactive.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
Pod::Spec.new do |s|
s.name = 'VISPER-Reactive'
s.version = '5.0.0'
s.summary = 'Simple implementation of observable properties used in the VISPER Framework'
s.description = <<-DESC
Base implementation of reactive properties for the VISPER Framework.
(VISPER is a framework for building component based apps with the viper architecture in swift.)
DESC
s.homepage = 'https://github.com/barteljan/VISPER'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jan Bartel' => 'barteljan@yahoo.de' }
s.source = { :git => 'https://github.com/barteljan/VISPER.git', :tag => 'VISPER-Reactive-'+String(s.version) }
s.social_media_url = 'https://twitter.com/barteljan'
s.ios.deployment_target = '9.0'
s.swift_version = "4.2"
s.default_subspec = 'Standard'
s.subspec 'Standard' do |standard|
standard.source_files = 'VISPER-Reactive/Classes/Core/*.swift'
end
s.subspec 'RxSwift' do |rxswift|
rxswift.source_files = 'VISPER-Reactive/Classes/RxSwift/*.swift','VISPER-Reactive/Classes/Core/*.swift'
rxswift.dependency 'RxSwift', '~> 6.5.0'
end
end