Skip to content

Commit

Permalink
Fix source paths
Browse files Browse the repository at this point in the history
  • Loading branch information
eneko authored Apr 24, 2017
1 parent 13c9183 commit 289a1fd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions MBDebugPanel.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ Pod::Spec.new do |s|
It's like the Konami code, but for your app.
DESC
s.homepage = "http://github.com/mindbody/MBDebugPanel.git"
s.homepage = "https://github.com/mindbody/MBDebugPanel.git"
s.license = 'MIT'
s.author = { "Matthew Holden" => "[email protected]" }
s.source = { :git => "https://github.com/mindbody/MBDebugPanel.git", :tag => s.version.to_s }

s.platform = :ios, '7.0'
s.requires_arc = true

s.source_files = 'Classes/ios/*.{h,m}', 'Classes/ios/{private,components}/*.{h,m}'
s.resources = 'Assets/componentCells/*.xib'

s.private_header_files = 'Classes/ios/private/*.h'
s.source_files = 'MBDebugPanel/Sources/Classes/**/*.{h,m}'
s.resources = 'MBDebugPanel/Sources/Assets/componentCells/*.xib'
s.private_header_files = 'MBDebugPanel/Sources/Classes/ios/private/*.h'
end

1 comment on commit 289a1fd

@brettwellmanmbo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for catching this, @eneko !

Please sign in to comment.