This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Run the following if you haven't already:
gem sources -a http://gems.github.com
Install the gem(s):
sudo gem install technoweenie-twitter
rick (author)
Sun Apr 27 13:09:12 -0700 2008
commit 27d8f170de8a3db166442751bdcf8dbcdb8381bf
tree fde6e237f9d0a8a14e96010c211724458fe8183b
parent df5d7ecda29323e82c2af0db55099b6ccf0b6087
tree fde6e237f9d0a8a14e96010c211724458fe8183b
parent df5d7ecda29323e82c2af0db55099b6ccf0b6087
twitter /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Apr 02 20:16:48 -0700 2008 | [jnunemaker] |
| |
CHANGELOG | Wed Apr 02 20:31:17 -0700 2008 | [jnunemaker] |
| |
History.txt | Wed Mar 12 20:31:08 -0700 2008 | [jnunemaker] |
| |
License.txt | Wed Apr 02 20:23:07 -0700 2008 | [jnunemaker] |
| |
Manifest.txt | Sun Apr 27 13:09:12 -0700 2008 | [rick] |
| |
README.txt | Mon Mar 12 17:56:52 -0700 2007 | [jnunemaker] |
| |
Rakefile | Sun Apr 27 10:38:24 -0700 2008 | [rick] |
| |
bin/ | Wed Apr 02 20:31:17 -0700 2008 | [jnunemaker] |
| |
config/ | Wed Mar 12 20:31:08 -0700 2008 | [jnunemaker] |
| |
examples/ | Sat Mar 31 13:28:48 -0700 2007 | [jnunemaker] |
| |
lib/ | Sun Apr 27 12:59:29 -0700 2008 | [rick] |
| |
log/ | Wed Mar 12 20:31:08 -0700 2008 | [jnunemaker] |
| |
script/ | Wed Mar 12 20:31:08 -0700 2008 | [jnunemaker] |
| |
setup.rb | Thu Dec 14 17:32:12 -0800 2006 | [jnunemaker] |
| |
tasks/ | Wed Mar 12 20:31:08 -0700 2008 | [jnunemaker] |
| |
test/ | Sun Apr 27 12:59:29 -0700 2008 | [rick] |
| |
twitter.gemspec | Sun Apr 27 13:09:12 -0700 2008 | [rick] |
README.txt
= 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
end



