「TestLinkClientクラス」をリリース

http://ruby.g.hatena.ne.jp/garyo/20081217/p1
TestLink XMLRPC apiをラッパーしたクラス、TestLinkClientをリリースしました。

詳しい説明は以下を参照願います。
http://testlinkjp.org/modules/mydownloads/singlefile.php?cid=1&lid=22


gem install TestLinkClient
でインストールしてみてください。

使えるメソッドは以下を参照願います。
http://testlinkjp.org/uploads/testlinkclient/

サンプルソースはこんな感じになります。

require "rubygems"
require "TestLinkClient"

ServerURL="http://garyo.net63.net/testlink_18RC1"
Dev_key="f2e726e2c22a1d7226ca258be1ff94ea"

tlc = TestLinkClient.new(ServerURL,Dev_key)

p tlc.sayHello
p tlc.about
p tlc.repeat("TestLink")