class WhatsOn::WhatsOn
Public Class Methods
main()
click to toggle source
# File lib/whatson/whatson.rb, line 6 def self.main() new( ARGV ).list; end
new( args=ARGV )
click to toggle source
Calls superclass method
WhatsOn::Tool::new
# File lib/whatson/whatson.rb, line 9 def initialize( args=ARGV ) args = ['https://github.com/planetruby/conferences/raw/master/_data/conferences2023.yml', 'https://github.com/python-organizers/conferences/raw/main/2023.csv', ] if args.empty? super( args, title: 'Upcoming Events', more_link: 'github.com/rubycocos/events/tree/master/whatson#public-event-datasets' ) end