module Really::Commands::TextFileCommands

Public Instance Methods

append_text_to_file(text, file, options = {}) click to toggle source
# File lib/really/commands/text_file_commands.rb, line 4
def append_text_to_file(text, file, options = {})
  # FIXME: implement
  command "echo 'we should append some text to '#{file}' here!'", options
end
prepend_text_to_file(text, file, options = {}) click to toggle source
# File lib/really/commands/text_file_commands.rb, line 9
def prepend_text_to_file(text, file, options = {})
  # FIXME: implement
  command "echo 'we should prepend some text to '#{file}' here!'", options
end