14 lines
506 B
Ruby
14 lines
506 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'MCSwipeTableViewCell'
|
|
s.version = '1.0.0'
|
|
s.author = { 'Ali Karagoz' => 'mail@alikaragoz.net' }
|
|
s.homepage = 'https://github.com/alikaragoz/MCSwipeTableViewCell'
|
|
s.summary = 'Mailbox app style UITableViewCell.'
|
|
s.license = 'MIT'
|
|
s.source = { :git => 'https://github.com/alikaragoz/MCSwipeTableViewCell.git', :tag => '1.0.0' }
|
|
s.source_files = 'MCSwipeTableViewCell'
|
|
s.platform = :ios
|
|
s.ios.deployment_target = '5.0'
|
|
s.requires_arc = true
|
|
end
|