Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/images_gallery.rb

Instance Method Summary collapse

Instance Method Details

#to_filenameObject

Sanitize a name so it can be used as part of an URL



7
8
9
# File 'lib/images_gallery.rb', line 7

def to_filename
  downcase.gsub(/\W/, '_').gsub(/_+/, '_').gsub(/_\Z/, '')
end