Module: Utils

Included in:
Command
Defined in:
lib/bridgetown-plugin-tailwindcss/utils.rb

Instance Method Summary collapse

Instance Method Details

#prepend_to_file(file, str) ⇒ Object



2
3
4
5
6
7
8
9
# File 'lib/bridgetown-plugin-tailwindcss/utils.rb', line 2

def prepend_to_file(file, str)
  File.open(file, 'w') do |open_file|
    open_file.puts(str)
    File.foreach(file) do |line|
      open_file.puts(line)
    end
  end
end