Showing 33 of 33 total issues
Method raw_exchange_rates
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def raw_exchange_rates req = Net::HTTP::Post.new(@uri, 'Content-Type' => 'application/json') req.body = { lang: :en }.to_json response = Net::HTTP.start(@uri.hostname, @uri.port) do |http| http.request(req)
- Read upRead up
Method parse
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def parse(raw_data) raw_data.each_with_object(sell: {}, buy: {}) do |row, result| next unless row.name[3] == 'B' currency = row.name[0..2].to_sym action = row.name[4..-1].to_sym
- Read upRead up
Method exchange_rate
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def self.exchange_rate(sym = :USD, cache_result = true) @exchange_rates ||= exchange_rates if cache_result @exchange_rates = exchange_rates unless cache_result @exchange_rates.each_with_object({}) do |rates, result|
- Read upRead up
Dependencies should be sorted in an alphabetical order within their section of the gemspec. Dependency simplecov
should appear before webmock
. Open
spec.add_development_dependency 'simplecov'
- Read upRead up
- Exclude checks
Add an empty line after magic comments. Open
lib = File.expand_path('../lib', __FILE__)
- Read upRead up
- Exclude checks
Use empty lines between method definitions. Open
def currencies(table_rows)
- Read upRead up
- Exclude checks
Dependencies should be sorted in an alphabetical order within their section of the gemspec. Dependency codeclimate-test-reporter
should appear before simplecov
. Open
spec.add_development_dependency 'codeclimate-test-reporter'
- Read upRead up
- Exclude checks
Dependencies should be sorted in an alphabetical order within their section of the gemspec. Dependency pry-byebug
should appear before rspec
. Open
spec.add_development_dependency 'pry-byebug'
- Read upRead up
- Exclude checks
Extra blank line detected. Open
# Extract the currencies from the image components src attribute
- Read upRead up
- Exclude checks