@@ -73,7 +73,7 @@ TIP: Any commands prefaced with a dollar sign `$` should be run in the terminal.
73
73
For this project, you will need:
74
74
75
75
* Ruby 3.2 or newer
76
- * Rails 8.0 .0 or newer
76
+ * Rails 8.1 .0 or newer
77
77
* A code editor
78
78
79
79
Follow the [ Install Ruby on Rails Guide] ( install_ruby_on_rails.html ) if you need
@@ -85,10 +85,10 @@ printed out:
85
85
86
86
``` bash
87
87
$ rails --version
88
- Rails 8.0 .0
88
+ Rails 8.1 .0
89
89
```
90
90
91
- The version shown should be Rails 8.0 .0 or higher.
91
+ The version shown should be Rails 8.1 .0 or higher.
92
92
93
93
### Creating Your First Rails App
94
94
@@ -181,7 +181,7 @@ your Rails application:
181
181
182
182
``` bash
183
183
=> Booting Puma
184
- => Rails 8.0 .0 application starting in development
184
+ => Rails 8.1 .0 application starting in development
185
185
=> Run ` bin/rails server --help` for more startup options
186
186
Puma starting in single mode...
187
187
* Puma version: 6.4.3 (ruby 3.3.5-p100) (" The Eagle of Durango" )
@@ -279,7 +279,7 @@ the migration does. This is located in
279
279
` db/migrate/<timestamp>_create_products.rb ` :
280
280
281
281
``` ruby
282
- class CreateProducts < ActiveRecord ::Migration [8.0 ]
282
+ class CreateProducts < ActiveRecord ::Migration [8.1 ]
283
283
def change
284
284
create_table :products do |t |
285
285
t.string :name
@@ -345,7 +345,7 @@ $ bin/rails console
345
345
You will be presented with a prompt like the following:
346
346
347
347
``` irb
348
- Loading development environment (Rails 8.0 .0)
348
+ Loading development environment (Rails 8.1 .0)
349
349
store(dev)>
350
350
```
351
351
@@ -354,7 +354,7 @@ printing out the Rails version:
354
354
355
355
``` irb
356
356
store(dev)> Rails.version
357
- => "8.0 .0"
357
+ => "8.1 .0"
358
358
```
359
359
360
360
It works!
0 commit comments