module UUCounter::Accessor

Public Instance Methods

get_count(path) click to toggle source
# File lib/uu_counter/accessor.rb, line 5
def get_count(path)
    tracks = Track.find_by_path(path)
    return tracks.length
end