Skip to content

Instantly share code, notes, and snippets.

@AlexDenisov
Created November 30, 2012 15:54
Show Gist options
  • Save AlexDenisov/4176595 to your computer and use it in GitHub Desktop.
Save AlexDenisov/4176595 to your computer and use it in GitHub Desktop.
Frank podspec. Mirror
Pod::Spec.new do |s|
s.name = 'Frank'
s.version = '0.8.8'
s.license = 'MIT'
s.summary = 'Automated acceptance tests for native iOS apps'
s.homepage = 'http://www.testingwithfrank.com/'
s.author = { 'Pete Hodgson' => "[email protected]" }
s.source = { :git => 'https://github.com/moredip/Frank.git', :tag => 'v0.8.8' }
s.description = %q{
Frank is 'Selenium for native iOS apps'. It allows you to write automated
acceptance tests which verify the functionality of your native iOS app.
To use this pod:
1. Duplicate your application target and rename it according to http://www.testingwithfrank.com/installing.html
2. In your pod file specify a target by:
target :frankified, :exclusive => true do
dependency 'Frank'
end
3. Include libPods-frankified library from your Frankified target.
}
s.platform = :ios
s.source_files = 'gem/frank-skeleton/frank_static_resources.bundle', 'gem/frank-skeleton/*.a'
s.clean_paths = "Frank.xcodeproj", "cucumber", "doc", "example", "frank_static_resources.bundle",
"lib", "src", "tutorial", "xcode"
s.framework = 'CFNetwork'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC -all_load' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment