├── .gitignore ├── 000-cover.md ├── 001-preface.md ├── 002-who-is-this-book-for.md ├── 003-whats-in-this-book.md ├── 004-what-you-need.md ├── 005-online-resources.md ├── 006-acknowledgements.md ├── 007-copyright.md ├── 008-table-of-contents.md ├── 010-chapter-00.md ├── 020-chapter-01.md ├── 030-chapter-02.md ├── 040-chapter-03.md ├── 050-chapter-04.md ├── 060-chapter-05.md ├── 070-chapter-06.md ├── 080-chapter-07.md ├── 090-chapter-08.md ├── 100-chapter-09.md ├── 110-chapter-10.md ├── 120-chapter-11.md ├── 130-chapter-12.md ├── 140-chapter-13.md ├── 150-chapter-14.md ├── 999-outline.md ├── 999-scratchpad.md ├── README.md └── images ├── .gitkeep ├── active-remote-sequence-diagram.png ├── many-subscribers-sequence-diagram.png └── synchronous-and-event-driven-platform.png /.gitignore: -------------------------------------------------------------------------------- 1 | .bash_history 2 | .viminfo 3 | .DS_Store 4 | 5 | -------------------------------------------------------------------------------- /000-cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/000-cover.md -------------------------------------------------------------------------------- /001-preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/001-preface.md -------------------------------------------------------------------------------- /002-who-is-this-book-for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/002-who-is-this-book-for.md -------------------------------------------------------------------------------- /003-whats-in-this-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/003-whats-in-this-book.md -------------------------------------------------------------------------------- /004-what-you-need.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/004-what-you-need.md -------------------------------------------------------------------------------- /005-online-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/005-online-resources.md -------------------------------------------------------------------------------- /006-acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/006-acknowledgements.md -------------------------------------------------------------------------------- /007-copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/007-copyright.md -------------------------------------------------------------------------------- /008-table-of-contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/008-table-of-contents.md -------------------------------------------------------------------------------- /010-chapter-00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/010-chapter-00.md -------------------------------------------------------------------------------- /020-chapter-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/020-chapter-01.md -------------------------------------------------------------------------------- /030-chapter-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/030-chapter-02.md -------------------------------------------------------------------------------- /040-chapter-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/040-chapter-03.md -------------------------------------------------------------------------------- /050-chapter-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/050-chapter-04.md -------------------------------------------------------------------------------- /060-chapter-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/060-chapter-05.md -------------------------------------------------------------------------------- /070-chapter-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/070-chapter-06.md -------------------------------------------------------------------------------- /080-chapter-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/080-chapter-07.md -------------------------------------------------------------------------------- /090-chapter-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/090-chapter-08.md -------------------------------------------------------------------------------- /100-chapter-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/100-chapter-09.md -------------------------------------------------------------------------------- /110-chapter-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/110-chapter-10.md -------------------------------------------------------------------------------- /120-chapter-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/120-chapter-11.md -------------------------------------------------------------------------------- /130-chapter-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/130-chapter-12.md -------------------------------------------------------------------------------- /140-chapter-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/140-chapter-13.md -------------------------------------------------------------------------------- /150-chapter-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/150-chapter-14.md -------------------------------------------------------------------------------- /999-outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/999-outline.md -------------------------------------------------------------------------------- /999-scratchpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/999-scratchpad.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/README.md -------------------------------------------------------------------------------- /images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/active-remote-sequence-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/images/active-remote-sequence-diagram.png -------------------------------------------------------------------------------- /images/many-subscribers-sequence-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/images/many-subscribers-sequence-diagram.png -------------------------------------------------------------------------------- /images/synchronous-and-event-driven-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinwatson/rails-microservices-book/HEAD/images/synchronous-and-event-driven-platform.png --------------------------------------------------------------------------------