# File lib/twitter/command.rb, line 138 def featured puts puts 'This is all implemented, just waiting for twitter to get the api call working' config = create_or_find_config puts Twitter::Base.new(config['email'], config['password']).featured.each do |u| puts "#{u.name} last updated #{u.status.created_at}\n-- #{u.status.text}" puts end end