-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathYCameraView.podspec
29 lines (22 loc) · 1.17 KB
/
YCameraView.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
#
# Be sure to run `pod spec lint YCameraView.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
Pod::Spec.new do |s|
s.name = "YCameraView"
s.version = "1.1.0"
s.summary = "Custom Camera Controller similar to the camera View on Instagram."
s.description = <<-DESC
YCameraViewController is a custom Image picker controller that allows you to quickly switch between Camera and iPhone Photo Library. This Controller only useful for capturing Square Image.
DESC
s.homepage = "https://github.com/yuvirajsinh/YCameraView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "yuvirajsinh"
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/yuvirajsinh/YCameraView.git", :tag => s.version.to_s }
s.source_files = "YCameraViewController/**/*.{h,m}"
s.resources = ["YCameraViewController/UI/**/*.png", "YCameraViewController/YCameraViewController.xib"]
s.frameworks = "AVFoundation", "ImageIO", "CoreMotion"
s.requires_arc = true
end