forked from miller-ms/MMSCameraViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMSCameraViewController.podspec
30 lines (25 loc) · 1.42 KB
/
MMSCameraViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Be sure to run `pod lib lint MMSCameraViewController.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MMSCameraViewController'
s.version = '1.4.0'
s.summary = 'Presents a camera for capturing a still image and returns it through the delegate.'
s.description = <<-DESC
MMSCameraViewController provides the feature for presenting a camera to capture still images only. It leaves the features for presenting a confirmation screen and cropping tools to the application to support. Captured images are passed back to the presenting view controller through the delegate method.
DESC
s.homepage = 'https://github.com/miller-ms/MMSCameraViewController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'William Miller' => '[email protected]' }
s.source = { :git => 'https://github.com/miller-ms/MMSCameraViewController.git', :tag => s.version.to_s }
s.swift_version = '4.2'
s.platform = :ios, '9.0'
s.ios.deployment_target = '8.0'
s.source_files = 'MMSCameraViewController/Classes/**/*.swift'
s.resources = 'MMSCameraViewController/Assets/**/*'
s.frameworks = 'UIKit', 'AVFoundation', 'Foundation'
end