Files
JBChartView/EKStreamView/1.0.1/EKStreamView.podspec
T
Eli Wang a8f9b76e74 Update EKStreamView/1.0.1/EKStreamView.podspec
Fixes ekohe/EKStreamView#12
- requires_arc = true
- description
- copyright
2013-02-01 11:15:32 +08:00

14 lines
876 B
Ruby

Pod::Spec.new do |s|
s.name = "EKStreamView"
s.version = "1.0.1"
s.summary = "A scrolling view of a number of columns containing multiple cells with variable different heights for iOS, inspired by Pinterest. "
s.homepage = "https://github.com/ekohe/EKStreamView"
s.license = 'Copyright (c) 2012 - 2013 Eli Wang (sirxenofex@gmail.com)'
s.author = { "Ekohe" => "eli@ekohe.com" }
s.source = { :git => "https://github.com/ekohe/EKStreamView.git", :tag => '1.0.1' }
s.platform = :ios
s.description = "EKStreamView renders a number of columns containing multiple cells by reusing the cell views whenever possible, similar to UITableView. It's fast even you have hundreds of cells since only a small number of cells are actually created."
s.requires_arc = true
s.source_files = 'EKStreamView.h', 'EKStreamView.m'
end