ライブラリ
- ビルトイン (365)
- date (4)
-
irb
/ cmd / help (12) - json (72)
- psych (34)
- rake (156)
- resolv (48)
- rexml (12)
-
rexml
/ document (264) -
rubygems
/ command (12) -
rubygems
/ command _ manager (12) -
rubygems
/ commands / update _ command (12) -
rubygems
/ specification (36) -
shell
/ builtin-command (6) - socket (24)
-
webrick
/ config (12)
クラス
- Data (3)
- Date (2)
- DateTime (2)
- Encoding (12)
-
Gem
:: Command (12) -
Gem
:: CommandManager (12) -
Gem
:: Commands :: UpdateCommand (12) -
Gem
:: Specification (36) -
IRB
:: ExtendCommand :: Help (12) - MatchData (26)
- Module (204)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (24) -
REXML
:: DocType (12) -
REXML
:: Element (72) -
REXML
:: XPath (36) -
Rake
:: FileList (12) -
Rake
:: NameSpace (36) -
Rake
:: Task (24) -
Rake
:: TaskArguments (36) - Regexp (12)
- Resolv (24)
-
Resolv
:: DNS (12) -
Resolv
:: Hosts (12) - RubyVM (12)
-
Shell
:: Cat (6) - Socket (12)
- Struct (6)
- Time (2)
モジュール
- JSON (60)
- Kernel (36)
- ObjectSpace (48)
- Psych (34)
-
REXML
:: Namespace (96) -
Rake
:: TaskManager (12) -
Socket
:: Constants (12) -
WEBrick
:: Config (12)
オブジェクト
- main (40)
キーワード
- DigestAuth (12)
-
IF
_ NAMESIZE (24) -
INSTRUCTION
_ NAMES (12) - JSON (12)
-
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 2
. 7 . 0 (6) -
NEWS for Ruby 3
. 0 . 0 (5) - NameSpace (12)
- Namespace (12)
- UndefinedNamespaceException (12)
- [] (24)
-
add
_ namespace (24) -
arg
_ names (12) - attribute (12)
-
attribute
_ names (12) - cgi (12)
-
command
_ names (12) -
deconstruct
_ keys (17) -
delete
_ namespace (12) - each (12)
-
each
_ object (48) - execute (12)
- first (12)
-
get
_ all _ gem _ names (12) -
get
_ attribute _ ns (12) - getnames (48)
-
has
_ name? (12) - import (12)
-
in
_ namespace (12) - include (12)
- irb (12)
- load (27)
-
local
_ name (12) - match (12)
- name (12)
- name= (12)
-
named
_ captures (12) - namespace (36)
- namespaces (36)
- new (30)
-
new
_ scope (12) - parse (12)
- parse! (12)
- prefix (12)
- prefix= (12)
- private (68)
-
private
_ class _ method (24) - protected (48)
- public (68)
-
public
_ class _ method (24) -
rake
/ classic _ namespace (12) - rdoc (12)
-
read
_ only (12) - restore (12)
-
ruby2
_ keywords (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / search _ command (12) -
safe
_ load (19) -
set
_ arg _ names (12) - tasks (12)
-
test
/ unit (1) -
which
_ to _ update (12)
検索結果
先頭5件
- ObjectSpace
. # each _ object(klass) -> Enumerator - ObjectSpace
. # each _ object(klass) {|object| . . . } -> Integer - Psych
. load(yaml , filename = nil , fallback = false) -> object - Psych
. safe _ load(yaml , whitelist _ classes = [] , whitelist _ symbols = [] , aliases = false , filename = nil) -> object - WEBrick
:: Config :: DigestAuth -> Hash
-
ObjectSpace
. # each _ object(klass) -> Enumerator (6.0) -
指定された klass と Object#kind_of? の関係にある全ての オブジェクトに対して繰り返します。引数が省略された時には全てのオブ ジェクトに対して繰り返します。 繰り返した数を返します。
....take(5).each { |x| p x }
count = ObjectSpace.each_object { |x| x }
puts "Total count: #{count}"
# => "scope"
# => "scopes"
# => "sym"
# => "class_names"
# => "@corrections"
# => Total count: 9938
//}
//emlist[例: 任意のクラスを扱う][ruby]{
Person = Struct.new(:name)
s1 = Person.new("tan... -
ObjectSpace
. # each _ object(klass) {|object| . . . } -> Integer (6.0) -
指定された klass と Object#kind_of? の関係にある全ての オブジェクトに対して繰り返します。引数が省略された時には全てのオブ ジェクトに対して繰り返します。 繰り返した数を返します。
....take(5).each { |x| p x }
count = ObjectSpace.each_object { |x| x }
puts "Total count: #{count}"
# => "scope"
# => "scopes"
# => "sym"
# => "class_names"
# => "@corrections"
# => Total count: 9938
//}
//emlist[例: 任意のクラスを扱う][ruby]{
Person = Struct.new(:name)
s1 = Person.new("tan... -
Psych
. load(yaml , filename = nil , fallback = false) -> object (6.0) -
YAML ドキュメントを Ruby のデータ構造(オブジェクト)に変換します。
...ile # => 'file.txt'
p ex.message # => "(file.txt): found character that cannot start any token while scanning for the next token at line 1 column 5"
end
//}
キーワード引数 symbolize_names に true を指定した場合はハッシュのキー
を Symbol に変換して返します。... -
Psych
. safe _ load(yaml , whitelist _ classes = [] , whitelist _ symbols = [] , aliases = false , filename = nil) -> object (6.0) -
安全に YAML フォーマットの文書を読み込み Ruby のオブジェクトを生成して返します。
...ias 例外が発生します。
filename はパース中に発生した例外のメッセージに用います。
キーワード引数 symbolize_names に true を指定した場合はハッシュのキー
を Symbol に変換して返します。
@param io YAMLフォーマットの文書の読... -
WEBrick
:: Config :: DigestAuth -> Hash (6.0) -
WEBrick::HTTPAuth::DigestAuth の設定のデフォルト値を保持したハッシュです。
...:Config::DigestAuth = {
:Algorithm => 'MD5-sess', # or 'MD5'
:Domain => nil, # an array includes domain names.
:Qop => [ 'auth' ], # 'auth' or 'auth-int' or both.
:UseOpaque => true,
:UseNextNonce => fa... -
cgi (6.0)
-
CGI プログラムの支援ライブラリです。
...# values は name クッキーの値の配列。
# name クッキーが存在しない場合は空配列を返す。
names = cgi.cookies.keys # 全てのクッキーの名前の配列
//}
==== CGI に関連する環境変数の値を取得する
CGI に関連す... -
rubygems
/ commands / install _ command (6.0) -
Gem パッケージをローカルリポジトリにインストールするためのライブラリです。
...dencies 依存している Gem パッケージをインストールします
--[no-]format-executable Make installed executable names match ruby.
If ruby is ruby18, foo_exec will be
foo_exec18
Local... -
rubygems
/ commands / search _ command (6.0) -
指定された文字列を含む Gem パッケージを全て表示するためのライブラリです。
...gem to search
-d, --[no-]details Display detailed information of gem(s)
--[no-]versions Display only gem names
-a, --all Display all gem versions
Local/Remote Options:
-l, --local 操作をロー... -
test
/ unit (6.0) -
ユニットテストを行うためのライブラリです。
...Sets random seed
-v, --verbose Verbose. Show progress processing files.
-n, --name PATTERN Filter test names on pattern.
--jobs-status [TYPE] Show status of jobs every file; Disabled when --jobs isn't specified.
-j, --jobs N...