-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDip-UI.podspec
More file actions
30 lines (22 loc) · 1.03 KB
/
Copy pathDip-UI.podspec
File metadata and controls
30 lines (22 loc) · 1.03 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
28
29
30
Pod::Spec.new do |s|
s.name = "Dip-UI"
s.version = "2.0"
s.summary = "Dip UI extension"
s.description = <<-DESC
Dip-UI is a simple extension for Dip - Dependency Injection container for Swift.
It adds features to support dependency injection for objects
created by storyboards or loaded from nib files.
DESC
s.homepage = "https://github.com/AliSoftware/Dip-UI"
s.license = 'MIT'
s.authors = { "Ilya Puchka" => "ilya@puchka.me", "Olivier Halligon" => "olivier@halligon.net" }
s.source = { :git => "https://github.com/AliSoftware/Dip-UI.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/aligatr'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Sources/**/*.swift'
s.dependency 'Dip', '~> 6.0'
end