-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathVISPER-Swift.podspec
More file actions
27 lines (22 loc) · 1.06 KB
/
VISPER-Swift.podspec
File metadata and controls
27 lines (22 loc) · 1.06 KB
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 = 'VISPER-Swift'
s.version = '5.0.0'
s.summary = 'VISPER is a framework for building component based apps with the viper architecture'
s.description = <<-DESC
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-Swift-'+String(s.version) }
s.social_media_url = 'https://twitter.com/janbartel'
s.ios.deployment_target = '13.0'
s.swift_version = '4.2'
s.dependency 'VISPER-Core','~> 5.0.0'
s.dependency 'VISPER-Objc','~> 5.0.0'
s.dependency 'VISPER-Presenter','~> 5.0.0'
s.dependency 'VISPER-Wireframe','~> 5.0.0'
s.dependency 'VISPER-Redux','~> 5.0.0'
s.dependency 'VISPER-Entity','~> 5.0.0'
s.source_files = 'VISPER-Swift/Classes/**/*.swift'
end