In the tutorial by example, the code listed:
session.upload('testfile.txt')
uploaded_file = session.file('testfile.txt', '/')
Being new to this gem, I think the two command parameters are swapped and should be:
session.upload('testfile.txt', '/')
uploaded_file = session.file('/testfile.txt')
In the tutorial by example, the code listed: session.upload('testfile.txt') uploaded_file = session.file('testfile.txt', '/')
Being new to this gem, I think the two command parameters are swapped and should be: session.upload('testfile.txt', '/') uploaded_file = session.file('/testfile.txt')
Thanks!