mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-05 03:58:56 +08:00
Summary: Checklist: - [ ] Ran `arc unit --everything`. - [ ] Ran `scripts/build_all_pod_projects`. - [ ] Ran `scripts/release/api_diff` and pasted the results into CHANGELOG.md. - [ ] Ran `scripts/release/changes` and pasted the results into CHANGELOG.md. - [ ] Visually inspected the API diff to ensure it accurately reflects the release's changes. - [ ] Ran `scripts/release/diff components/*/src/` and visually inspected the changes. - [ ] Ran `scripts/release/bump` with the new version number. - [ ] Updated CHANGELOG.md's latest section header to match the release's version number. - [ ] I did not `arc land` this change because I followed the [releasing guide](https://github.com/google/material-components-ios/blob/develop/contributing/contributor_guides/releasing.md) and did the following: - [ ] Ran `scripts/release/merge` - [ ] Push to master - [ ] Push to develop - [ ] Manually marked this diff closed in the web ui Reviewers: O1 Material components iOS! Tags: #material_components_ios Differential Revision: http://codereview.cc/D925
16 lines
863 B
Ruby
16 lines
863 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MaterialComponentsCatalog"
|
|
s.version = "10.0.0"
|
|
s.authors = { 'Apple platform engineering at Google' => 'appleplatforms@google.com' }
|
|
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details."
|
|
s.homepage = "https://github.com/google/material-components-ios"
|
|
s.license = 'Apache 2.0'
|
|
s.source = { :git => "https://github.com/google/material-components-ios.git", :tag => s.version.to_s }
|
|
s.platform = :ios, '7.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
|