# File lib/twitter/command.rb, line 150 def important config = create_or_find_config puts if config['important'].nil? puts "You have not listed your most important twitter buddies in your config file.\nYou can add important twitterers by adding the following to your config file:\nimportant:\n- jnunemaker\n- frankfurter" else Twitter::Base.new(config['email'], config['password']).timeline(:friends).each do |s| if config['important'].include?(s.user.screen_name) puts "#{s.text}\n-- #{s.user.name} at #{s.created_at}" puts end end end end