forked from bevy/photo-editor
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathiOSPhotoEditor.podspec
22 lines (18 loc) · 901 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
Pod::Spec.new do |s|
s.name = 'iOSPhotoEditor'
s.version = '1.0.0'
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.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.source_files = "iOSPhotoEditor/**/*.{swift}"
s.exclude_files = ""
s.resources = "iOSPhotoEditor/**/*.{png,jpeg,jpg,storyboard,xib,ttf}"
end