-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVISPER-Objc.podspec
27 lines (21 loc) · 1016 Bytes
/
VISPER-Objc.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
#
# Be sure to run `pod lib lint VISPER-Wireframe.podspec' to ensure this is a
Pod::Spec.new do |s|
s.name = 'VISPER-Objc'
s.version = '5.0.2'
s.summary = 'Objc Wrapper of all public VISPER-Wireframe classes.'
s.description = <<-DESC
Objc Wrapper of all public VISPER-Wireframe classes.
(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-Objc-'+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-Objc/Classes/**/*'
s.dependency 'VISPER-Core','~> 5.0.0'
s.dependency 'VISPER-Presenter','~> 5.0.0'
end