class WhatsOn::BeerFest

Public Class Methods

main() click to toggle source
# File lib/whatson/beerfest.rb, line 7
def self.main()   new( ARGV ).list;   end
new( args=ARGV ) click to toggle source
Calls superclass method
# File lib/whatson/beerfest.rb, line 10
def initialize( args=ARGV )
  args = ['https://github.com/beerbook/calendar/raw/master/README.md']  if args.empty?

  super( args,
         title:     'Upcoming Beerfests',
         more_link: 'github.com/beerbook/calendar'
       )
end