diff --git a/src/app/(docs)/docs/installation/framework-guides/ruby-on-rails.tsx b/src/app/(docs)/docs/installation/framework-guides/ruby-on-rails.tsx index 4751ffe6a..84ddfa9c4 100644 --- a/src/app/(docs)/docs/installation/framework-guides/ruby-on-rails.tsx +++ b/src/app/(docs)/docs/installation/framework-guides/ruby-on-rails.tsx @@ -11,7 +11,7 @@ export let tile: Tile = { export let page: Page = { title: "Install Tailwind CSS with Ruby on Rails", - description: "Setting up Tailwind CSS in Ruby on Rails v7+ project.", + description: "Setting up Tailwind CSS in Ruby on Rails v8+ project.", // NOTE: This intro is not used currently but is here for reference as we'll want to bring it back once the rails gem is updated for a stable v4 release. intro: ( @@ -48,8 +48,8 @@ export let steps: Step[] = [ title: "Install Tailwind CSS", body: (

- Install the tailwindcss-ruby and tailwindcss-rails gems, and then run the install - command to set up Tailwind CSS in your project. + Install the tailwindcss-rails gem then run the install command to set up Tailwind CSS in your + project.

), @@ -57,8 +57,7 @@ export let steps: Step[] = [ name: "Terminal", lang: "shell", code: shell` - ./bin/bundle add tailwindcss-ruby - ./bin/bundle add tailwindcss-rails + bundle add tailwindcss-rails ./bin/rails tailwindcss:install `, },