Skip to content

Instantly share code, notes, and snippets.

@l4u
Created April 19, 2012 12:57
Show Gist options
  • Save l4u/2420807 to your computer and use it in GitHub Desktop.
Save l4u/2420807 to your computer and use it in GitHub Desktop.
Generate cocoapods podspec for cocos2d-iphone-extensions subspec
exts= [
'CCBigImage',
'CCLayerPanZoom',
'CCMenuAdvanced',
'CCMenuItemSpriteIndependent',
'CCScrollLayer',
'CCSendMessages',
'CCSlider',
'CCVideoPlayer',
'FilesDownloader',
'TMXGenerator']
exts.each do |ext|
puts <<-eos
s.subspec '#{ext}' do |m|
m.source_files = 'Extensions/#{ext}/*.{h,m,c}'
end
eos
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment