Skip to content

Instantly share code, notes, and snippets.

@cdmwebs
Created November 14, 2012 18:56
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 cdmwebs/4073994 to your computer and use it in GitHub Desktop.
Save cdmwebs/4073994 to your computer and use it in GitHub Desktop.
KIF for iOS6 Podspec
Pod::Spec.new do |s|
s.name = 'KIF'
s.version = '0.1.0'
s.license = 'Apache'
s.summary = 'Keep It Functional - iOS Test Framework.'
s.homepage = 'https://github.com/square/KIF'
s.author = { 'Square' => 'https://squareup.com/' }
s.source = { :git => 'https://github.com/square/KIF.git', :commit => 'e4bc08c5f3e8a6a547ab5ce8561fda4912f2129f' }
s.description = <<-DESC
KIF, which stands for Keep It Functional, is an iOS
integration test framework. It allows for easy automation of
iOS apps by leveraging the accessibility attributes that the
OS makes available for those with visual disabilities.
DESC
s.platform = :ios
s.source_files = 'Classes', 'Additions'
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) RUN_KIF_TESTS=1' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment