Skip to content

Commit 37de353

Browse files
Update installation guide for Ruby on Rails v8 (#2371)
* Update installation guide for Ruby on Rails v8 Just updating the documentation as there's no `bundle` inside the `bin` folder in Ruby on Rails 8. * Fix command syntax and update installation instructions --------- Co-authored-by: Jordan Pittman <[email protected]>
1 parent f51354b commit 37de353

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/app/(docs)/docs/installation/framework-guides/ruby-on-rails.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export let tile: Tile = {
1111

1212
export let page: Page = {
1313
title: "Install Tailwind CSS with Ruby on Rails",
14-
description: "Setting up Tailwind CSS in Ruby on Rails v7+ project.",
14+
description: "Setting up Tailwind CSS in Ruby on Rails v8+ project.",
1515

1616
// 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.
1717
intro: (
@@ -48,17 +48,16 @@ export let steps: Step[] = [
4848
title: "Install Tailwind CSS",
4949
body: (
5050
<p>
51-
Install the <code>tailwindcss-ruby</code> and <code>tailwindcss-rails</code> gems, and then run the install
52-
command to set up Tailwind CSS in your project.
51+
Install the <code>tailwindcss-rails</code> gem then run the install command to set up Tailwind CSS in your
52+
project.
5353
</p>
5454
),
5555

5656
code: {
5757
name: "Terminal",
5858
lang: "shell",
5959
code: shell`
60-
./bin/bundle add tailwindcss-ruby
61-
./bin/bundle add tailwindcss-rails
60+
bundle add tailwindcss-rails
6261
./bin/rails tailwindcss:install
6362
`,
6463
},

0 commit comments

Comments
 (0)