22 lines
978 B
Ruby
22 lines
978 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'GMGridView'
|
|
s.version = '0.0.2'
|
|
s.platform = :ios
|
|
s.license = 'MIT'
|
|
s.summary = 'A performant Grid-View for iOS (iPhone/iPad).'
|
|
s.description = 'A performant Grid-View for iOS (iPhone/iPad) that allows ' \
|
|
'sorting of views with gestures (the user can move the items ' \
|
|
'with his finger to sort them) and pinching/rotating/panning ' \
|
|
'gestures allow the user to play with the view and toggle from ' \
|
|
'the cellview to a fullsize display.'
|
|
s.homepage = 'https://github.com/gmoledina/GMGridView'
|
|
s.author = { 'Gulam Moledina' => 'http://www.gmoledina.ca/' }
|
|
s.source = { :git => 'https://github.com/gmoledina/GMGridView.git',
|
|
:commit => '9ae7d4d25c84d388b08fff38c53a53940991b975' }
|
|
|
|
s.source_files = 'GMGridView/*.{h,m}'
|
|
s.requires_arc = true
|
|
s.frameworks = 'QuartzCore'
|
|
|
|
end
|