Skip to content

Commit c0c1b74

Browse files
authored
Fix README links (#895)
1 parent e3a15ed commit c0c1b74

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
## What is grape-swagger? <a name="what"></a>
2424

25-
The grape-swagger gem provides an autogenerated documentation for your [Grape](https://github.com/ruby-grape/grape) API. The generated documentation is Swagger-compliant, meaning it can easily be discovered in [Swagger UI](https://github.com/wordnik/swagger-ui). You should be able to point [the petstore demo](http://petstore.swagger.io/) to your API.
25+
The grape-swagger gem provides an autogenerated documentation for your [Grape](https://github.com/ruby-grape/grape) API. The generated documentation is Swagger-compliant, meaning it can easily be discovered in [Swagger UI](https://github.com/swagger-api/swagger-ui). You should be able to point [the petstore demo](http://petstore.swagger.io/) to your API.
2626

2727
![Demo Screenshot](example/swagger-example.png)
2828

@@ -35,7 +35,7 @@ This screenshot is based on the [Hussars](https://github.com/LeFnord/hussars) sa
3535
* [Grape Swagger Entity](https://github.com/ruby-grape/grape-swagger-entity)
3636
* [Grape Entity](https://github.com/ruby-grape/grape-entity)
3737
* [Grape Swagger Representable](https://github.com/ruby-grape/grape-swagger-representable)
38-
* [Swagger UI](https://github.com/wordnik/swagger-ui)
38+
* [Swagger UI](https://github.com/swagger-api/swagger-ui)
3939

4040

4141

@@ -95,14 +95,14 @@ module API
9595
end
9696
```
9797

98-
To explore your API, either download [Swagger UI](https://github.com/wordnik/swagger-ui) and set it up yourself or go to the [online swagger demo](http://petstore.swagger.wordnik.com/) and enter your localhost url documentation root in the url field (probably something in the line of http://localhost:3000/swagger_doc).
98+
To explore your API, either download [Swagger UI](https://github.com/swagger-api/swagger-ui) and set it up yourself or go to the [online swagger demo](http://petstore.swagger.io/) and enter your localhost url documentation root in the url field (probably something in the line of http://localhost:3000/swagger_doc).
9999

100100

101101

102102
## Model Parsers <a name="model_parsers"></a>
103103

104104
Since 0.21.0, `Grape::Entity` is not a part of grape-swagger, you need to add `grape-swagger-entity` manually to your Gemfile.
105-
Also added support for [representable](https://github.com/apotonick/representable) via `grape-swagger-representable`.
105+
Also added support for [representable](https://github.com/trailblazer/representable) via `grape-swagger-representable`.
106106

107107
```ruby
108108
# For Grape::Entity ( https://github.com/ruby-grape/grape-entity )
@@ -115,7 +115,7 @@ If you are not using Rails, make sure to load the parser inside your application
115115

116116
### Custom Model Parsers
117117

118-
You can create your own model parser, for example for [roar](https://github.com/apotonick/roar).
118+
You can create your own model parser, for example for [roar](https://github.com/trailblazer/roar).
119119

120120
```ruby
121121
module GrapeSwagger

0 commit comments

Comments
 (0)