I noticed in the unit tests that an API key is hardcoded. It's probably best to set the API key has an environment variable so people don't store it anywhere in the code.
For example:
Dota.configure do |config|
config.api_key = ENV['DOTA_API_KEY']
end
I noticed in the unit tests that an API key is hardcoded. It's probably best to set the API key has an environment variable so people don't store it anywhere in the code.
For example: