16 lines
825 B
Ruby
16 lines
825 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MNMBottomPullToRefresh"
|
|
s.version = "0.0.1"
|
|
s.summary = "."
|
|
s.description = <<-DESC
|
|
MNMBottomPullToRefresh is a solution to add pull-to-refresh feature to the bottom of an UITableView instead of the top, as usual.
|
|
DESC
|
|
s.homepage = "https://bitbucket.org/emenegro/bottom-pull-to-refresh"
|
|
s.platform = :ios, '5.0'
|
|
s.author = 'Mario Negro'
|
|
s.license = 'Copyright'
|
|
s.requires_arc = true
|
|
s.source = { :git => "https://bitbucket.org/emenegro/bottom-pull-to-refresh.git", :commit => '82d5fed6dd7f4a4df531a6954398b60b9aecec6d' }
|
|
s.source_files = 'MNMBottomPullToRefreshDemo/MNMBottomPullToRefresh/*.{h,m}'
|
|
s.resources = 'MNMBottomPullToRefreshDemo/MNMBottomPullToRefresh/*.{png,strings}'
|
|
end |