|
1 | 1 | Pod::Spec.new do |s|
|
2 |
| - s.name = "RichEditorSwiftUI" |
3 |
| - s.version = "1.0.0" |
4 |
| - s.summary = "Rich text editing, SwiftUI rich text editor library." |
| 2 | + s.name = 'RichEditorSwiftUI' |
| 3 | + s.version = '1.0.0' |
| 4 | + s.summary = 'Powerful WYSIWYG Rich editor for SwiftUI.' |
5 | 5 |
|
6 | 6 | s.description = <<-DESC
|
7 | 7 | Wrapper around UITextView to support Rich text editing in SwiftUI.
|
8 | 8 | DESC
|
9 | 9 |
|
10 |
| - s.homepage = "https://github.com/canopas/RichEditorSwiftUI" |
11 |
| - s.license = { :type => "MIT", :file => "LICENSE.md" } |
12 |
| - s.author = { "Jimmy" => "jimmy@canopas.com" } |
13 |
| - s.source = { :git => "https://github.com/canopas/rich-editor-swiftui.git", :tag => s.version.to_s } |
14 |
| - s.source_files = "Sources/*.swift" |
| 10 | + s.homepage = 'https://github.com/canopas/RichEditorSwiftUI' |
| 11 | + s.license = { :type => 'MIT', :file => 'LICENSE.md' } |
| 12 | + s.author = { 'Jimmy' => 'jimmy@canopas.com' } |
| 13 | + s.source = { :git => 'https://github.com/canopas/rich-editor-swiftui.git', :tag => s.version.to_s } |
15 | 14 | s.social_media_url = 'https://x.com/canopas_eng'
|
16 | 15 |
|
| 16 | + s.source_files = 'Sources/**/*.swift' |
| 17 | + |
17 | 18 | s.module_name = 'RichEditorSwiftUI'
|
18 | 19 | s.requires_arc = true
|
| 20 | + |
19 | 21 | s.swift_version = '5.9'
|
20 | 22 |
|
| 23 | + s.ios.deployment_target = '15.0' |
| 24 | + s.osx.deployment_target = '12.0' |
| 25 | + s.tvos.deployment_target = '17.0' |
| 26 | + s.visionos.deployment_target = '1.0' |
| 27 | + s.watchos.deployment_target = '8.0' |
| 28 | + |
21 | 29 | s.preserve_paths = 'README.md'
|
22 | 30 |
|
23 |
| - s.ios.deployment_target = '14.0' |
24 | 31 | end
|
0 commit comments