-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLVCFromStoryboard.podspec
More file actions
18 lines (14 loc) · 977 Bytes
/
TLVCFromStoryboard.podspec
File metadata and controls
18 lines (14 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'TLVCFromStoryboard'
s.version = '0.2.0'
s.summary = 'UIViewController extension that looks for a view controller in all available storyboards by class name.'
s.description = <<-DESC
UIViewController extension that searches for a view controller in all available storyboards by class name!
DESC
s.homepage = 'https://github.com/ali312/TLVCFromStoryboard'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ali312' => 'ali312@yandex.ru' }
s.source = { :git => 'https://github.com/ali312/TLVCFromStoryboard.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.3'
s.source_files = 'ViewControllerExtension/UIViewController+Storyboard.swift', 'ViewControllerExtension/ViewControllerExtension-Bridging-Header.h', 'ViewControllerExtension/TLExceptionHandler.h', 'ViewControllerExtension/TLExceptionHandler.m'
end