2009-03-30から1日間の記事一覧

Post時に、URLをbit.lyで短縮するプラグインを書いてみた

# -*- coding: utf-8 -*- require 'uri' require 'open-uri' config.plugins.bitly.set_default(:length_to_shorten, '40') length_to_shorten = config.plugins.bitly.length_to_shorten.to_i login = config.plugins.bitly.login key = config.plugins.bit…

ついでに、URLをtweetburnerで短縮するプラグインも書いてみた

# -*- coding: utf-8 -*- require 'net/http' config.plugins.tweetburner.set_default(:length_to_shorten, '40') config.plugins.tweetburner.set_default(:open_timeout, '4') config.plugins.tweetburner.set_default(:read_timeout, '6') length_to_sho…