-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathOwlKit.podspec
17 lines (17 loc) · 875 Bytes
/
OwlKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "OwlKit"
s.version = "1.0.5"
s.summary = "A declarative type-safe framework for building fast and flexible list with Tables & Collections"
s.description = <<-DESC
Owl offers a data-driven declarative approach for building fast & flexible list in iOS. It supports both UICollectionView & UITableView; UIStackView is on the way!.
DESC
s.homepage = "https://github.com/malcommac/Owl"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "[email protected]" }
s.social_media_url = "https://twitter.com/danielemargutti"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/malcommac/Owl.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "UIKit"
s.swift_version = "5.0"
end