forked from sferik/twitter-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
command line twits and an api wrapper for twitter
License
context/twitter
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
= addicted to twitter
... a sweet little diddy that helps you twitter your life away
== Command Line Use
$ twitter
That will show the commands and each command will either run or show you the options it needs to run
$ twitter post "releasing my new twitter gem"
That will post a status update to your twitter
== Examples
Twitter::Base.new('your email', 'your password').update('watching veronica mars')
# or you can use post
Twitter::Base.new('your email', 'your password').post('post works too')
puts "Public Timeline", "=" * 50
Twitter::Base.new('your email', 'your password').timeline(:public).each do |s|
puts s.text, s.user.name
puts
end
puts '', "Friends Timeline", "=" * 50
Twitter::Base.new('your email', 'your password').timeline.each do |s|
puts s.text, s.user.name
puts
end
puts '', "Friends", "=" * 50
Twitter::Base.new('your email', 'your password').friends.each do |u|
puts u.name, u.status.text
puts
end
puts '', "Followers", "=" * 50
Twitter::Base.new('your email', 'your password').followers.each do |u|
puts u.name, u.status.text
puts
endAbout
command line twits and an api wrapper for twitter
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published