README.txt in dustin-twitter-0.3.2.2 vs README.txt in dustin-twitter-0.3.7
- old
+ new
@@ -34,11 +34,20 @@
puts '', "Followers", "=" * 50
Twitter::Base.new('your email', 'your password').followers.each do |u|
puts u.name, u.status.text
puts
end
+
+== Search Examples
+ Twitter::Search.new('httparty').each { |r| puts r.inspect }
+ Twitter::Search.new('httparty').from('jnunemaker').each { |r| puts r.inspect }
+ Twitter::Search.new.from('jnunemaker').to('oaknd1').each { |r| puts r.inspect }
+
+
== Command Line Use
+
+Note: If you want to use twitter from the command line be sure that sqlite3 and the sqlite3-ruby gem are installed. I removed the sqlite3-ruby gem as a dependency because you shouldn't need that to just use the API wrapper. Eventually I'll move the CLI interface into another gem.
$ twitter
Will give you a list of all the commands. You can get the help for each command by running twitter [command] -h.
\ No newline at end of file