| # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html |
| s.name = 'integration_test' |
| s.summary = 'Adapter for integration tests.' |
| Runs tests that use the flutter_test API as integration tests. |
| s.homepage = 'https://github.com/flutter/flutter/tree/master/packages/integration_test' |
| s.license = { :type => 'BSD', :text => <<-LICENSE |
| Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. |
| s.author = { 'Flutter Team' => 'flutter-dev@googlegroups.com' } |
| s.source = { :http => 'https://github.com/flutter/flutter/tree/master/packages/integration_test' } |
| s.source_files = 'Classes/**/*' |
| s.public_header_files = 'Classes/**/*.h' |
| s.ios.framework = 'UIKit' |
| # Weakly link for parts of API that need to be run in XCTest targets. |
| s.ios.weak_framework = 'XCTest' |
| s.pod_target_xcconfig = { |
| 'DEFINES_MODULE' => 'YES', |
| 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386', |
| 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks', |