diff --git a/Analysis.podspec b/Analysis.podspec index fa41e53..254f284 100644 --- a/Analysis.podspec +++ b/Analysis.podspec @@ -1,21 +1,21 @@ Pod::Spec.new do |s| - s.name = 'Analysis' - s.version = '0.1.0' - s.summary = 'Analyse your strings.' + s.name = "Analysis" + s.version = "0.1.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.to_s } - s.social_media_url = 'https://twitter.com/basthomas' + 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.ios.deployment_target = "8.0" - s.source_files = 'Analysis/Classes/**/*' + s.source_files = "Analysis/Classes/**/*" - s.frameworks = 'Foundation' + s.frameworks = "Foundation" end