Terminal-based Twitter Client with Streaming API.
It supports only Ruby 1.9.
We need patches that fix the english of the documentation!
- You can use Twitter entirely in your Terminal.
- You can receive data in real time with Streaming API.
- You can easily extend by using Ruby.
gem install earthquake
$ earthquake
⚡ Hello World!
⚡ :status $xx
$xx is the alias of tweet id.
⚡ :delete $xx
⚡ :reply $xx hi!
⚡ :retweet $xx
⚡ :recent
⚡ :recent jugyo
⚡ :search #ruby
⚡ :eval Time.now
⚡ :exit
⚡ :reconnect
⚡ :restart
And there are more commands!
The config file is ~/.earthquake/config.
Earthquake.config[:colors] = (31..36).to_a - [34]
The blue is excluded.
~/.earthquake/plugin is the directory for plugins. At launch, Earthquake tries to load files under this directory. The block that is specified for Earthquake.init will be reloaded at any command line input.
Earthquake.init do
command :foo do
puts "foo!"
end
end
Earthquake.init do
command :hi do |m|
puts "Hi #{m[1]}!"
end
end
The 'm' is a MatchData.
Earthquake.init do
# Usage: :add 10 20
command %r|^:add (\d+)\s+(\d+)|, :as => :add do |m|
puts m[1].to_i + m[2].to_i
end
end
Earthquake.init do
output do |item|
next unless item["_stream"]
if item["text"] =~ /ruby/i
notify "#{item["user"]["screen_name"]}: #{item["text"]}"
end
end
end
Earthquake.init do
output do |item|
case item["event"]
when "favorite"
notify "[favorite] #{item["source"]["screen_name"]} => #{item["target"]["screen_name"]} : #{item["target_object"]["text"]}"
end
end
end
Earthquake.init do
filter do |item|
if item["_stream"] && item["text"]
item["text"] =~ /ruby/i
else
true
end
end
end
Earthquake.init do
completion do |text|
['jugyo', 'earthquake', '#eqrb'].grep(/^#{Regexp.quote(text)}/)
end
end
- more intelligent completion
- spec
- change the config dir by ARGV
Copyright (c) 2011 jugyo. See LICENSE.txt for further details.