0.0
No commit activity in last 3 years
No release in over 3 years
automate twitter tasks, such as retweetting, following, unfollowing
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Robotwitter makes it easer to automate some twitter functions, such as:

* creating tweets
* retweeting by keywords
* follow back who follows you
* unfollow who do not follows you

Usage¶ ↑

  • gem install robotwitter

Robotwitter::Path.set_base your_path_to_cofing

client = Robotwitter::Robot.new “settings.yaml”, “your_twitter_login”, &GETTER &GETTER could be nil (see below)

client.follow_all_back

Config Example¶ ↑

your_twitter_login:

consumer_key: key
consumer_secret: secret
oauth_token: oauth_token
oauth_token_secret: oauth_token

GETTER¶ ↑

You can use GETTER as a lambda-function to get new tweets from somewhere.

Actually it used to work with external http and sqlite database.
It should be a lambda function wich return string

If you do not need getter, just set GETTER to nil.

Getter example¶ ↑

GETTER = lambda do

return_string_got_it_from_somewhere

end

Copyright © 2011 Krivich Ekaterina. See LICENSE.txt for further details.