129件ヒット
[1-100件を表示]
(0.099秒)
ライブラリ
- ビルトイン (33)
-
net
/ http (12) - rake (12)
-
rdoc
/ parser / simple (12) -
rexml
/ document (12) - rss (48)
クラス
- Array (21)
-
RDoc
:: Parser :: Simple (12) -
REXML
:: Element (12) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Rss :: Channel :: Item (24) -
Rake
:: Application (12) - String (12)
モジュール
-
Net
:: HTTPHeader (12)
キーワード
-
add
_ loader (12) - comments= (24)
-
content
_ type (12) - pack (21)
-
remove
_ private _ comments (12) - unpack (12)
検索結果
先頭5件
-
RSS
:: Maker :: ItemsBase :: ItemBase # comments (27203.0) -
@todo
...@todo... -
REXML
:: Element # comments -> [REXML :: Comments] (24403.0) -
すべての comment 子ノードの配列を返します。
...すべての comment 子ノードの配列を返します。
返される配列は freeze されます。... -
RSS
:: Rss :: Channel :: Item # comments (24203.0) -
@todo
...@todo... -
RSS
:: Maker :: ItemsBase :: ItemBase # comments=() (15203.0) -
@todo
...@todo... -
RSS
:: Rss :: Channel :: Item # comments= (12203.0) -
@todo
...@todo... -
RDoc
:: Parser :: Simple # remove _ private _ comments(comment) -> String (12202.0) -
行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返 します。
...行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返
します。
@param comment 対象の文字列を指定します。
@return コメントが削除された文字列を返します。... -
Net
:: HTTPHeader # content _ type -> String|nil (6107.0) -
"text/html" のような Content-Type を表す 文字列を返します。
..."text/html" のような Content-Type を表す
文字列を返します。
Content-Type: ヘッダフィールドが存在しない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/comments.cgi?post=comment')
req = Net::HTTP::Post.......new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data'
req.content_type # => "multipart/form-data"
//}... -
String
# unpack(template) -> Array (3297.0) -
Array#pack で生成された文字列を テンプレート文字列 template にしたがってアンパックし、 それらの要素を含む配列を返します。
...ンプレート文字列 template にしたがってアンパックし、
それらの要素を含む配列を返します。
@param template pack テンプレート文字列
@return オブジェクトの配列
以下にあげるものは、Array#pack、String#unpack
のテンプレ......ト文字のシステム依存性
各テンプレート文字の説明の中で、
short や long はシステムによらずそれぞれ 2, 4バイトサ
イズの数値(32ビットマシンで一般的なshort, longのサイズ)を意味していま
す。s, S, l, L に対しては直後に _ ま......テム依存の short, long のサイズにすることもできます。
i, I (int)のサイズは常にシステム依存であり、n, N, v, V
のサイズは常にシステム依存ではない(!をつけられない)ことに注意してください。
つまり、IO#ioctl などで C の構......レート文字列 template にしたがってアンパックし、
それらの要素を含む配列を返します。
@param template pack テンプレート文字列
@return オブジェクトの配列
以下にあげるものは、Array#pack、String#unpack、String#unpack1
の... -
Rake
:: Application # add _ loader(ext , loader) (3107.0) -
与えられた拡張子で終わるファイル名のファイルをロードするためのローダーを 自身に追加します。
...@param ext 拡張子を指定します。
@param loader ローダーを指定します。
//emlist[例][ruby]{
require "rake/loaders/makefile"
# Rakefile での記載例とする
task default: :test
task :test
makefile =<<-EOS
<< <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
EOS
IO.write("sample.m......f", makefile)
Rake.application.add_loader("mf", Rake::MakefileLoader.new)
Rake.application.add_import("sample.mf")
Rake::Task.task_defined?("a") # => false
Rake.application.load_imports
Rake::Task.task_defined?("a") # => true
//}...