PODCAST · technology
GoRails Screencasts
by Chris Oliver
GoRails is a series of screencasts and guides for all aspects of Ruby on Rails. Learn how to setup your machine, build a Rails application, and deploy it to a server.
-
399
Monitoring Cron Jobs with Whenever
The Whenever gem is fantastic for defining cron jobs. With a little customization, we can have it monitor cron jobs and report logs, and status to services like AppSignal.
-
398
ActiveRecord in_order_of
Learn how to order records by a column with a set of values
-
397
Normalize All ActiveRecord Attributes
Learn how to normalize all ActiveRecord attributes with a quick peak at the Rails source code.
-
396
Dynamic Partial Rendering
Learn how to dynamically render Rails partials using standard Rails behavior and model_name.plural when needed to clean up messy if/else conditionals in your views.
-
395
Clean Up Optional Attributes in Rails with Normalizes
Optional attributes are empty strings by default, but we can clean these up as nil in Rails using normalizes
-
394
valid with Context
Learn how to use validation contexts in Rails to conditionally validate models - like saving drafts without validation but requiring them when publishing.
-
393
Domain Monitor SaaS Introduction
A peek into the Domain Monitor SaaS product that we'll be building in this series with Rails, Stripe, Solid Queue, and Kamal.
-
392
Markdown Renderer & MIME Type in Rails 8.1
Rails 8.1 introduces a new Markdown MIME Type and renderer to better integrate your apps with AI and other tools that use Markdown
-
391
Module extend self
Using extend self inside a Ruby module makes all of its instance methods callable directly on the module itself, which is useful when you want a collection of utility-style methods without needing to instantiate an object.
-
390
Deploying Rails 8 with Hatchbox
Let's look at how we can easily deploy a Rails 8 application using the solid trifecta of gems with Hatchbox.
-
389
Rails 8.1 Local CI
Rails 8.1 introduced a local CI setup and run script that allows you to leverage the power of your local system to run a series of steps and optionally integrate with GitHub to sign off on pull requests that have a successful CI run.
-
388
Ruby Pattern Matching
In this episode, we will be looking at pattern matching in Ruby which lets you check the structure of data and save parts of it into variables.
-
387
Authentication Generator Test Helpers
The Rails Authentication generator is getting new test helpers. We'll take a look at how to use them with integration tests and how to extend them to work with system tests too.
-
386
How to use action_text-trix with Rails
Rails now ships the Trix editor as a separate gem (action_text-trix) instead of being included in ActionText. This allows for separate releases independently of Rails.
-
385
How to use Enumerable with Ruby Classes
Enumerable provides a suite of sorting, filtering, iterating functionality to any collection class in Ruby. It's easy to implement and use, so let's see how to use it.
-
384
How to add Lazy Load Hooks to Rails Plugins
To provide clean integrations with Rails plugins, we can use lazy load hooks to add callbacks for when classes are loaded.
-
383
How to use CodeMirror with ImportMaps
Learn how to use the CodeMirror editor in your browser using Importmaps.
-
382
How to use params.expect in Rails 8+
Rails 8 introduces a new expect method for permitting parameters that fixes a few of the issues with require and permit. Let's take a look!
-
381
What is 'it' in Ruby 3.4
Ruby 3.4 added 'it' to reference a block parameter with no variable name. Let's check it out!
-
380
Live Reloading with Hotwire Spark
Hotwire Spark is a new live reloading tool for Hotwire applications that uses morphing to update the page smoothly.
-
379
Creating a Ruby Gem for Black Friday sales
Black Friday is a popular shopping holiday every year. In this lesson, we'll build a Ruby gem to help automate our Black Friday sales each year.
-
378
How To Use Importmaps With Rails
Import maps are great, but how do they work? In this lesson, we'll demystify import maps and see how they integrate with Rails' asset pipeline.
-
377
How to Configure Multiple Databases with Rails
Rails 8 now ships with multiple databases by default. In this lesson, we'll learn how the configuration works and how to deploy to production with environment variables
-
376
How To Add Impersonation To Rails Authentication Generator
The Rails authentication generator is an awesome new addition with Rails 8 so let's explore how we can customize it to support user impersonation.
-
375
Customizing Rubocop Rails Omakase Rules
Rubocop Rails Omakase is just a starting place and provides a handful of rules.
-
374
Tests Without Assertions Warning in Rails 7.2
Rails 7.2 now warns if any test runs without assertions. It helps make tests that may raise errors more explicit and less prone to mistakes.
-
373
How to use Omakase Rubocop Linter/Formatter Rules for Rails
Formatting Ruby code can be a point of contention because the language is so flexible, but it
-
372
Defer Job Enqueues After Transaction Commit in Rails 7.2
Enqueuing jobs inside of a database transaction is a common mistake that's now handled for you automatically in Rails 7.2
-
371
How to use the Browser Guard in Rails
The new browser guard in Rails 7.2 allows you to gate access to your application if a user is not using a modern browser.
-
370
How to use Dev Containers with Rails
Installing dependencies to develop and run your Rails applications locally can be a pain.
-
369
How to Rate Limit Requests in Rails 7.2
Rails 7.2 introduced a new rate limit feature that uses the Rails cache for preventing abuse of routes in your applications.
-
368
Adding Honeybadger Insights To The RubyGem
Honeybadger's new Insights feature is awesome but required manually editing the yaml file to enable. Let's make a pull request to automate this.
-
367
Adding Timeouts to net-ssh with Mike Perham
In this lesson, we'll dive into some code to add timeouts for an issue with net-ssh with the help of Mike Perham
-
366
Limiting & Clamping Values in Ruby
Sometimes you need user input to be restricted to a certain range or limited like "greater than zero". While you can do this with conditionals, there are some useful tricks to do this better in Ruby.
-
365
Rubygems Trusted Publishing
Rubygems.org released a new feature called Trusted Publishing which allows you to release gems directly from GitHub Actions without requiring 2FA or long-lived API tokens. Let's see how it works!
-
364
Refactoring Local Variables To Methods
Sometimes you write code to get a feature working and stop there. With a little refactoring, you can extract local variables into methods that make testing and extending easier.
-
363
One Time Payments With Pay And Stripe
In this episode, we will learn about handling one-time payments with the Pay gem and Stripe embedded checkout. This is a great approach for non-recurring payments and can be implemented very quickly.
-
362
Changing Contexts To Objects With IRB
In this video, you'll learn about a feature of IRB, which is the ability to change context into an object.
-
361
ActionController Modules in Rails
Ever wondered how Rails controllers get their functionality? Let's see how we can add translation support to Rails API controllers by looking at the Rails source
-
360
Components with Phlex in Rails
Adam McCrea walks through using Phlex to build components for views in your Rails applications. Phlex is a Ruby gem for building fast object-oriented HTML and SVG components using Ruby constructs: methods, keyword arguments and blocks.
-
359
How to use Mission Control Jobs in Rails
Mission Control Jobs is a UI for ActiveJob in Rails. It was announced at Rails World 2023 and just got released. It currently supports SolidQueue and Resque with more queue adapter support in the future.
-
358
Single Table Inheritance (STI) with ActiveRecord in Rails
Have models that store the same data but need different functionality? Rails provides Single Table Inheritance in ActiveRecord to solve this problem.
-
357
Send Notifications in Rails with Noticed gem v2
Notifications in Rails applications are even easier now with the new release of Noticed gem v2. We'll explore how to add notifications to your Rails app in just a few minutes.
-
356
What's New In Ruby 3.3
Ruby 3.3.0 was released today and this lesson we're diving into the goodies included in the new version.
-
355
Syncing Repositories with Ruby Scripts - Part 2
In this lesson, we will pick up where we left off in the last part and package up our script into a gem that we can share. Along the way, we'll look at how we can spread responsibility across a few small classes to separate concerns and hopefully make the
-
354
How to use Solid Queue in Rails with Active Job
Solid Queue is a database backed queue adapter for ActiveJob in your Rails apps. Instead of requiring an additional service like Redis, jobs are managed in the database itself and it's compatible with PostgreSQL, MySQL, and SQLite.
-
353
Syncing Repositories with Ruby Scripts - Part 1
In this lesson, we will be looking at getting a v1 of a Ruby script that will fetch, pull, and push across several repositories and remotes to keep our code up-to-date. Hopefully, it will give you ideas for other areas in your workflow where a simple Ruby
-
352
Template Locals in Rails 7.1
Discover how the new template locals work in Rails 7.1
-
351
HTML Learning Path - What is HTML and Why Learn It
In this lesson, we will learn what HTML is and why we need to know about it.
-
350
HTML Learning Path - HTML Document Structure
In this lesson, we will learn about the basic structure of HTML documents.
We're indexing this podcast's transcripts for the first time — this can take a minute or two. We'll show results as soon as they're ready.
No matches for "" in this podcast's transcripts.
No topics indexed yet for this podcast.
Loading reviews...
ABOUT THIS SHOW
GoRails is a series of screencasts and guides for all aspects of Ruby on Rails. Learn how to setup your machine, build a Rails application, and deploy it to a server.
HOSTED BY
Chris Oliver
CATEGORIES
Loading similar podcasts...