Skip to content

Commit

Permalink
Update podspec to pass lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrsmys committed Dec 1, 2017
1 parent 8481710 commit 7b2c0d0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions HyperioniOS.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand All @@ -18,43 +18,45 @@ 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/<TWITTER_USERNAME>'

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/**/*'
core.exclude_files = 'Core/**/*.md'
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
Expand Down

0 comments on commit 7b2c0d0

Please # to comment.