Sha256: 6e7cc87ae0ea6d89ca6858820182390a9044864a6fe0eec03ce54024b3bb1abb
Contents?: true
Size: 262 Bytes
Versions: 1
Compression:
Stored size: 262 Bytes
Contents
require 'open-uri' require 'nokogiri' module LyricFind class API def duration artist, song_name doc = get_search_api_response artist, song_name return nil if doc.nil? return doc.xpath('//tracks/track')[0]['duration'] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
LyricFind-0.1.5 | lib/lyricfind/duration.rb |