From 7b2c0d04aed19d880e107dbdd0af927c888ff190 Mon Sep 17 00:00:00 2001 From: Christopher Mays Date: Fri, 1 Dec 2017 11:52:33 -0500 Subject: [PATCH] Update podspec to pass lint. --- HyperioniOS.podspec | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/HyperioniOS.podspec b/HyperioniOS.podspec index 411cdd5..2ac217b 100644 --- a/HyperioniOS.podspec +++ b/HyperioniOS.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.name = 'HyperioniOS' s.version = '0.99.0' - s.summary = 'Hyperion is a view debugging tool that allows you to inspect views attributes and measurements in app.' + s.summary = 'Hyperion is an app design review tool that allows you to inspect views and perform measurements live within your app.' # This description is used to generate tags and improve search results. # * Think: What does it do? Why did you write it? What is the focus? @@ -18,26 +18,25 @@ Pod::Spec.new do |s| # * Finally, don't worry about the indent, CocoaPods strips it! s.description = <<-DESC -Hyperion is a view debugging tool that allows you to inspect views attributes and measurements in app. +Hyperion is an app design review tool that allows you to inspect views and perform measurements live within your app. Hyperion is built on top of a plugin system so you can add and remove plugins as your workflow requires. DESC s.homepage = 'https://github.com/willowtreeapps/Hyperion-iOS' # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'chrsmys' => 'chris.mays@willowtreeapps.com' } - s.source = { :git => 'https://github.com/willowtreeapps/Hyperion-iOS', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/willowtreeapps/Hyperion-iOS.git', :tag => s.version.to_s } # s.social_media_url = 'https://twitter.com/' s.ios.deployment_target = '9.0' - s.source_files = 'HyperioniOS/Classes/View\ debugger/**/*' + # s.source_files = 'HyperioniOS/Classes/View\ debugger/**/*' # s.resource_bundles = { # 'HyperioniOS' => ['HyperioniOS/Assets/*.png'] # } - s.public_header_files = '**/*.h' - s.frameworks = 'UIKit' + s.frameworks = ["UIKit"] s.subspec 'Core' do |core| core.source_files = 'Core/**/*' @@ -45,16 +44,19 @@ Hyperion is a view debugging tool that allows you to inspect views attributes an end s.subspec 'AttributesInspector' do |attributes| + attributes.dependency 'HyperioniOS/Core' attributes.source_files = 'AttributesInspector/**/*' attributes.exclude_files = 'AttributesInspector/**/*.md' end s.subspec 'SlowAnimations' do |slowanimations| + slowanimations.dependency 'HyperioniOS/Core' slowanimations.source_files = 'SlowAnimations/**/*' slowanimations.exclude_files = 'SlowAnimations/**/*.md' end s.subspec 'Measurements' do |measurements| + measurements.dependency 'HyperioniOS/Core' measurements.source_files = 'Measurements/**/*' measurements.exclude_files = 'Measurements/**/*.md' end