1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 04:51:31 +03:00
mobile-nixos/boot/gui/lib/001-monkey-patches.rb
2020-02-28 23:14:09 -05:00

8 lines
132 B
Ruby

class File
def self.write(filename, contents)
File.open(filename, "w") do |file|
file.write(contents)
end
end
end