mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-05 12:08:21 +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
15 lines
693 B
Ruby
15 lines
693 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "MaterialComponentsUnitTests"
|
|
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/*/tests/unit/*.{h,m,swift}'
|
|
s.framework = 'XCTest'
|
|
s.dependency 'MaterialComponents'
|
|
end
|