Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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: (
Expand Down Expand Up @@ -48,17 +48,16 @@ export let steps: Step[] = [
title: "Install Tailwind CSS",
body: (
<p>
Install the <code>tailwindcss-ruby</code> and <code>tailwindcss-rails</code> gems, and then run the install
command to set up Tailwind CSS in your project.
Install the <code>tailwindcss-rails</code> gem then run the install command to set up Tailwind CSS in your
project.
</p>
),

code: {
name: "Terminal",
lang: "shell",
code: shell`
./bin/bundle add tailwindcss-ruby
./bin/bundle add tailwindcss-rails
bundle add tailwindcss-rails
./bin/rails tailwindcss:install
`,
},
Expand Down