mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-04 19:49:34 +08:00
16 lines
852 B
Ruby
16 lines
852 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MaterialComponentsCatalog"
|
|
s.version = "21.0.0"
|
|
s.authors = "The Material Components authors."
|
|
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details."
|
|
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/*/examples/*.{h,m,swift}', 'components/*/examples/supplemental/*.{h,m,swift}'
|
|
s.resources = ['components/*/examples/resources/*']
|
|
s.dependency 'MaterialComponents'
|
|
s.public_header_files = 'components/*/examples/*.h', 'components/*/examples/supplemental/*.h'
|
|
end
|