Files
old-saburly-confighub/web/app/helpers/application_helper.rb
2016-02-21 20:31:56 +01:00

12 lines
245 B
Ruby

module ApplicationHelper
def pull_command(file)
url = pull_file_url(file)
"curl -o #{file.file_path} #{url}"
end
def push_command(file)
url = push_file_url(file)
%Q{ curl -F "content=@#{file.file_path}" #{url} }
end
end