MacOS-X、SeleniumをRubyで書いてChromeを動かそうとしているのですが、うまくいきません。RubyとSeleniumのインストールまではうまくいったのですが、ChromeDriverのインストールでハマっています。
具体的には、irbで

require "selenium-webdriver"
driver = Selenium::WebDriver.for :Chrome

とやっても

Selenium::WebDriver::Error::WebDriverError: Unable to find the chromedriver executable. Please download the server from http://chromedriver.storage.googleapis.com/index.html and place it somewhere on your PATH. More info at http://code.google.com/p/selenium/wiki/ChromeDriver.
    from /Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver/chrome/service.rb:20:in `executable_path'
    from /Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver/chrome/service.rb:33:in `default_service'
    from /Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver/chrome/bridge.rb:14:in `initialize'
    from /Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver/common/driver.rb:37:in `new'
    from /Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver/common/driver.rb:37:in `for'
    from /Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver.rb:67:in `for'
    from (irb):3
    from /usr/bin/irb:12:in `<main>'

と怒られてしまいます。

ネットでもいろいろ調べてみたのですがうまくいきません。
Chromedriverは

/Library/Ruby/Gems/2.0.0/gems/selenium-webdriver-2.45.0/lib/selenium/webdriver/

に置いてあり、.bashrcにこのディレクトリへのパスも記述してあります。

あと何がいけないのでしょうか。