-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathFINNBottomSheet.podspec
More file actions
19 lines (19 loc) · 978 Bytes
/
FINNBottomSheet.podspec
File metadata and controls
19 lines (19 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'FINNBottomSheet'
s.summary = 'Custom modal presentation style for views anchored to the bottom of the screen'
s.version = '5.3.2'
s.author = 'FINN.no'
s.homepage = 'https://github.com/finn-no/bottom-sheet-ios'
s.social_media_url = 'https://twitter.com/FINN_tech'
s.description = 'Simple to use and customizable modal presentation style for views anchored to the bottom of the screen.'
s.license = 'MIT'
s.platform = :ios, '11.2'
s.requires_arc = true
s.swift_version = '5.0'
s.source = { :git => 'https://github.com/finn-no/bottom-sheet-ios.git', :tag => s.version }
s.cocoapods_version = '>= 1.4.0'
s.source_files = 'Sources/**/*.{h,m,swift}'
s.resources = ['Sources/**/*.lproj']
s.resource_bundle = { 'FINNBottomSheet' => ['Sources/**/*.lproj'] }
s.frameworks = 'Foundation', 'UIKit'
end