forked from mralexgray/CNGridView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCNGridView.podspec
More file actions
15 lines (15 loc) · 836 Bytes
/
Copy pathCNGridView.podspec
File metadata and controls
15 lines (15 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'CNGridView'
s.version = '1.1.5'
s.summary = 'CNGridView is a (wanna be) replacement for NSCollectionView.'
s.description = 'It has full delegate and dataSource support with method calls like known from NSTableView/UITableView.'
s.homepage = 'https://github.com/phranck/CNGridView'
s.author = { 'Frank Gregor' => 'phranck@cocoanaut.com' }
s.source = { :git => 'https://github.com/phranck/CNGridView.git', :tag => s.version.to_s }
s.platform = :osx
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.source_files = 'CNGridView/*.{h,m}'
s.license = { :type => 'MIT', :file => 'ReadMe.md' }
s.frameworks = 'QuartzCore'
end