class WhatsOn::RubyConf

Public Class Methods

main() click to toggle source
# File lib/whatson/rubyconf.rb, line 7
def self.main()   new( ARGV ).list;   end
new( args=ARGV ) click to toggle source
Calls superclass method
# File lib/whatson/rubyconf.rb, line 10
def initialize( args=ARGV )
  args = ['https://github.com/planetruby/conferences/raw/master/_data/conferences2023.yml']  if args.empty?

  super( args,
         title:     'Upcoming Ruby Conferences',
         more_link: 'github.com/planetruby/calendar'
       )
end