-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVISPER-Presenter.podspec
25 lines (21 loc) · 1 KB
/
VISPER-Presenter.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
#
# Be sure to run `pod lib lint SwiftyVISPER.podspec' to ensure this is a
# valid spec before submitting.
Pod::Spec.new do |s|
s.name = 'VISPER-Presenter'
s.version = '5.0.1'
s.summary = 'Presenter layer of the VISPER Application Framework'
s.description = <<-DESC
Implementation of the presenter layer of the VISPER Application Framework.
(VISPER is a framework for building component based apps with the viper architecture).
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-Presenter-'+String(s.version) }
s.social_media_url = 'https://twitter.com/janbartel'
s.ios.deployment_target = '9.0'
s.swift_version = '4.2'
s.source_files = 'VISPER-Presenter/Classes/**/*'
s.dependency 'VISPER-Core','~> 5.0.0'
end