2 Commits

Author SHA1 Message Date
Adrian Secord
8c3af252be Adding AUTHORS and removing CONTRIBUTORS.txt.
We can credit any contributor who would like to be credited this way, by adding them on request to the AUTHORS file. The copyright statement changes are required for this to work. Note that this has...

Summary:

We can credit any contributor who would like to be credited this way, by adding them on request to the AUTHORS file. The copyright statement changes are required for this to work. Note that this has no legal change, since the contributors always retained their copyright despite the copyright notice, but it's a nice acknowledgement.

Changed copyright statement to include non-Google authors.

Command run:

find * \( -name '*\.m' -or -name '*\.h' -or -name '*\.swift' \) -and -not \( -path 'scripts/external*' -name Pods  \) -print0 | xargs -0 sed -i '' 's/Copyright \(.*\) Google Inc/Copyright \1 the Material Components for iOS authors/'

Added non-source files.

Command run:

grep -Rl 'Copyright .* Google Inc' * --exclude-dir scripts/external --null | xargs -0 sed -i '' 's/Copyright \(.*\) Google Inc/Copyright \1 the Material Components for iOS authors/'

Reviewers: featherless, O1 Material components iOS, randallli

Reviewed By: O1 Material components iOS, randallli

Tags: #material_components_ios

Differential Revision: http://codereview.cc/D1415
2016-08-08 08:16:37 -07:00
Jeff Verkoeyen
2cb18a209b Add missing example language check.
Summary:
Example output:

```
Each of the following components is missing example language:
components/FlexibleHeader/README.md:131
components/FlexibleHeader/README.md:159
components/FlexibleHeader/README.md:231
components/FlexibleHeader/README.md:322
components/FlexibleHeader/README.md:352
components/HeaderStackView/README.md:88
components/Ink/README.md:90
components/Ink/README.md:109
components/Ink/README.md:142
components/PageControl/README.md:121
components/PageControl/README.md:170
components/ShadowElevations/README.md:71
components/ShadowLayer/README.md:104
components/ShadowLayer/README.md:125
components/ShadowLayer/README.md:140
components/ShadowLayer/README.md:166
components/Slider/README.md:76
components/Switch/README.md:80
```

Reviewers: #mdc_ios_owners, ajsecord

Reviewed By: #mdc_ios_owners, ajsecord

Projects: #material_components_ios

Differential Revision: http://codereview.cc/D572
2016-04-12 14:37:52 -04:00