module BeerDb::Matcher
Public Instance Methods
match_beers_for_country( name, &blk )
click to toggle source
# File lib/beerdb/reader.rb, line 8 def match_beers_for_country( name, &blk ) match_xxx_for_country( name, 'beers', &blk ) end
match_beers_for_country_n_state( name, &blk )
click to toggle source
# File lib/beerdb/reader.rb, line 12 def match_beers_for_country_n_state( name, &blk ) match_xxx_for_country_n_state( name, 'beers', &blk ) end
match_breweries_for_country( name, &blk )
click to toggle source
# File lib/beerdb/reader.rb, line 16 def match_breweries_for_country( name, &blk ) match_xxx_for_country( name, 'breweries', &blk ) end
match_breweries_for_country_n_state( name, &blk )
click to toggle source
# File lib/beerdb/reader.rb, line 20 def match_breweries_for_country_n_state( name, &blk ) match_xxx_for_country_n_state( name, 'breweries', &blk ) end
match_brewpubs_for_country( name, &blk )
click to toggle source
# File lib/beerdb/reader.rb, line 24 def match_brewpubs_for_country( name, &blk ) match_xxx_for_country( name, 'brewpubs', &blk ) end
match_brewpubs_for_country_n_state( name, &blk )
click to toggle source
# File lib/beerdb/reader.rb, line 28 def match_brewpubs_for_country_n_state( name, &blk ) match_xxx_for_country_n_state( name, 'brewpubs', &blk ) end