module Findbook
Constants
- VERSION
Public Class Methods
bookfinder(title)
click to toggle source
# File lib/findbook.rb, line 5 def self.bookfinder(title) results = ISBNdb::Query.find_books_by_title(title) results.each do |result| return results end end