Files | Admin

Notes:

Release Name: mechanize-0.4.4

Notes: = Mechanize Release Notes == 0.4.4 This release of mechanize comes with a new "Option" object that can be accessed from select fields on forms. That means that you can figure out what option to set based on the text in the select field. For example: selectlist = form.fields.name('selectlist').first selectlist.value = selectlist.options.find { |o| o.text == 'foo'}.value


Changes: == 0.4.4 * Fixed error in method signature, basic_authetication is now basic_auth * Fixed bug with encoding names in file uploads (Big thanks to Alex Young) * Added options to the select list