-
Notifications
You must be signed in to change notification settings - Fork 11
/
ReusableViews.podspec
21 lines (17 loc) · 1.01 KB
/
ReusableViews.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'ReusableViews'
s.version = '2.0.0'
s.summary = 'Instantiate UIViewControllers from storyboards and dequeue views without a bang!'
s.description = <<-DESC
ReusableViews is a sugar library that allows you to dequeue UITableViewCells, UICollectionViewCells,
UITableViewHeaderFooterViews, UICollectionViewReusableViews (supplementary views) without a bang or force cast. It also
allows you to instantiate view controllers from the storyboard without using a bang or force casting.
DESC
s.homepage = 'https://github.com/heshamsalman/ReusableViews'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'heshamsalman' => '[email protected]' }
s.source = { :git => 'https://github.com/heshamsalman/ReusableViews.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/_hsalman'
s.ios.deployment_target = '9.0'
s.source_files = 'ReusableViews/Classes/**/*'
end