mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
9 lines
191 B
Ruby
9 lines
191 B
Ruby
|
require 'erb'
|
||
|
|
||
|
class ErbWrapper
|
||
|
def generate_file(template, data, output_file)
|
||
|
File.open(output_file, "w") do |f|
|
||
|
f << ERB.new(template, 0, "<>").result(binding)
|
||
|
end
|
||
|
end
|
||
|
end
|