-
Notifications
You must be signed in to change notification settings - Fork 1
/
WordsCloudView.podspec
26 lines (23 loc) · 1.16 KB
/
WordsCloudView.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
#
# Be sure to run `pod lib lint WordsCloudView.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 = 'WordsCloudView'
s.version = '0.0.1'
s.summary = '`Cloud of words` view'
s.description = <<-DESC
Cloud of words view. Implementation is based on the code of Christian Petah (see https://github.com/PetahChristian/LionAndLamb ).
DESC
s.homepage = 'https://github.com/Slava Zubrin/WordsCloudView'
s.screenshots = 'https://github.com/svyatoslav-zubrin/WordsCloudView/blob/fada05553b19fe10cf0b82a86a6ab0385a695385/Screenshots/words_cloud.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Slava Zubrin' => 'szubrin79 `at` gmail.com' }
s.source = { :git => 'https://github.com/Slava Zubrin/WordsCloudView.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'WordsCloudView/Classes/**/*'
s.frameworks = 'UIKit'
end