-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLoaders.podspec
24 lines (19 loc) · 905 Bytes
/
Loaders.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
Pod::Spec.new do |s|
s.name = 'Loaders'
s.version = '1.1.0'
s.license = 'MIT'
s.summary = 'Simple μFramework for loading Storyboard and Xib files for iOS.'
s.description = <<-DESC
Loaders is a simple way to define all your storyboard's UIViewControllers and NIB reusables (UITableViewCell, UICollectionViewCell, UICollectionReusableView) in clean, declarative way. It brings autocomplete and compile time checking for storyboards and xib files.
DESC
s.homepage = 'https://github.com/dgrzeszczak/Loaders'
s.authors = { 'Dariusz Grzeszczak' => '[email protected]' }
s.source = { :git => 'https://github.com/dgrzeszczak/Loaders.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.swift_version = '4.2'
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '4.2',
}
s.requires_arc = true
s.source_files = 'Loaders/Sources/**/*.swift'
end