Inject A Version Number Before A File Extension In Ruby (2 One Liners)
DZone's Guide to
Inject A Version Number Before A File Extension In Ruby (2 One Liners)
Join the DZone community and get the full member experience.
Join For FreeQuick way to add a version to a file name in ruby. I use it for when I'm bulk renaming javascript/stylesheets to force updates...
path = path.split('.').insert(-2,@the_version).join('.')
# or
path.insert(-(File.extname(path).length+1),@the_version)
Topics:
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}