-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGriddle.podspec
25 lines (15 loc) · 947 Bytes
/
Griddle.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
Pod::Spec.new do |s|
s.name = "Griddle"
s.version = "1.0.5"
s.summary = "Manager for simple work with UITableView, UICollectionView and any others collection structured views."
s.description = <<-DESC
It is layer for working with table view, collection view and any other views, which has collection structure. It lets to use collections and tables in one page without a lot of code.
DESC
s.homepage = "https://github.com/AlexIzh/Griddle"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "https://github.com/AlexIzh/Griddle/blob/master/LICENSE" }
s.author = { "Alex Severyanov" => "alex.severyanov@gmail.com" }
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/AlexIzh/Griddle.git", :tag => "#{s.version}" }
s.source_files = 'Griddle/*', 'Griddle/Classes/*.swift', 'Griddle/**/*.swift'
end