Skip to content

Instantly share code, notes, and snippets.

@giljr
Created October 30, 2025 15:28
Show Gist options
  • Save giljr/ecad2fe067ddcf8b6988b3a408b1ebaa to your computer and use it in GitHub Desktop.
Save giljr/ecad2fe067ddcf8b6988b3a408b1ebaa to your computer and use it in GitHub Desktop.
vim cmds tutorial [TODO]
Category πŸ‘ πŸ’¬ Notes
Bundler & vendor βœ… /vendor/* and .bundle correctly ignored.
Environment files βœ… You’re ignoring .env and .env.* β€” good for security.
Logs & tempfiles βœ… Includes .keep exceptions β€” perfect for Rails conventions.
PID & storage dirs βœ… Very clean setup for /tmp/pids and /storage.
Public assets βœ… /public/assets is safely ignored β€” prevents committing precompiled assets.
Credentials βœ… /config/master.key excluded β€” essential for Rails.
RSpec artifacts βœ… /spec/examples.txt, /.rspec_status, /coverage/ all included. Perfect.
Build & executables βœ… /bin/ and /pkg/ β€” good call for pure Ruby packaging.
Editor/OS cruft βœ… .vscode/, .idea/, .DS_Store, Thumbs.db all covered.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment