timcase/echonest

View on GitHub
lib/echowrap/image.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'echowrap/base'

module Echowrap
  class Image < Echowrap::Base
    attr_reader :url

    # @return [Echowrap::License]
    def license
      @license ||= Echowrap::License.new(@attrs[:license])
    end

  end
end