Articles of interest for Ruby on Rails
Displaying articles 101 - 125 of 5374 in totalArticle Sources
-
How to use Google Analytics gtag.js with Turbolinks & Webpacker
Learn how to add Google Analytics' gtag.js to Webpacker with Turbolinks support
Published:
-
StimulusJS, Active Storage and DropzoneJS
DropzoneJS is an open source library that provides drag’n’drop file uploads with image previews. It's lightweight, highly customizable and doesn't have any dependencies.
Published:
-
Benchmark Ruby Code
It's easy to accidentally write slow code in our applications. In this episode, we look at how we can benchmark our code and examples of some methods which are slower than others.
Published:
-
Advanced Flash Messages with Buttons & Actions in Rails
Flash messages are typically a simple string saying something succeeded or failed. What if we wanted to add buttons like you see in most applications? It's easier than you might think!
Published:
-
Testing Stripe Payments
Continuing from the previous episode, we add testing to the Stripe Payments without adding any additional dependencies.
Published:
-
How to Submit Complex Form Data in Ruby on Rails
It's a common situation that we need to submit complex data in our forms in our Rails apps. We'll explore how can we transform the simple values browser forms allow and convert them into something Rails can use and transform into Ruby objects.
Published:
-
Pre-Caching Image with React Suspense
Suspense is an exciting, upcoming feature of React that will enable developers to easily allow their components to delay rendering until they’re “ready,” leading to a much smoother user experience. “Ready,” in this context, can mean a number of things. For example, your data loading utility can tie into Suspense, allowing for consistent loading states to be displayed when any data are in flight, without needing to manually track loading state per query. Then, when your data are available, and … Read article “Pre-Caching Image with React Suspense”
Published:
-
Stripe Payments
The past tutorials look at creating subscriptions with Stripe, but in this episode, we look at using Stripe for a cart-like checkout system where nonrecurring orders can be placed.
Published:
-
Contributing To Thor
Thor is a tool in Ruby that powers command line tools like the Rails generators. In this video, we're fixing an unexpected situation that we found while using Thor.
Published:
-
PostgreSQL Hstore
The hstore data type is very useful in many cases, such as semi-structured data or rows with many attributes.
Published:
-
Row-level Multitenancy with ActsAsTenant
Row-level multitenancy is an easy, scalable approach to restricting access to data in your application between tenants. Using the acts_as_tenant gem, we can enforce this automatically throughout our Rails applications.
Published:
-
GitHub Actions
GitHub Actions makes it easy to automate all your software workflows, now with world-class CI/CD. Build, test, and deploy your code right from GitHub. In this episode, learn to set up GitHub Actions on your Ruby on Rails application with automated tests, code coverage reporting, and security testings.
Published:
-
How to Test Gem Dependencies with Appraisal
Appraisal lets us test our code against different versions of dependencies. This is fantastic if you're building Rubygems that must work with multiple versions of Rails or other dependencies
Published:
-
Using CloudFlare CDN
A look at serving the static assets within your Ruby on Rails application with the CloudFlare CDN. A broad look at the different configuration options and setting it up to serve image, javascript, HTML, and CSS assets.
Published:
-
Designing & Building the Noticed gem
Building a gem can be complicated. Often times you're writing abstract, meta code so it can be used flexibly in situations you'll never imagine. We'll talk about the architecture and design of the noticed gem and how it all works.
Published:
-
Active Storage Uploads Behind a CDN
Even fast websites can seem slow if it takes a while for the content to get to them. This can be partially solved with a Content Delivery Network (CDN). However, most resources usually only shows how to set up static assets and not uploaded content. Learn how to use Amazon CloudFront to cache and serve uploaded content from Active Storage.
Published:
-
How to add Notifications to Rails with Noticed
Noticed is my new gem for adding notifications to Rails apps. Notifications are really complicated to build and we've done the heavy lifting for you.
Published:
-
How to add Notifications to Rails with Noticed
Noticed is my new gem for adding notifications to Rails apps. Notifications are really complicated to build and we've done the heavy lifting for you.
Published:
-
Bulk Upload with Active Storage
When multiple files are uploaded with Active Storage, they are typically associated to a single record. In this episode, we take a different approach where each file uploaded should be its own record along with direct uploads.
Published:
-
How to translate and localize apps with Rails Internationalization (18n)
Translating and localizing your app is important to make it accessible to users around the world. Rails provides internationalization (I18n) tools to make this easier and it's got a lot of cool tricks available.
Published:
-
Cross-Origin Resource Sharing (CORS)
Cross-Origin Resource Sharing (CORS) is a mechanism that uses additional HTTP headers to tell browsers to give a web application running at one origin, access to selected resources from a different origin.
Published:
-
Realtime Group Chat with Rails [Revised] - Part 5
User mentions in group chat is a crucial feature, so this week we're taking a look at how to add @ mentions for our users in chat with regex and more.
Published:
-
Apple Silicon Developer Transition Kit
First look at the upcoming Apple Silicon processor and what it will be like for us Ruby Developers. Honestly, I wish that it was a better experience. However, with macOS Big Sur being beta and the DTK not being the final consumer hardware, there's still hope yet.
Published:
-
Realtime Group Chat with Rails [Revised] - Part 4
It's important to see that there are unread messages in channels you're not actively viewing. We can use a very simple event in ActionCable to do this and bold channel names with unread messages.
Published:
-
Marketplace Solution with Stripe Connect
Learn how to create a marketplace solution where merchants can sign up and take payments from their customers on your Ruby on Rails application.
Published: