-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEPSReactiveTableViewController.podspec
More file actions
22 lines (17 loc) · 1.06 KB
/
EPSReactiveTableViewController.podspec
File metadata and controls
22 lines (17 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "EPSReactiveTableViewController"
s.version = "1.1.1"
s.summary = "A table view controller that automatically populates a table view, and animates the insertion and deletion of rows."
s.description = "EPSReactiveTableViewController is a subclass of `UITableViewController` that automatically populates a table view, and animates the insertion and deletion of rows by observing changes to an array of model objects."
s.homepage = "https://github.com/ElectricPeelSoftware/EPSReactiveTableViewController"
s.license = 'MIT'
s.author = { "Peter Stuart" => "peter@electricpeelsoftware.com" }
s.source = { :git => "https://github.com/ElectricPeelSoftware/EPSReactiveTableViewController.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes'
s.public_header_files = 'Classes/*.h'
s.dependency 'ReactiveCocoa', '~> 2.3'
s.deprecated_in_favor_of = 'EPSReactiveList'
end