I'm in trouble to convert the curl code below to ruby using Rest-Client library.
curl code:
curl https://my_url -u user_token: -F "data[price]=$ 100,00"
Ruby code that I tried without success:
request = RestClient.new 'https://my_url', user: user_token, password: pwd
request.post :data => { :price => '$ 100,00' }, :multipart => true, :verify_ssl => true