class Meth

Attributes

documentation[RW]
properties=========================
name[RW]
properties=========================
type[RW]
properties=========================
url[RW]
properties=========================

Public Class Methods

all() click to toggle source
# File lib/ruby_doc/data/method.rb, line 6
def self.all; @@all; end
find_by(url) click to toggle source
find=============================
# File lib/ruby_doc/data/method.rb, line 16
def self.find_by(url) 
  Meth.all.find{|m| m.url == url}
end
new(type="n/a", name, url) click to toggle source
intialize==========================
count 1839
# File lib/ruby_doc/data/method.rb, line 9
def initialize(type="n/a", name, url) 
  self.type = type
  self.name = name
  self.url = url
  @@all << self
end