material-components_materia.../MaterialComponentsUnitTests.podspec
Robert Moore 328b4ba57d [Buttons] Support IB custom fonts (#3082)
* [Buttons] Support IB custom fonts

MDCButton should allow custom fonts to be set via Interface Builder. Instead
of overwriting the titleLabel.font to our preferred font, we can initialize
the button's font-for-state dictionary with the font provided by the label.

Closes #2786

* Fixing Bazel builds
2018-03-14 12:16:56 -04:00

18 lines
1.0 KiB
Ruby

Pod::Spec.new do |s|
s.name = "MaterialComponentsUnitTests"
s.version = "46.1.1"
s.authors = "The Material Components authors."
s.summary = "This spec is an aggregate of all the Material Components unit 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, '8.0'
s.requires_arc = true
s.source_files = 'components/*/tests/unit/*.{h,m,swift}', 'components/private/*/tests/unit/*.{h,m,swift}', 'components/*/tests/unit/supplemental/*.{h,m,swift}', 'components/private/*/tests/unit/supplemental/*.{h,m,swift]'
s.resources = ['components/*/tests/unit/resources/*', 'components/private/*/tests/unit/resources/*']
s.framework = 'XCTest'
s.dependency 'MaterialComponents'
s.dependency 'MDFTextAccessibility'
end