-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCollectionManager.podspec
More file actions
16 lines (16 loc) · 930 Bytes
/
CollectionManager.podspec
File metadata and controls
16 lines (16 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'CollectionManager'
s.version = '1.0.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Um jeito simples de criar e manipular uma UICollectionView.'
s.homepage = 'https://github.com/jjfernandes87/CollectionViewManager'
s.social_media_url = 'https://twitter.com/jfernandes87'
s.author = { 'jjfernandes87' => 'julio.fernandes87@gmail.com' }
s.source = { :git => 'https://github.com/jjfernandes87/CollectionViewManager.git', :tag => s.version }
s.ios.deployment_target = '11.0'
s.source_files = 'CollectionManager/Classes/**/*'
s.swift_versions = ['4.2']
s.description = <<-DESC
Esqueça todos os metodos obrigatórios para criar e manipular uma CollectionView, carregue modelos diferentes de UICollectionViewCell sem a necessidade de if no seu código.
DESC
end