-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAnalysis.podspec
More file actions
22 lines (17 loc) · 773 Bytes
/
Analysis.podspec
File metadata and controls
22 lines (17 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Analysis'
s.version = '0.5.0'
s.summary = 'Analyse your strings.'
s.description = <<-DESC
Analysis analyses strings, checking word count, sentence count, frequency of words and more.
DESC
s.homepage = 'https://github.com/BasThomas/Analysis'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Bas Broek' => 'bas@basbroek.nl' }
s.source = { :git => 'https://github.com/BasThomas/Analysis.git', :tag => s.version }
s.social_media_url = 'https://twitter.com/basthomas'
s.ios.deployment_target = '8.0'
s.swift_version = '5.1'
s.source_files = 'Analysis/Classes/**/*'
s.frameworks = 'Foundation'
end