Sha256: 7cac3d9d2820a3d36d005011859a2069be1644f602c20e4eb3647d30c6dfc73d
Contents?: true
Size: 253 Bytes
Versions: 10
Compression:
Stored size: 253 Bytes
Contents
# encoding: UTF-8 module Anvil # Make sure that a file exists before running the task class FileAssure < Anvil::Assure def assured?(file) assure_exists? file end def assure_exists?(file) File.exists? file end end end
Version data entries
10 entries across 10 versions & 1 rubygems