Mechanize 2.3 でカスタム ヘッダーを設定する簡単な方法はありますか?
以前の解決策を試しましたが、次のようになります。
$agent = Mechanize.new
$agent.pre_connect_hooks << lambda { |p|
p[:request]['Referer'] = 'https://wwws.mysite.com/cgi-bin/apps/Main'
}
# ./mech.rb:30:in `<main>': undefined method `pre_connect_hooks' for nil:NilClass (NoMethodError)