Skip to content

Instantly share code, notes, and snippets.

@bartvandendriessche
Last active December 14, 2015 23:58
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 bartvandendriessche/5169054 to your computer and use it in GitHub Desktop.
Save bartvandendriessche/5169054 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "MHPrettyDate"
s.version = "1.0.1"
s.summary = "An iOS framework that provides a simple mechanism to get \"Pretty Dates\" (\"Yesterday\", \"Today\", etc.) from NSDate objects."
s.homepage = "https://github.com/bobjustbob/MHPrettyDate"
s.license = 'MIT'
s.author = { "Bobby Williams" => "bjackw@mac.com" }
s.source = { :git => "https://github.com/bobjustbob/MHPrettyDate.git", :head }
s.platform = :ios, '5.0'
s.source_files = 'MHPrettyDate/**/*.{h,m}'
s.resources = "#{s.name}/**/*.{lproj}"
s.requires_arc = true
s.framework = 'Foundation'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment