-
-
Save alloy/1934567 to your computer and use it in GitHub Desktop.
A CocoaPods PodSpec for the KIF framework
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'KIF' | |
s.version = '0.0.1' | |
s.platform = :ios | |
s.license = 'Apache License, Version 2.0' | |
s.summary = 'Keep It Functional - iOS Test Framework' | |
s.homepage = 'https://github.com/square/KIF' | |
s.author = { 'Square' => 'kif-framework@googlegroups.com' } | |
s.source = { :git => 'https://github.com/square/KIF', | |
:commit => '7d78430cdb7a0e9067cb57bb82ecbd651b6ed8c7' } | |
s.description = '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.' | |
s.source_files = 'Classes', 'Additions' | |
s.clean_paths = 'Documentation', 'KIF.xcodeproj' | |
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'RUN_KIF_TESTS=1' } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment