= ldclip ldclip is ruby interface of LivedoorClipAPI. - livedoorclip : http://clip.livedoor.com/ == Installation $ sudo gem install ldclip == Usage # get your apikey at ( need livedoor id ) # http://clip.livedoor.com/config/api require 'rubygems' require 'ldclip' # initialize ldc = Ldclip.new('your account','your apikey') # post new clip res = ldc.add('http://www.lucky-ch.com/', "lucky-star", { :extended => 'description', :tags => 'lucky-star kagamin ', # separate by space } ) assert_match('done' ,res) # success assert_match('wrong' ,res) # not success # get all clips (XML) ldc.all ldc.all({ :tag => 'lucky-star' }) # get specified clip ldc.get(=> 'http://haruhi.tv/')) ldc.get(=> 'haruhi')) # modify posted bookmark same as post new clip # delete specified bookmark ldc.delete('http://www.lucky-ch.com/')) assert_match('done' ,res) # success assert_match('wrong' ,res) # not success == known bugs - options[:dt] not works == Author - utadaq ( http://d.hatena.ne.jp/utadaq ) == License - MIT Lisence $Id: README.txt 6 2008-02-10 13:58:22Z utadaq $