-
Notifications
You must be signed in to change notification settings - Fork 47
/
CascadingTableDelegate.podspec
25 lines (18 loc) · 1.08 KB
/
CascadingTableDelegate.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 = 'CascadingTableDelegate'
s.version = '4.0.0'
s.summary = 'A no-nonsense way to write cleaner `UITableViewDelegate` and `UITableViewDataSource`.'
s.description = <<-DESC
CascadingTableDelegate allows you to propagate `UITableViewDelegate` and `UITableViewDataSource` method calls to several objects, based by the `IndexPath` of the method's parameter.
DESC
s.homepage = 'https://github.com/edopelawi/CascadingTableDelegate'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ricardo Pramana Suranta' => '[email protected]' }
s.source = { :git => 'https://github.com/edopelawi/CascadingTableDelegate.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/edopelawi'
s.ios.deployment_target = '9.0'
s.source_files = 'CascadingTableDelegate/Classes/**/*'
s.frameworks = 'UIKit'
s.swift_versions = [4.0, 4.2, 5.0]
end