| Offline |
Joined: Sat Oct 11, 2008 5:02 pm Posts: 1
Location: NYC
|
|
|
The API works great, but there are some small bugs in apicore.rb
Lines 259-289 of the domainResourceSave method in apicore.rb
has_key should be has_key?
(args[:Target]) should be (:Target)
All the downcase = should be downcase ==
otherwise you'll get syntax errors when trying to invoke the method..
./apicore.rb:279:in `domainResourceSave': undefined method `downcase=' for "A":String (NoMethodError)
./apicore.rb:260:in `domainResourceSave': undefined method `has_key' for #<Hash:0x7fec01b58200> (NoMethodError)
|
|