mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-01-09 07:11:20 +08:00
18 lines
863 B
Ruby
18 lines
863 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MaterialComponentsEarlGreyTests"
|
|
s.version = "118.1.0"
|
|
s.authors = "The Material Components authors."
|
|
s.summary = "This spec is an aggregate of all the Material Components EarlGrey tests."
|
|
s.description = "This spec is made for use in the MDC Catalog."
|
|
s.homepage = "https://github.com/material-components/material-components-ios"
|
|
s.license = 'Apache 2.0'
|
|
s.source = { :git => "https://github.com/material-components/material-components-ios.git", :tag => "v#{s.version}" }
|
|
s.platform = :ios, '10.0'
|
|
s.requires_arc = true
|
|
s.source_files = 'components/*/tests/earlgrey/*.{h,m,swift}', 'components/private/*/tests/earlgrey/*.{h,m,swift}'
|
|
s.framework = 'XCTest'
|
|
s.dependency 'MaterialComponents'
|
|
s.dependency 'MDFTextAccessibility'
|
|
s.dependency 'EarlGrey'
|
|
end
|