-
Notifications
You must be signed in to change notification settings - Fork 263
/
Highlightr.podspec
42 lines (28 loc) · 1.33 KB
/
Highlightr.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
32
33
34
35
36
37
#
# Be sure to run `pod lib lint Highlightr.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Highlightr"
s.version = "2.1.0"
s.summary = "iOS & macOS Syntax Highlighter."
s.description = <<-DESC
Highlightr is an iOS & macOS syntax highlighter built with Swift. It uses highlight.js as it core, supports 176 languages and comes with 79 styles.
DESC
s.homepage = "http://github.com/raspu/Highlightr"
s.screenshots = "http://raw.githubusercontent.com/raspu/Highlightr/master/mix2.gif", "http://raw.githubusercontent.com/raspu/Highlightr/master/coding.gif"
s.license = 'MIT'
s.author = { "J.P. Illanes" => "jpillaness@gmail.com" }
s.source = { :git => "https://github.com/raspu/Highlightr.git", :tag => s.version.to_s, :submodules => true}
s.osx.deployment_target = '10.11'
s.ios.deployment_target = '8.0'
s.swift_version = '4.2'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{swift}'
s.resources = 'Pod/Assets/**/*.{css,js}'
s.ios.frameworks = 'UIKit'
s.osx.frameworks = 'AppKit'
end