forked from Nikita2k/SimpleExif
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleExif.podspec
More file actions
25 lines (16 loc) · 773 Bytes
/
SimpleExif.podspec
File metadata and controls
25 lines (16 loc) · 773 Bytes
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
Pod::Spec.new do |s|
s.name = "SimpleExif"
s.version = "0.0.1"
s.summary = "Simple exif is a pod that allows you to add Exif data to any UIImage in your app. You can add location, timestamp and user comments."
s.homepage = "https://github.com/Nikita2k/SimpleExif"
s.license = { :type => "MIT", :file => "LICENCE" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.0'
s.requires_arc = true
s.author = "Nikita Took"
s.source = { :git => "https://github.com/Nikita2k/SimpleExif.git", :tag => s.version.to_s }
s.source_files = "Classes", "Classes/*.{h,m}"
s.ios.source_files = 'Classes/ios/**/*.{h,m}'
s.osx.source_files = 'Classes/osx/**/*.{h,m}'
s.exclude_files = "Classes/Exclude"
end