Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Change Pod name to 'RichTextView'
Browse files Browse the repository at this point in the history
  • Loading branch information
aelkady committed Nov 28, 2018
1 parent 78829d9 commit a57e6ca
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- prep_mac_env
- run:
name: Deploy
command: pod trunk push THRichTextView.podspec --allow-warnings
command: pod trunk push RichTextView.podspec --allow-warnings

website:
<<: *website_docker_defaults
Expand Down
11 changes: 4 additions & 7 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ iOS Text View (`UIView`) that Properly Displays LaTeX, HTML, Markdown, and YouTu
Simply add the following to your Podfile:

```
pod 'THRichTextView'
pod 'RichTextView'
```

And run `pod install` in your repo.
Expand All @@ -43,14 +43,11 @@ And run `carthage update --platform iOS` in your repo.
## Usage

You can instantiate a `RichTextView` by importing the project first:
```
import THRichTextView
```
if you are using Cocoapods, or

```
import RichTextView
```
if you are using Carthage. To init a `RichTextView`:
To init a `RichTextView`:

```
let richTextView = RichTextView(
Expand Down Expand Up @@ -123,4 +120,4 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
| :---: | :---: | :---: | :---: |
| [<img src="https://avatars2.githubusercontent.com/u/8105535?s=100" width="100px;"/><br /><sub><b>Monica Moore</b></sub>](https://github.com/monicamm95)<br />[🎨](http://monicamoore.ca/) | [<img src="https://avatars1.githubusercontent.com/u/39271619?s=100" width="100px;"/><br /><sub><b>Brandon Baksh</b></sub>](https://github.com/brandonbaksh)<br />[📖](https://github.com/tophat/RichTextView/commits?author=brandonbaksh) | [<img src="https://avatars1.githubusercontent.com/u/445636?s=100" width="100px;"/><br /><sub><b>Siavash Bidgoly</b></sub>](https://github.com/syavash)<br />[🚇](../.circleci/config.yml) | [<img src="https://avatars1.githubusercontent.com/u/30090188?s=100" width="100px;"/><br /><sub><b>Stephen Truong</b></sub>](https://github.com/struong9)<br />[📖](https://github.com/tophat/RichTextView/commits?author=struong9)

Thanks to [Carol Skelly](https://github.com/iatek) for donating the github organization!
Thanks to [Carol Skelly](https://github.com/iatek) for donating the Github organization and [Kevin Zhow](https://github.com/kevinzhow) for donating the Pod name!
4 changes: 2 additions & 2 deletions THRichTextView.podspec → RichTextView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#

Pod::Spec.new do |s|
s.name = 'THRichTextView'
s.version = '1.0.2'
s.name = 'RichTextView'
s.version = '1.0.3'
s.summary = 'iOS Text View that Properly Displays LaTeX, HTML, Markdown, and YouTube/Vimeo Links.'
s.description = <<-DESC
This is an iOS UIView that Properly Displays LaTeX, HTML, Markdown, and YouTube/Vimeo Links. Simply feed in an input
Expand Down
8 changes: 7 additions & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ iOS Text View (`UIView`) that Properly Displays LaTeX, HTML, Markdown, and YouTu
Simply add the following to your Podfile:

```
pod 'THRichTextView'
pod 'RichTextView'
```

And run `pod install` in your repo.

### Using Carthage
Expand All @@ -41,6 +42,11 @@ And run `carthage update --platform iOS` in your repo.

You can instantiate a `RichTextView` by importing the project first:

```
import RichTextView
```
To init a `RichTextView`:

```
let richTextView = RichTextView(
input: "Test",
Expand Down

0 comments on commit a57e6ca

Please sign in to comment.