14件ヒット
[1-14件を表示]
(0.090秒)
別のキーワード
ライブラリ
-
rake
/ loaders / makefile (1) -
rdoc
/ code _ object (2) -
rexml
/ document (4) -
rexml
/ parsers / pullparser (1) - rss (2)
- zlib (2)
クラス
-
RDoc
:: CodeObject (2) -
REXML
:: Comment (2) -
REXML
:: DocType (2) -
REXML
:: Parsers :: PullEvent (1) -
RSS
:: Maker :: ItemsBase :: ItemBase (2) -
Rake
:: MakefileLoader (1) -
WEBrick
:: Cookie (2) -
Zlib
:: GzipFile (1) -
Zlib
:: GzipWriter (1)
キーワード
- == (1)
-
attribute
_ of (1) -
attributes
_ of (1) - comment= (3)
- comment? (1)
- comments (1)
- comments= (1)
- load (1)
-
node
_ type (1)
検索結果
先頭5件
-
WEBrick
:: Cookie # comment -> String (63310.0) -
コメントを文字列で表すアクセサです。
コメントを文字列で表すアクセサです。
@param value コメントを文字列で指定します。 -
RDoc
:: CodeObject # comment -> String (63307.0) -
自身のコメントを返します。
自身のコメントを返します。 -
Zlib
:: GzipFile # comment -> String | nil (63307.0) -
gzip ファイルのヘッダーに記録されているコメントを返します。 コメントが存在しない場合は nil を返します。
gzip ファイルのヘッダーに記録されているコメントを返します。
コメントが存在しない場合は nil を返します。 -
RSS
:: Maker :: ItemsBase :: ItemBase # comments (36304.0) -
@todo
@todo -
RSS
:: Maker :: ItemsBase :: ItemBase # comments=() (36304.0) -
@todo
@todo -
RDoc
:: CodeObject # comment=(comment) (27694.0) -
自身のコメントを comment に設定します。
自身のコメントを comment に設定します。
ただし、comment が空文字列だった場合は何もしません。
@param comment コメントを文字列で指定します。 -
Zlib
:: GzipWriter # comment=(string) (27361.0) -
gzip ファイルのヘッダーに記録するコメントを指定します。
gzip ファイルのヘッダーに記録するコメントを指定します。
Zlib::GzipWriter#write 等の書き込み系メソッドを
呼んだ後で指定しようとすると Zlib::GzipFile::Error 例外が
発生します。
@param string gzip ファイルのヘッダーに記録するコメントを文字列で指定します。
@return string を返します。
require 'zlib'
filename='hoge1.gz'
fw = File.open(filename, "w")
Zlib::GzipWriter.wrap(fw, Zlib::BEST... -
WEBrick
:: Cookie # comment=(value) (27310.0) -
コメントを文字列で表すアクセサです。
コメントを文字列で表すアクセサです。
@param value コメントを文字列で指定します。 -
REXML
:: DocType # attribute _ of(element , attribute) -> String | nil (18640.0) -
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という 名前の属性のデフォルト値を返します。
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という
名前の属性のデフォルト値を返します。
elementという名前の要素の属性値は宣言されていない、
elementという名前の要素にはattributeという名前の属性が宣言されていない、
もしくはデフォルト値が宣言されていない、のいずれかの場合は nil を返します。
@param element 要素名(文字列)
@param attribute 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Doc... -
REXML
:: DocType # attributes _ of(element) -> [REXML :: Attribute] (18640.0) -
DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。
DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている
属性の名前とデフォルト値を REXML::Attribute の配列で返します。
名前とデフォルト値のペアは、各 Attribute オブジェクトの
REXML::Attribute#name と
REXML::Attribute#value で表現されます。
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (c... -
REXML
:: Parsers :: PullEvent # comment? -> bool (18607.0) -
コメントノードなら真を返します。
コメントノードなら真を返します。 -
REXML
:: Comment # ==(other) -> bool (9352.0) -
other と内容(REXML::Comment#string)が同じならば真を返します。
other と内容(REXML::Comment#string)が同じならば真を返します。 -
REXML
:: Comment # node _ type -> Symbol (9352.0) -
シンボル :comment を返します。
シンボル :comment を返します。 -
Rake
:: MakefileLoader # load(filename) (166.0) -
与えられた Makefile をロードします。
与えられた Makefile をロードします。
@param filename 読み込む Makefile の名前を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
require "rake/loaders/makefile"
task default: :test_rake_app
open "sample.mf", "w" do |io|
io << <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
b: b1 b2 b3 \
b4 b5 b6\
# Mid: Comment
b7
a : a5...