mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
bc735bbe22
- unified makefile project for the whole repos - new separate project for tests
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 |