9 lines
178 B
Ruby
9 lines
178 B
Ruby
module ApplicationHelper
|
|
# Used to render svg image files
|
|
def show_svg(path)
|
|
File.open("app/assets/images/#{path}", 'rb') do |file|
|
|
raw file.read
|
|
end
|
|
end
|
|
end
|