Wasn't sure where I should post this but it took me a few hours to fix
so I wanted to leave the info for the next guy and for a few slight
changes in the gem docs:
1. Currently this is listed in the ReadMe (for google-api-ads-ruby,
google-adwords-api gem)
adwords = AdwordsApi::Api.new({
:authentication => {
:method => 'ClientLogin',
:developer_token => 'DEVELOPER_TOKEN',
:user_agent => 'Ruby Sample',
:password => 'PASSWORD',
:email => '
us...@domain.com'
:client_email => '
us...@domain.com'
},
:service => {
:environment => 'Production'
}
})
I believe there needs to be a comma after the email line like ":email
=> '
us...@domain.com',"
2. In the depracated version google-api-adwords-ruby, Issue 24 lists
problems with Ruby 1.9 due to Soap4r issues and the temporary fix of
editing the Soap4r gem here:
http://tomerdoron.blogspot.com/2009/10/fixing-soap4r-for-ruby-19.html
worked for me but just wanted to see if we could add that as an issue
for the google-api-ads-ruby (new version), google-adwords-api gem
Wasn't sure where to put this so figured I'd list it here. Thanks!