-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDuvet.podspec
More file actions
18 lines (18 loc) · 867 Bytes
/
Duvet.podspec
File metadata and controls
18 lines (18 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Duvet'
s.version = '0.0.7'
s.summary = 'A configurable framework for presenting bottom sheets on iOS.'
s.description = <<-DESC
Duvet is a configurable framework for presenting bottom sheets on iOS. It
makes it easy to create sheets that can either be a fixed size or sized to
fit the content that you want to display.
DESC
s.homepage = 'https://github.com/livefront/Duvet'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'Matt Czech' => 'matt@livefront.com' }
s.source = { :git => 'https://github.com/livefront/Duvet.git', :tag => s.version.to_s }
s.source_files = 'Duvet/**/*'
s.exclude_files = 'Duvet/**/*.plist'
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
end