Skip to content

Instantly share code, notes, and snippets.

@plombix
Created August 31, 2016 11:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plombix/f103456d6709ed3b52f337728083d7d8 to your computer and use it in GitHub Desktop.
Save plombix/f103456d6709ed3b52f337728083d7d8 to your computer and use it in GitHub Desktop.
Basic ruby string operation to find if file is '.erb' or not
class String
def erb?
self[-3..-1] == "erb"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment