1v/yandex-api-fotki

View on GitHub

Showing 1 of 1 total issue

Redundant use of Object#to_s in interpolation.
Open

          url = "#{API_HOST}/api/users/#{options[:user]}/photo/#{options[:id].to_s}/"
Severity: Minor
Found in lib/yandex/api/fotki/photos.rb by rubocop

This cop checks for string conversion in string interpolation, which is redundant.

Example:

# bad

"result is #{something.to_s}"

Example:

# good

"result is #{something}"
Severity
Category
Status
Source
Language