forked from prscX/photo-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiOSPhotoEditor.podspec
25 lines (19 loc) · 979 Bytes
/
iOSPhotoEditor.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
Pod::Spec.new do |s|
s.name = 'iOSPhotoEditor'
s.version = '0.5'
s.summary = 'Photo Editor supports drawing, writing text and adding stickers and emojis'
s.description = <<-DESC
Photo Editor supports drawing, writing text and adding stickers and emojis
with the ability to scale and rotate objects
DESC
s.homepage = 'https://github.com/M-Hamed/photo-editor'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'Mohamed Hamed' => 'mohamed.hamed.ibrahem@gmail.com' }
s.source = { :git => 'https://github.com/M-Hamed/photo-editor.git', :tag => s.version.to_s }
s.dependency 'SDWebImage', '~> 4.4.7'
s.ios.deployment_target = '9.0'
s.swift_version = '4.2'
s.source_files = "Photo Editor/**/*.{swift}"
s.exclude_files = "Photo Editor/**/AppDelegate.swift"
s.resources = "Photo Editor/**/*.{png,jpeg,jpg,storyboard,xib,xcassets,ttf}"
end