Leanpub Header

Skip to main content

The Rails 8 Way

The Rails™ 8 Way is the comprehensive, authoritative reference guide for professionals delivering production-quality code using modern Ruby on Rails. It illuminates the entire Rails 8 API, its most powerful idioms, design approaches, and libraries. Building on the previous editions, this edition has been heavily refactored and updated.

The authors are letting you choose the price you pay for this book!

Pick Your Price...
PDF
EPUB
WEB
594
Readers
367
Pages
93,983Words
About

About

About the Book

With a foreword written by Eileen M. Uchitelle, Rails Core Team

“When I read The Rails Way for the first time, I felt like I truly understood Rails for the first time.”—Steve Klabnik, Rails contributor and mentor

The Rails™ 8 Way is the comprehensive, authoritative reference guide for professionals delivering production-quality code using modern Ruby on Rails. It illuminates the entire Rails 8 API, its most powerful idioms, design approaches, and libraries. Building on the previous editions, this edition has been heavily refactored and updated. Rails 8 has the following big themes:

  • “Easier Deployments” is basically the release subtitle. A fresh Rails application now comes with a Dockerfile ready for production traffic. Thruster is a reverse proxy that will take the incoming requests into your Docker container, which then sends the traffic to an application server like Puma. It adds HTTP/2 support, automatic TLS certificate management, and serves your static files efficiently. Kamal is a deployment tool like Capistrano for a dockerized application. It configures a fresh Linux box to run your application behind the new Kamal Proxy for zero-downtime deployments.
  • “No Redis required” is the second big theme. For years, most Rails applications had their primary database (like Postgres) plus Redis as their sidekick. Solid Cache is an Active Support cache store, and Solid Cable is an Action cable adapter. Both use your database instead of Redis (or memcached). The third library is Solid Queue, an Active Job adapter that works similar to GoodJob (the adapter we recommended in previous editions). Compared to GoodJob, Solid Queue has one advantage: It also works with MySQL and SQLite.

Through the detailed code examples in this book, you’ll dive deep into Ruby on Rails, discover why it’s designed as it is, and learn to make it do exactly what you want. Proven in thousands of production systems, the knowledge in this book will maximize your productivity and help you build more successful solutions.

  • Build powerful, scalable, REST-compliant back-end services
  • Program complex program flows using Action Controller
  • Represent models, relationships, and operations in Active Record, and apply advanced Active Record techniques
  • Smoothly evolve your database schema via Migrations
  • Build your assets with the asset pipelines
  • Optimize performance and scalability with caching
  • Improve your productivity using Haml templating
  • Secure your systems against attacks like SQL Injection, XSS, and XSRF
  • Integrate email using Action Mailer and Action Mailbox
  • Improve responsiveness with background processing
  • Build “API-only” back-end projects that speak JSON
  • Store your files in the cloud via Active Storage

After all the additions we made to The Rails 7 Way, it became clear that the book had turned into a tome. As we still have more things to share, we decided to split the book into three parts. This here is the first book, going over the entire framework. Apart from that, we have two more books coming soon:

Share this book

Categories

Price

Pick Your Price...

Minimum price

$24.00

$49.00

You pay

$49.00

Authors earn

$39.20
$

All prices are in US $. You can pay in US $ or in your local currency when you check out.

EU customers: prices exclude VAT, which is added during checkout.

...Or Buy With Credits!

Number of credits (Minimum 2)

2
The author will earn $24.00 from your purchase!
You can get credits monthly with a Reader Membership

Author

About the Authors

Lucas Dohmen

Experienced software engineer and team lead, systems architect, consultant and trainer. Two decades’ worth of experience across different technologies and organizations. Co-author of “The Rails Way” book series. Seasoned conference speaker and podcaster. Founder and maintainer of multiple open-source projects. I particularly enjoy collaborating remotely and asynchronously, helping people and organizations grow their potential.

Tom Henrik Aadland

Tom is a Business Architect at Ørn Software where he is building the bridge between business strategy and development. 

Tom was an early adopter and advocate of Rails, specialising in it since 2006. During his spare time he enjoys travelling, reading and music. One of his adventures led him to Argentina Buenos Aires where he spent a decade, pioneering in remote working and living life as a digital nomad before the term was even coined. There he was the founder of the first Rails conference in the Southern Cone, Locos por Rails 2009. When he is not working on some project he spends his time with his wife and two kids.

Obie Fernandez

The "one and only" Obie Fernandez is an avid writer and technology enthusiast, in addition to achieving worldwide success as an electronic music producer and touring DJ. He is a Principal Engineer at Shopify and boasts a legendary 30 year career in software development and entrepreneurship.

Obie has been CTO and co-founder of many startups including Mark Zuckerberg's beloved Andela and Trevor Owen's Lean Startup Machine. His published books include Patterns of Application Development Using AI many editions of The Rails Way and the acclaimed business title The Lean Enterprise. He also founded one of the world's best known Ruby on Rails web design and development agencies, Hashrocket and served for many years as the series editor for Addison-Wesley's Professional Ruby Series.

On the rare occasion when Obie is not busy building products, consulting clients or writing books, you can find him behind the lens of his camera or DJing in the dust at Burning Man.

Follow @obie on Twitter or email him at obiefernandez@gmail.com 

Leanpub Podcast

Episode 24

An Interview with Obie Fernandez

Contents

Table of Contents

Foreword (Rails 7 Way)

  1. Cover

About the Authors

Acknowledgments

Introduction

  1. Goals
  2. Prerequisites
  3. Book Structure
  4. Licenses, Attributions and Trademark Notice

Rails Configuration and Environments

  1. Generating a new Rails Application
  2. Bundler
  3. RSpec and Haml
  4. JavaScript and CSS
  5. Foreman and Overmind
  6. Running a Rails application
  7. Common Settings
  8. Zeitwerk
  9. Development Mode
  10. Test Mode
  11. Production Mode
  12. Configuring Application Secrets
  13. Configuring a Database
  14. Health Controller
  15. Logging
  16. Default Gems
  17. Dependency Updates
  18. Static Code Analysis
  19. TLS (Transport Layer Security)
  20. Rack
  21. Conclusion

Routing

  1. The Two Purposes of Routing
  2. The routes.rb File
  3. Named Routes
  4. Scoping Routing Rules
  5. Listing Routes
  6. Conclusion

REST, Resources, and Rails

  1. REST in a Rather Small Nutshell
  2. Resources and Representations
  3. REST in Rails
  4. Routing and CRUD
  5. The Standard RESTful Controller Actions
  6. Singular Resource Routes
  7. Nested Resources
  8. Routing Concerns
  9. RESTful Route Customizations
  10. Controller-Only Resources
  11. Different Representations of Resources
  12. The RESTful Rails Action Set
  13. Conclusion

Working with Controllers

  1. Action Dispatch: Where It All Begins
  2. Parameters
  3. Render onto View…
  4. Additional Layout Options
  5. Redirecting
  6. Controller/View Communication
  7. Action Callbacks
  8. Streaming
  9. The respond_to Method
  10. Allow Browsers
  11. Rate Limiting
  12. Caching
  13. Conclusion

Cookies, Session Management and the Flash

  1. Cookies
  2. Session
  3. The Flash
  4. What to Store in a Cookie
  5. What to Store in the Session
  6. Conclusion

Action View & Haml

  1. Haml
  2. Layouts and Templates
  3. Partials
  4. Conclusion

Active Record

  1. Creating Migrations
  2. Defining Columns
  3. Schema and Sequencing
  4. Seeding
  5. Database-Related Tasks
  6. Working with Active Record
  7. Model Mass-assignment Attributes Protection
  8. SQL Injection
  9. Conclusion

Internationalization

  1. Localized Views
  2. I18n Setup
  3. Setting and Passing the Locale
  4. Setting Locale from Client Supplied Information
  5. Internationalizing Your Application
  6. Organization of Locale Files
  7. Looking Up Translations
  8. How to Store Your Custom Translations
  9. Exception Handling
  10. Conclusion

Forms

  1. Building forms with form_with
  2. Form Inputs
  3. Conclusion

RSpec

  1. Introduction
  2. Behavior-Driven Development
  3. Basic Syntax and API
  4. Custom Expectation Matchers
  5. Helper Methods
  6. Shared Behaviors
  7. Shared Context
  8. Test Doubles
  9. Running Specs
  10. Testing Tool Belt
  11. Conclusion

Authentication and Authorization

  1. Devise
  2. Pundit
  3. Conclusion

Active Storage

  1. Setup
  2. Uploading Files
  3. Representations and Variants
  4. Removing Files
  5. Production

Background Processing

  1. Active Job
  2. Queueing Backends
  3. Conclusion

Sending and Receiving Mails

  1. Mailer Models
  2. Previews
  3. Configuration
  4. Action Mailbox
  5. Conclusion

Cache Store

  1. Cache Storage
  2. Initializing New Caches
  3. Fragment Caching
  4. Generational Caching
  5. Collection Caching
  6. Conditional Caching
  7. Expiration of Cached Content
  8. Automatic Cache Expiry with Sweepers
  9. Cache Logging

Deployment

  1. Our application in production
  2. Kamal
  3. Platform as a Service
  4. Conclusion

Wrap Up

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

Earn $8 on a $10 Purchase, and $16 on a $20 Purchase

We pay 80% royalties on purchases of $7.99 or more, and 80% royalties minus a 50 cent flat fee on purchases between $0.99 and $7.98. You earn $8 on a $10 sale, and $16 on a $20 sale. So, if we sell 5000 non-refunded copies of your book for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earned over $14 million writing, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub