Thimbl Client
Is an small client for the distributed microbloging protocol: thimbl
I have follow the style of the Thimbl Python client in many ways.
Commands
- fetch
- follow
- post
- push
Attributes
- messages
- following
- properties
Version
This version is in development, use it in production environment under your own responsability.
Install
gem install thimbl
Use
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.
thimbl.post 'My first post'
thimbl.push 'password'
Shell Command
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'
TODO
- Support simbolize hash keys
- Reply to another message support