integration_test.podspec 1.06 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
  s.name             = 'integration_test'
  s.version          = '0.0.1'
  s.summary          = 'Adapter for integration tests.'
  s.description      = <<-DESC
Runs tests that use the flutter_test API as integration tests.
                       DESC
11 12 13 14 15
  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.
LICENSE
   }
16
  s.author           = { 'Flutter Team' => 'flutter-dev@googlegroups.com' }
17
  s.source           = { :http => 'https://github.com/flutter/flutter/tree/master/packages/integration_test' }
18 19 20
  s.source_files = 'Classes/**/*'
  s.public_header_files = 'Classes/**/*.h'
  s.dependency 'Flutter'
21 22
  s.ios.framework  = 'UIKit'

23
  s.platform = :ios, '11.0'
24
  s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
25
end