Skip to content

Commit 5d0b066

Browse files
committed
Updated README with the new version information
1 parent 20e0501 commit 5d0b066

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

README.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,36 @@ Swift enum wrapper for easier handling of HTTP status codes.
99

1010
The purpose of this library is to improve to clarify of code and remove the need for checking of status codes as numbers (`==200`), or as a range of values (`== 2xx`) - instead replacing it with descriptive enums.
1111

12-
All the [RF2616](http://www.ietf.org/rfc/rfc2616.txt) standard status codes are supported with a few added ones from the [Wikipedia page](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes).
12+
All the [RF2616](http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml) standard status codes are supported with a few added ones from the [Wikipedia page](http://en.wikipedia.org/wiki/List_of_HTTP_status_codes).
13+
14+
As of version 3.0.0 of this framework, the list of status codes are directly generated from a [online IANA CSV](http://www.iana.org/assignments/http-status-codes/http-status-codes-1.csv). The [HTML page](http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml) has a last updated field, and this is also mirrored in the header comments to identify which version this framework is currently using.<br/>
15+
If this library is out of date compared to this page please open an issue and I will update the list.
1316

1417
## Usage
1518

16-
With Carthage:
19+
### Carthage
1720

21+
`Cartfile`:
1822
```ogdl
19-
github "rhodgkins/SwiftHTTPStatusCodes" ~> 2.0
23+
github "rhodgkins/SwiftHTTPStatusCodes" ~> 3.0
24+
```
25+
Source code:
26+
```swift
27+
import HTTPStatusCodes
2028
```
2129

22-
With CocoaPods:
30+
### CocoaPods
31+
`Podfile`:
2332
```ruby
24-
pod 'HTTPStatusCodes', '~> 2.0.0'
33+
pod 'HTTPStatusCodes', '~> 3.0.0'
2534
```
35+
Source code:
2636

27-
In your source file:
2837
```swift
2938
import HTTPStatusCodes
3039
```
3140

41+
### Manually
3242
Or drop in the Swift files inside the [`Sources folder`](https://github.com/rhodgkins/SwiftHTTPStatusCodes/tree/master/Sources) into your project.
3343

3444
## Helper methods

0 commit comments

Comments
 (0)