TIL 5/22/2026

Published: (May 26, 2026 at 07:35 PM EDT)
1 min read
Source: Dev.to

Source: Dev.to

NoFoster

Rails X XCode Tips

  • When reading commands from a textbook, the \ in the command instruction line is usually just a line‑continuation marker. You don’t need it if you type the command on a single line.

  • Use the following command to remove an erroneous model:

    bin/rails destroy model sample_model_name
  • I have a tendency to type “customer” when I should be typing “custom”. Watch out for this mistake.

0 views
Back to Blog

Related posts

Read more »

TIL 5/27/2026

Process Overview - Include the devise gem in your Gemfile ruby gem 'devise' - Install the gem bash bundle install - Generate Devise files e.g., the users model...