Class: Sports::NationalTeam
- Inherits:
-
Object
- Object
- Sports::NationalTeam
- Defined in:
- lib/sportdb/search/sport-teams.rb
Class Method Summary collapse
- ._search ⇒ Object
-
.find(q) ⇒ Object
change core api to match( q ) only - why? why not? and make find and find! derivs???.
- .find!(q) ⇒ Object
Class Method Details
._search ⇒ Object
6 |
# File 'lib/sportdb/search/sport-teams.rb', line 6 def self._search() CatalogDb::Metal::NationalTeam; end |
.find(q) ⇒ Object
change core api to match( q ) only - why? why not?
and make find and find! derivs???
17 |
# File 'lib/sportdb/search/sport-teams.rb', line 17 def self.find( q ) _search.find( q ); end |
.find!(q) ⇒ Object
18 |
# File 'lib/sportdb/search/sport-teams.rb', line 18 def self.find!( q ) _search.find!( q ); end |