shippinglogic
shippinglogic copied to clipboard
Simple and straight forward interfaces to the various shipping web services
On a call for UPS Rates I got this error: NameError: uninitialized constant Shippinglogic::UPS::Rate::Enumerations I was able to fix this by requiring Enumerations in lib/shippinglogic/ups.rb
I get an _ArgumentError: wrong number of arguments (1 for 2)_ when creating a ups.ship object as in the code snippet below. I get a different trace depending on which...
Simple change to make the UPS rate requests work. Need to add require "shippinglogic/ups/enumerations" at the top of UPS.rb to solve the problem where: Enumerations::SERVICE_TYPES[details[:service][:code]] is called on line 218...
added fedex address validation services: http://github.com/computadude/shippinglogic feel free to use it. thanx
I get this error when I try to track a package. Seems like the library is trying to use an Array as a Hash or something like that. ?> fedex...
If I open up irb and try shippinglogic, I get: >> require 'shippinglogic' NameError: undefined method `==' for class `ActiveSupport::BasicObject' from /Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/basic_object.rb:12:in `undef_method' from /Library/Ruby/Gems/1.8/gems/activesupport-2.3.4/lib/active_support/basic_object.rb:12 from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require' ....... But...