-
Notifications
You must be signed in to change notification settings - Fork 30
/
SQRichTextEditor.podspec
31 lines (23 loc) · 1.16 KB
/
SQRichTextEditor.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
31
#
# Be sure to run `pod lib lint SQRichTextEditor.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SQRichTextEditor'
s.version = '1.0.2'
s.summary = 'A rich text WYSIWYG editor for iOS base on Squire.'
s.description = "A rich text WYSIWYG editor for iOS, which is based on Squire using HTML5 and javascript."
s.homepage = 'https://github.com/OneupNetwork/SQRichTextEditor'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Yuwei Lin' => '[email protected]' }
s.source = { :git => 'https://github.com/OneupNetwork/SQRichTextEditor.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.ios.source_files = 'SQRichTextEditor/Classes/*'
s.ios.resources = "SQRichTextEditor/Assets/Editor/*"
#s.ios.resource_bundles = { 'imageResource' => ['SQRichTextEditor/Assets/*.xcassets'] }
s.ios.frameworks = 'UIKit', 'WebKit'
s.swift_version = '5.1'
end