class LibraryEntry
this class represents the Model for the entries available in the library.json
Attributes
description[RW]
link[RW]
number_of_downloads[RW]
title[RW]
Public Class Methods
new(*args)
click to toggle source
# File lib/lita/handlers/library_entry.rb, line 7 def initialize(*args) @link = args[0] @title = args[1] @description = args[2] @number_of_downloads = args[3] end