-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmojize.podspec
More file actions
15 lines (15 loc) · 814 Bytes
/
Emojize.podspec
File metadata and controls
15 lines (15 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'Emojize'
s.version = '6.0.10'
s.summary = "Swift 3 emoji parser for String, NSAttributedString and NSMutableAttributedString."
s.description = "Swift 3 emoji parser for String, NSAttributedString and NSMutableAttributedString. It replaces sub strings on the form :emoji: with its corresponding emoji character. The emoji lookup table is taken from github/gemoji."
s.homepage = 'https://github.com/oleander/Emojize'
s.license = 'MIT'
s.author = { 'Linus Oleander' => 'linus@oleander.io' }
s.platform = :osx, '10.10'
s.source = { git: 'https://github.com/oleander/Emojize.git', tag: s.version.to_s }
s.resources = ['Resources/emoji.json']
s.source_files = 'Emojize/**/*.swift'
s.dependency 'JASON'
s.dependency 'FootlessParser'
end