39件ヒット
[1-39件を表示]
(0.007秒)
検索結果
-
rubygems (31.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...version = '0.0.0'
s.summary = 'hello summary'
s.files = ['lib/hello.rb']
s.authors = ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end......ます。
: summary
この Gem の短い説明を指定します。
: files
この Gem に含むファイルのリストを指定します。
: authors
この Gem の作者のリストを指定します。
: email
この Gem の作者の連絡先メールアドレスを指定します。
: h......s.summary = 'hello summary'
s.files = ['bin/hello', 'lib/hello.rb']
s.executables = ['hello']
s.authors = ['Hello Author']
s.email = 'hello@example.com'
s.homepage = 'http://example.com/hello'
s.description = 'hello desc... -
rss (13.0)
-
RSS を扱うためのライブラリです。
...するた
めには以下のように変更する必要があります。
* RSS::Maker.makeの第一引数を"atom"に変更
* maker.channel.authorを設定
* maker.channel.dateを設定
もし、
* 作者がBobで
* たった今、作成された
Atom 1.0なら以下のようになり......maker.channel.title = "Example"
maker.channel.description = "Example Site"
maker.channel.link = "http://example.com/"
maker.channel.author = "Bob"
maker.channel.date = Time.now
maker.items.do_sort = true
maker.items.new_item do |item|
item.link = "http://example.co... -
rdoc (7.0)
-
RDoc は Ruby のドキュメント生成を行うためのライブラリです。rdoc という ドキュメント生成のためのコマンドも含んでいます。
...となり、記述部(コロン2つの後のテキスト)は左揃えになりま
す。この形式は本ドキュメントの末尾のほうの 'author' のところで使われて
います。
cat:: small domestic animal
+cat+:: command to copy standard input
どちらの形式のラベ... -
xmlrpc (7.0)
-
XML-RPC を扱うためのライブラリです。
...rpc ライブラリのまとめのページであり、require 'xmlrpc' を実行しても
エラーになることに注意して下さい。
=== Author and Copyright
Copyright (C) 2001-2004 by Michael Neumann
Released under the same term of license as Ruby.
=== Overview
XMLRPC is a lightweigh......ions that span
computer languages. Its distinctive feature is its simplicity compared to
other approaches like SOAP and CORBA.
The Ruby standard library package 'xmlrpc' enables you to create a server that
implements remote procedures and a client that calls them. Very little code
is required to...