Agile Web Development with Rails 7: (PDF p. 14) (solved)

The book states (in the section ‘Editors’, p 14):

  • a newly created Rails application enters the world containing forty-six files spread across thirty-four directories.

I wonder which files/folders where counted. On my system (without a Redis or PostgreSQL server running), I get these numbers:

> find . -type d | grep -v "\/\(tmp\)\|\(git\)\/" | wc -l
      45
> find . -type f | grep -v "\/\(tmp\)\|\(git\)\/" | wc -l
      77

in a newly cerated Rails 7.0.1 app.
Am I counting the right things? Has the number changed?

Fixed. Thanks!