Browse Source

Merge pull request #11 from shuheiktgw/small_fixes

Update travis.yml and README
tags/v0.1.0
iancoleman GitHub 4 years ago
parent
commit
ce7b139d80
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 5 deletions
  1. +5
    -5
      .travis.yml
  2. +7
    -0
      README.md

+ 5
- 5
.travis.yml View File

@@ -1,9 +1,9 @@
sudo: false
language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip

+ 7
- 0
README.md View File

@@ -22,3 +22,10 @@ s := "AnyKind of_string"
| `ToScreamingDelimited(s, '.')` | `ANY.KIND.OF.STRING` |
| `ToCamel(s)` | `AnyKindOfString` |
| `ToLowerCamel(s)` | `anyKindOfString` |


## Install

```bash
go get -u github.com/iancoleman/strcase
```

Loading…
Cancel
Save