Guest User

Untitled

a guest
Jun 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. require 'gtk2'
  2. require 'rubygems'
  3. require 'twitter'
  4.  
  5.  
  6. window = Gtk::Window.new
  7. window.set_default_size(400,200)
  8. window.title = "Esimene programm"
  9.  
  10. vbox = Gtk::VBox.new(false, 0)
  11.  
  12.  
  13. client = Twitter::Client.new
  14. timeline = client.timeline_for(:user, :id => 'msarapik') do |status|
  15. vbox.add(Gtk::Label.new(status.text))
  16. end
  17.  
  18.  
  19. window.add(vbox)
  20. window.show_all
  21.  
  22. Gtk.main
Add Comment
Please, Sign In to add comment