Skip to content

Instantly share code, notes, and snippets.

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 ryanlitalien/180c143cfd8f982996c6d0aab4de8ee9 to your computer and use it in GitHub Desktop.
Save ryanlitalien/180c143cfd8f982996c6d0aab4de8ee9 to your computer and use it in GitHub Desktop.
Convert Slim HTML to ERB
# Replace path
Dir.glob("/Users/ryan/dev/railsapp/**/*.slim") do |slim|
@html = slim.gsub(/\.slim\z/, '.erb')
`slimrb --erb --pretty #{slim} > #{@html}`
File.delete slim
puts "Made #{@html}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment