awscosts
awscosts copied to clipboard
Programmatic access to AWS pricing
When attempting to use the following: ``` def get_region_cost(region) return AWSCosts.region(region).ec2.on_demand(:linux).price end ``` I found that certain regions cause the following error: ``` test.rb:22:in `get_region_cost': undefined method `ec2' for nil:NilClass...
Hi, i am currently using this ruby library, and there are lots of missing missing ec2 families (m4, m3, c4 etc..) . I saw that each implementation of on_demand and...
In https://github.com/srbartlett/awscosts/commit/82ce80d9e8e0e08a43bb9cd40e241fa544463a24 you switched to using oj, which means when this gem is used in JRuby it requires C extensions to be enabled. Was there any specific reason for oj?...