ThimblClient
1.0.0
Is an small client for the distributed microbloging protocol: thimbl
I have follow the style of the Thimbl Python client in many ways.
This version is in development, use it in production environment under your own responsability.
gem install thimbl
require 'rubygems'
require 'thimbl'
thimbl =
Thimbl::Base.new(
'[email protected]',
{
:bio => 'my bio',
:website => 'my website',
:mobile => 'my mobile',
:email => 'my email',
:name => 'my name'
}
)
thimbl.follow 'dk', '[email protected]'
thimbl.fetch
thimbl.messages
thimbl.post 'My first post'
thimbl.push 'password'
The gem comes with a shell command, you can use it like this:
thimblr setup '[email protected]'
thimblr follow 'dk' '[email protected]' 'my password'
thimblr print
thimblr post 'My first message :)' 'my password'