class Concurrency::Configuration
Attributes
api_key[RW]
from_currency[RW]
to_currency[RW]
Public Class Methods
new()
click to toggle source
# File lib/concurrency/configuration.rb, line 5 def initialize @from_currency = "USD" @to_currency = "INR" @api_key = ENV['CONCURRENCY_APIKEY'] end