-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPSImageEditors.podspec
30 lines (25 loc) · 1008 Bytes
/
PSImageEditors.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
# pod trunk push PSImageEditors.podspec --allow-warnings --verbose
Pod::Spec.new do |s|
s.name = "PSImageEditors"
s.version = "0.2.5"
s.summary = "一个简而至美的图片编辑器"
s.homepage = "https://github.com/paintingStyle/PSImageEditors"
s.license = "MIT"
s.author = { "paintingStyle" => "[email protected]" }
s.platform = :ios,'8.0'
s.source = { :git => "https://github.com/paintingStyle/PSImageEditors.git", :tag => "#{s.version}" }
s.source_files = "PSImageEditors/Classes/**/*.{h,m}"
prefix_header_contents = <<-EOS
#import <Masonry/Masonry.h>
#import "PSImageEditorDefine.h"
#import "UIImage+PSImageEditors.h"
EOS
s.prefix_header_contents = prefix_header_contents
s.resource_bundles = {
'PSImageEditors' => ['PSImageEditors/Assets/**/*']
}
s.framework = "UIKit"
s.dependency 'Masonry'
s.dependency "TOCropViewController"
s.requires_arc = true
end