View json_gem_coder.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class JSONGemCoder | |
def self.dump(obj) | |
::JSON.dump(obj) | |
end | |
def self.load(json) | |
::JSON.load(json) | |
end | |
end |
View rates.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Rates | |
# options should include: | |
# => height | |
# => length | |
# => width | |
# => weight | |
# => origin_post_code | |
# => origin_country | |
# => destination_post_code | |
# => destination_country |