in lib/twurl/cli.rb [244:255]
def raw_data
on('-r', '--raw-data [data]', 'Sends the specified data as it is in a POST request to the HTTP server.') do |data|
if options.raw_data
raise Exception, "ERROR: can't specify '-r' option more than once"
elsif options.args.include?('-d') || options.args.include?('--data')
raise Exception, "ERROR: can't use '-r' and '-d' options together"
end
options.raw_data = true
options.data = data
end
end