timcase/echonest

View on GitHub
lib/echowrap/biography.rb

Summary

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

module Echowrap
  class Biography < Echowrap::Base
    attr_reader :site, :text, :url

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