Skip to content

Instantly share code, notes, and snippets.

@ricobeck
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricobeck/012d901370eb06c253d1 to your computer and use it in GitHub Desktop.
Save ricobeck/012d901370eb06c253d1 to your computer and use it in GitHub Desktop.
CSV podspec
Pod::Spec.new do |s|
s.name = 'CSV'
s.version = '0.0.2'
s.license = 'MIT'
s.platform = :osx
s.summary = "Format data to the comma-separated values format."
s.homepage = 'https://github.com/rdavies/CSV'
s.author = { 'Ryan Davies' => 'ryan@ryandavies.net' }
s.source = { :git => 'https://github.com/rdavies/CSV.git', :tag => s.version.to_s }
s.source_files = 'CSV/*.{h,m}'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment