15 lines
594 B
Ruby
15 lines
594 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'ARTableViewPager'
|
|
s.version = '1.0.0'
|
|
s.license = 'MIT'
|
|
s.summary = 'The ARTableViewPager is an iOS component for horizontal table view scrolling/paging.'
|
|
s.homepage = 'https://github.com/arconsis/ARTableViewPager'
|
|
s.author = { 'arconsis IT-Solutions GmbH' => 'markus.kopf@arconsis.com' }
|
|
s.source = { :git => 'https://github.com/arconsis/ARTableViewPager.git', :tag => '1.0.0' }
|
|
s.description = 'An optional longer description of ARTableViewPager.'
|
|
s.platform = :ios
|
|
s.source_files = 'Classes/*.{h,m}'
|
|
s.requires_arc = true
|
|
|
|
end
|