Skip to content

Commit

Permalink
Update using-pod-lib-create.html.md
Browse files Browse the repository at this point in the history
Use pre-defined lib name MyLib to refer to the newly created pod
  • Loading branch information
mathrocco committed Apr 6, 2020
1 parent e4df6c3 commit 3ee2916
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/making/using-pod-lib-create.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 76,7 @@ $ tree MyLib -L 2
│   └── Tests
├── LICENSE
├── MyLib.podspec
├── Pod
├── MyLib
│   ├── Assets
│   └── Classes
│     └── RemoveMe.[swift/m]
Expand All @@ -94,7 94,7 @@ We've tried to keep the amount in the root folder minimised, You will see the fo

and the following folders:

* `Pod` - This is where you place your library's classes
* `MyLib` - This is where you place your library's classes
* `Example` - This is the generated Demo & Testing bundle

## Putting your Library Together
Expand All @@ -117,7 117,7 @@ It's worth mentioning here, as this catches people quite often, a Swift library

Development Pods are different from normal CocoaPods in that they are symlinked files, so making edits to them will change the original files, so you can work on your library from inside Xcode. Your demo & tests will need to include references to headers using the `#import <MyLib/XYZ.h>` format.

> `[!] Note:` Due to a Development Pods implementation detail, when you add new/existing files to `Pod/Classes` or `Pod/Assets` or update your podspec, you should run `pod install` or `pod update`.
> `[!] Note:` Due to a Development Pods implementation detail, when you add new/existing files to `MyLib/Classes` or `MyLib/Assets` or update your podspec, you should run `pod install` or `pod update`.
## Adding Travis CI

Expand Down

0 comments on commit 3ee2916

Please sign in to comment.