views:

20

answers:

1

Hi guys, I'm not familiar with active_support, so bear with me!

Fox's library allows searching via google's APIs, but it requires active support. i can't seem to get it working though! Any ideas?

require 'rubygems'
require 'active_support'
require 'google_search'

p GoogleSearch.web :q => "Hello World!"

Gives me:

NoMethodError: undefined method ‘cattr_accessor’ for GoogleSearch:Class

Any ideas what I'm doing wrong?

+1  A: 

With more googling I found this answer - seems to work for me!

I'm now requiring: require 'active_support/all'

I hope this helps someone!

JP