forked from klevison/KMAccordionTableViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKMAccordionTableViewController.podspec
More file actions
24 lines (20 loc) · 1009 Bytes
/
KMAccordionTableViewController.podspec
File metadata and controls
24 lines (20 loc) · 1009 Bytes
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 = "KMAccordionTableViewController"
s.version = "0.2"
s.summary = "Accordion UITableViewController"
s.description = <<-DESC
Accordion UITableViewController component based on Apples's example.
DESC
s.homepage = "https://github.com/klevison/KMAccordionTableViewController"
s.screenshots = "http://dl.dropbox.com/u/378729/MBProgressHUD/1.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Klevison Matias" => "klevison@gmail.com" }
s.source = { :git => "https://github.com/klevison/KMAccordionTableViewController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/klevison'
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.resource_bundles = {
'KMAccordionTableViewController' => ['Classes/**/*.{xib,png,nib}']
}
end