Simple ping.fm extension for radiant
Posted by Edmund Haselwanter on Sunday, October 11, 2009
I just created a simple Ping.fm extension for RadiantCMS on github: ping.fm extension
With this you can have updates to your site automatically send details to your
Ping.fm account. All you’ll need to do is provide your account information in the Radiant::Config settings.
- API Key http://ping.fm/key/
- Application API Key http://ping.fm/developers/
In the first iteration it just posts a link to the page and the title of the page to ping.fm.
If you have the tags extension installed it will add the page meta_tags to the post.
Installation:
1 gem install pingfm # sudo gem install pingfm 2 cd /path/to/radiant-installation/ 3 4 git clone git://github.com/ehaselwanter/radiant-pingfm-extension.git vendor/extensions/pingfm 5 6 or 7 8 git submodule add git://github.com/ehaselwanter/radiant-pingfm-extension.git vendor/extensions/pingfm 9 10 git submodule init 11 git submodule update 12 13 rake db:migrate:extensions