Skip to content

Instantly share code, notes, and snippets.

@djbe
Created March 11, 2014 15:43
Show Gist options
  • Save djbe/9488453 to your computer and use it in GitHub Desktop.
Save djbe/9488453 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'AHValidation'
s.version = '0.0.1'
s.summary = 'An extensible validation library for Cocoa.'
s.homepage = 'https://github.com/warrenm/AHValidation'
s.author = 'Auerhaus Development'
s.source = {
:git => 'https://github.com/warrenm/AHValidation.git'
}
s.platform = :ios, '5.0'
s.source_files = 'AHValidation/*.{h,m}'
s.exclude_files = 'main.m'
s.frameworks = 'UIKit', 'Foundation'
s.requires_arc = true
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment