Sha256: d2124e2ee47f9b29d24490d56b7d9fed8db5855b1c97d2148b977cdba02acb24
Contents?: true
Size: 588 Bytes
Versions: 1
Compression:
Stored size: 588 Bytes
Contents
# INNER JOIN tblInventoryID AS iid ON iid.intInventoryIdID = rc.intInventoryIDID # INNER JOIN tblInventory AS iv ON iid.intInventoryID = iv.intInventoryID # INNER JOIN tblInventoryText AS ivt ON iv.intInventoryID = ivt.intInventoryID module Toolhound # Class to parse GitHub repository owner and name from # URLs and to generate URLs class Inventory < Base # attr_accessor :owner, :name, :id self.table_name = "tblInventory" self.primary_key = "intInventoryID" # includes :tblInventoryText, # rename_attributes intLocationID: 'location_id' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
toolhound-ruby-1.0.4 | lib/toolhound-ruby/inventory.rb |