forked from kyle-n/HighlightedTextEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
20 lines (15 loc) · 805 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = 'HighlightedTextEditor'
spec.version = ENV['LIB_VERSION'] || '1.0'
spec.summary = 'A SwiftUI view for dynamically highlighting user input'
spec.description = <<-DESC
HighlightedTextEditor is a simple, powerful SwiftUI text editor for iOS and macOS with live syntax highlighting. Highlight what's important as your users type.
DESC
spec.homepage = 'https://github.com/kyle-n/HighlightedTextEditor'
spec.license = 'MIT'
spec.author = { 'Kyle Nazario' => '[email protected]'}
spec.source = { :git => 'https://github.com/kyle-n/HighlightedTextEditor.git', :tag => "#{spec.version}" }
spec.source_files = 'Sources', 'Sources/**/*.{swift}'
spec.swift_versions = '5.3.1'
spec.platforms = { :ios => '13.0', :osx => '10.15' }
end