Skip to content

Commit e5ff7c0

Browse files
committed
Grammarly cleanup
1 parent 4ecab55 commit e5ff7c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1319
-1320
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<img src="rails6/fr/img/logo.svg" alt="Api on Rails 6" />
33
</h1>
44

5-
Learn **best practices** to build an **API** using **Ruby on Rails** 5/6. The intention with this book its not only to teach you how to build an API with Rails. The purpose is also to teach you how to build **scalable** and **maintainable** API with Rails which means **improve** your current Rails knowledge. In this book you will learn to:
5+
Learn **best practices** to build an **API** using **Ruby on Rails** 5/6. The intention with this book it's not only to teach you how to build an API with Rails. The purpose is also to teach you how to build **scalable** and **maintainable** API with Rails which means **improve** your current Rails knowledge. In this book you will learn to:
66

77
- Build JSON responses
88
- Use Git for version controlling
99
- Testing your endpoints
1010
- Optimize and cache the API
1111

12-
This book is based on ["APIs on Rails: Building REST APIs with Rails"](http://apionrails.icalialabs.com/book/). It was initially published in 2014 by [Abraham Kuri](https://twitter.com/kurenn). Since the original work was not maintained, I wanted to update this excellent work. All the source code of this book is available in [Asciidoctor](https://asciidoctor.org/) format on this repository. So dont hesitate to [fork the project](https://github.com/madeindjs/api_on_rails/fork) if you want to improve it or fix a mistake that I didnt notice.
12+
This book is based on ["APIs on Rails: Building REST APIs with Rails"](http://apionrails.icalialabs.com/book/). It was initially published in 2014 by [Abraham Kuri](https://twitter.com/kurenn). Since the original work was not maintained, I wanted to update this excellent work. All the source code of this book is available in [Asciidoctor](https://asciidoctor.org/) format on this repository. So don't hesitate to [fork the project](https://github.com/madeindjs/api_on_rails/fork) if you want to improve it or fix a mistake that I didn't notice.
1313

1414
Update & translation of the [API on Rails (EN)](http://apionrails.icalialabs.com/book) book. This book is written using [Asciidoctor](https://asciidoctor.org).
1515

@@ -29,23 +29,23 @@ Or you can support me with Liberapay: <noscript><a href="https://liberapay.com/a
2929

3030
## Build book
3131

32-
~~~bash
32+
```bash
3333
$ git clone https://github.com/madeindjs/api_on_rails/
3434
$ cd api_on_rails
3535
$ bundle install
3636
$ rake "build:pdf[6,fr]"
37-
~~~
37+
```
3838

3939
You can see all build available with `rake -T`
4040

41-
~~~bash
41+
```bash
4242
$ rake -T
4343
rake "build:all[version,lang]" # Build all versions
4444
rake "build:epub[version,lang]" # Build an EPUB version
4545
rake "build:html[version,lang]" # Build an HTML version
4646
rake "build:mobi[version,lang]" # Build a MOBI version
4747
rake "build:pdf[version,lang]" # Build a PDF version
48-
~~~
48+
```
4949

5050
## License
5151

rails5/en/api_on_rails.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= API on Rails 5
22
Alexandre Rousseau <contact@rousseau-alexandre.fr>
3-
v6.0.4, 2019-11-08
3+
v6.12, 2020-12-20
44
:doctype: book
55
:toc:
66
:imagesdir: img
@@ -14,7 +14,7 @@ v6.0.4, 2019-11-08
1414
:author: Alexandre Rousseau
1515
:description: Learn best practice to build an API using Ruby on Rails 5
1616
:front-cover-image: image:cover.svg[]
17-
:revdate: 2019-11-08
17+
:revdate: 2020-12-20
1818

1919
include::chapter00-before.adoc[]
2020

rails5/en/chapter00-before.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Since the original work was not maintained, I wanted to update this excellent wo
1111

1212
https://twitter.com/kurenn[Abraham Kuri] is a Rails developer with 5 years of experience (probably more now). His experience includes working as a freelancer in software product development and more recently in collaboration within the open source community. A graduate in computer science from ITESM, he founded two companies in Mexico (http://icalialabs.com/[Icalia Labs] and http://codeandomexico.org/[Codeando Mexico]).
1313

14-
On my side, my name is http://rousseau-alexandre.fr[Alexandre Rousseau] and I am a Rails developer with more than 4 years of experience (at the time of writing). I am currently a partner in a company (https://isignif.fr[iSignif]) where I build and maintain a SAAS product using Rails. I also contribute to the Ruby community by producing and maintain some gems that you can consult onhttps://rubygems.org/profiles/madeindjs[my Rubygems.org profile]. Most of my projects are on GitHub so dont http://github.com/madeindjs/[hesitate to follow me].
14+
On my side, my name is http://rousseau-alexandre.fr[Alexandre Rousseau] and I am a Rails developer with more than 4 years of experience (at the time of writing). I am currently a partner in a company (https://isignif.fr[iSignif]) where I build and maintain a SAAS product using Rails. I also contribute to the Ruby community by producing and maintain some gems that you can consult onhttps://rubygems.org/profiles/madeindjs[my Rubygems.org profile]. Most of my projects are on GitHub so don't http://github.com/madeindjs/[hesitate to follow me].
1515

16-
All the source code of this book is available in https://asciidoctor.org/[Asciidoctor] format on https://github.com/madeindjs/api_on_rails[GitHub]. So dont hesitate to https://github.com/madeindjs/api_on_rails/fork[forke] the project if you want to improve it or fix a mistake that I didnt notice.
16+
All the source code of this book is available in https://asciidoctor.org/[Asciidoctor] format on https://github.com/madeindjs/api_on_rails[GitHub]. So don't hesitate to https://github.com/madeindjs/api_on_rails/fork[forke] the project if you want to improve it or fix a mistake that I didn't notice.
1717

1818
== Copyright and license
1919

20-
This book is provided on http://opensource.org/licenses/MIT[MIT license]. All the books source code is available on https://fr.wikipedia.org/wiki/Markdown[Markdown] format on https://github.com/madeindjs/api_on_rails[GitHub]
20+
This book is provided on http://opensource.org/licenses/MIT[MIT license]. All the book's source code is available on https://fr.wikipedia.org/wiki/Markdown[Markdown] format on https://github.com/madeindjs/api_on_rails[GitHub]
2121

2222
.MIT license
2323
****

0 commit comments

Comments
 (0)