material-components_materia.../MaterialComponentsExamples.podspec
Andrew Overton fecd909263
Delete experimental textfields (#8317)
I opened #8231 in the spirit of keeping the experimental textfields up to date in our repo, but I think I'm going to take a different approach. Now that I'm actually bringing things over I'm encountering collisions with file names--there can't be an MDCContainedInputView.h in experimental examples and component source. And it's not worth adding a "2" suffix to every file in the experimental directory. So I'm going to delete all the experimental stuff!

Further development will take place in a local branch where the ContainedInputView textfields live in MaterialTextFields+ContainedInputView.
2019-08-15 10:14:20 -04:00

19 lines
1.3 KiB
Ruby

Pod::Spec.new do |s|
s.name = "MaterialComponentsExamples"
s.version = "87.0.1"
s.authors = "The Material Components authors."
s.summary = "This spec is an aggregate of all the Material Components examples."
s.description = "This spec is made for use in the MDC Catalog. Used in conjunction with CatalogByConvention we create our Material 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, '9.0'
s.requires_arc = true
s.source_files = ['components/*/examples/*.{h,m,swift}', 'components/*/examples/supplemental/*.{h,m,swift}', 'components/private/*/examples/*.{h,m,swift}', 'components/schemes/*/examples/*.{h,m,swift}', 'components/schemes/*/examples/supplemental/*.{h,m,swift}']
s.resources = ['components/*/examples/resources/*', 'components/private/*/examples/resources/*', 'components/schemes/*/examples/resources/*']
s.dependency 'MaterialComponents'
s.dependency 'MaterialComponentsBeta'
s.public_header_files = ['components/*/examples/*.h', 'components/*/examples/supplemental/*.h', 'components/private/*/examples/*.h', 'components/schemes/*/examples/*.h']
end