forked from nicol3a/NBBottomSheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNBBottomSheet.podspec
More file actions
16 lines (16 loc) · 898 Bytes
/
NBBottomSheet.podspec
File metadata and controls
16 lines (16 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = 'NBBottomSheet'
spec.version = '1.2.0'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.homepage = 'https://github.com/nicol3a/NBBottomSheet'
spec.authors = { 'Nicolas Bichon' => 'bichon.nicolas@gmail.com' }
spec.social_media_url = "http://twitter.com/nicol3a"
spec.summary = 'An iOS library that presents a bottom sheet using Auto Layout.'
spec.source = { :git => 'https://github.com/nicol3a/NBBottomSheet.git', :tag => spec.version.to_s }
spec.source_files = 'NBBottomSheet/NBBottomSheet/Sources/**/*.{h,m,swift}'
spec.framework = 'Foundation', 'UIKit'
spec.platform = :ios
spec.ios.deployment_target = '9.0'
spec.requires_arc = true
spec.swift_version = '5.0'
end