Skip to content

Instantly share code, notes, and snippets.

@bandogora
Last active April 25, 2022 21:03
Show Gist options
  • Save bandogora/b2fbb641e161fa2d6d02b78802d319c3 to your computer and use it in GitHub Desktop.
Save bandogora/b2fbb641e161fa2d6d02b78802d319c3 to your computer and use it in GitHub Desktop.
Replace all Rails instances of `.length` with `.size`
find ./app -type f -not -path './db/*' -iregex '.*.\(rb\|haml\|erb\)' -exec sed -ri 's/\.length([^_])/\.size\1/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment