├── .clang-format ├── .gitignore ├── .jazzy.yaml ├── .kokoro ├── .swift-version ├── .travis.yml ├── AUTHORS ├── BUILD ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CatalogByConvention.podspec ├── LICENSE ├── README.md ├── WORKSPACE ├── docs └── assets │ ├── catalog.png │ ├── pods.png │ └── tests.png ├── example ├── Catalog.xcworkspace │ └── contents.xcworkspacedata ├── CatalogExamples.podspec ├── CatalogUnitTests.podspec ├── Podfile ├── Podfile.lock ├── catalog │ ├── Catalog.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Catalog.xcscheme │ ├── Catalog │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── UnitTests.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── UnitTests.xcscheme │ └── UnitTests │ │ ├── Info.plist │ │ └── XcodeCrashFix7.2.1.m └── components │ └── Resistor │ ├── Resistor.podspec │ ├── examples │ ├── ParallelResistorExample.m │ └── SeriesExample.m │ ├── src │ ├── RESParallelResistor.h │ ├── RESParallelResistor.m │ ├── RESSeriesResistor.h │ ├── RESSeriesResistor.m │ └── Resistor.h │ └── tests │ └── unit │ └── RESParallelResistorTests.m └── src ├── CBCCatalogExample.h ├── CBCNodeListViewController.h ├── CBCNodeListViewController.m ├── CatalogByConvention.h ├── SnapshotByConvention ├── CBCEnvironment.h └── CBCEnvironment.m ├── SwiftUI └── SwiftUIExampleWrapper.swift └── private ├── CBCRuntime.h └── CBCRuntime.m /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.kokoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/.kokoro -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/BUILD -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CatalogByConvention.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/CatalogByConvention.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/WORKSPACE -------------------------------------------------------------------------------- /docs/assets/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/docs/assets/catalog.png -------------------------------------------------------------------------------- /docs/assets/pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/docs/assets/pods.png -------------------------------------------------------------------------------- /docs/assets/tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/docs/assets/tests.png -------------------------------------------------------------------------------- /example/Catalog.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/Catalog.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/CatalogExamples.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/CatalogExamples.podspec -------------------------------------------------------------------------------- /example/CatalogUnitTests.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/CatalogUnitTests.podspec -------------------------------------------------------------------------------- /example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/Podfile -------------------------------------------------------------------------------- /example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/Podfile.lock -------------------------------------------------------------------------------- /example/catalog/Catalog.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/Catalog.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/catalog/Catalog.xcodeproj/xcshareddata/xcschemes/Catalog.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/Catalog.xcodeproj/xcshareddata/xcschemes/Catalog.xcscheme -------------------------------------------------------------------------------- /example/catalog/Catalog/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/Catalog/AppDelegate.swift -------------------------------------------------------------------------------- /example/catalog/Catalog/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/Catalog/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/catalog/Catalog/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/Catalog/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/catalog/Catalog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/Catalog/Info.plist -------------------------------------------------------------------------------- /example/catalog/UnitTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/UnitTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/catalog/UnitTests.xcodeproj/xcshareddata/xcschemes/UnitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/UnitTests.xcodeproj/xcshareddata/xcschemes/UnitTests.xcscheme -------------------------------------------------------------------------------- /example/catalog/UnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/UnitTests/Info.plist -------------------------------------------------------------------------------- /example/catalog/UnitTests/XcodeCrashFix7.2.1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/catalog/UnitTests/XcodeCrashFix7.2.1.m -------------------------------------------------------------------------------- /example/components/Resistor/Resistor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/Resistor.podspec -------------------------------------------------------------------------------- /example/components/Resistor/examples/ParallelResistorExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/examples/ParallelResistorExample.m -------------------------------------------------------------------------------- /example/components/Resistor/examples/SeriesExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/examples/SeriesExample.m -------------------------------------------------------------------------------- /example/components/Resistor/src/RESParallelResistor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/src/RESParallelResistor.h -------------------------------------------------------------------------------- /example/components/Resistor/src/RESParallelResistor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/src/RESParallelResistor.m -------------------------------------------------------------------------------- /example/components/Resistor/src/RESSeriesResistor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/src/RESSeriesResistor.h -------------------------------------------------------------------------------- /example/components/Resistor/src/RESSeriesResistor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/src/RESSeriesResistor.m -------------------------------------------------------------------------------- /example/components/Resistor/src/Resistor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/src/Resistor.h -------------------------------------------------------------------------------- /example/components/Resistor/tests/unit/RESParallelResistorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/example/components/Resistor/tests/unit/RESParallelResistorTests.m -------------------------------------------------------------------------------- /src/CBCCatalogExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/CBCCatalogExample.h -------------------------------------------------------------------------------- /src/CBCNodeListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/CBCNodeListViewController.h -------------------------------------------------------------------------------- /src/CBCNodeListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/CBCNodeListViewController.m -------------------------------------------------------------------------------- /src/CatalogByConvention.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/CatalogByConvention.h -------------------------------------------------------------------------------- /src/SnapshotByConvention/CBCEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/SnapshotByConvention/CBCEnvironment.h -------------------------------------------------------------------------------- /src/SnapshotByConvention/CBCEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/SnapshotByConvention/CBCEnvironment.m -------------------------------------------------------------------------------- /src/SwiftUI/SwiftUIExampleWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/SwiftUI/SwiftUIExampleWrapper.swift -------------------------------------------------------------------------------- /src/private/CBCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/private/CBCRuntime.h -------------------------------------------------------------------------------- /src/private/CBCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-foundation/cocoapods-catalog-by-convention/HEAD/src/private/CBCRuntime.m --------------------------------------------------------------------------------