379件ヒット
[301-379件を表示]
(0.131秒)
ライブラリ
- ビルトイン (91)
- json (24)
- rake (12)
- resolv (120)
-
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (36) -
rubygems
/ source _ info _ cache (84)
クラス
- Binding (7)
-
Encoding
:: Converter (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (36) -
Gem
:: SourceInfoCache (84) -
JSON
:: Parser (12) - Method (24)
- Module (12)
- Proc (12)
-
Rake
:: Task (12) - Regexp (12)
-
Resolv
:: DNS (36) -
Resolv
:: DNS :: Resource :: HINFO (24) -
Resolv
:: DNS :: Resource :: IN :: WKS (12) -
Resolv
:: DNS :: Resource :: MINFO (24) -
Resolv
:: DNS :: Resource :: TXT (24) - UnboundMethod (12)
モジュール
キーワード
- bitmap (12)
-
cache
_ file (12) -
const
_ source _ location (12) - convert (12)
- cpu (12)
- data (12)
- download (12)
-
each
_ resource (12) - emailbx (12)
-
gem
_ signature (12) - getresource (12)
- getresources (12)
-
index
_ signature (12) - inspect (6)
-
latest
_ cache _ file (12) -
latest
_ system _ cache _ file (12) -
latest
_ user _ cache _ file (12) - os (12)
- rmailbx (12)
-
source
_ location (43) -
spec
_ dirs (12) - strings (12)
-
system
_ cache _ file (12) -
to
_ json _ raw _ object (12) -
to
_ s (6) -
try
_ file (12) -
user
_ cache _ file (12)
検索結果
先頭5件
-
Resolv
:: DNS :: Resource :: MINFO # emailbx -> String (3102.0) -
メーリングリストもしくはメールボックスの エラーを受け取るメールボックスのドメイン名を 返します。
メーリングリストもしくはメールボックスの
エラーを受け取るメールボックスのドメイン名を
返します。 -
Resolv
:: DNS :: Resource :: MINFO # rmailbx -> String (3102.0) -
メーリングリストもしくはメールボックスの 責任者のドメイン名を返します。
メーリングリストもしくはメールボックスの
責任者のドメイン名を返します。 -
Resolv
:: DNS :: Resource :: TXT # data -> String (3102.0) -
TXT レコードの最初の文字列を返します。
TXT レコードの最初の文字列を返します。 -
JSON
:: Generator :: GeneratorMethods :: String # to _ json _ raw _ object -> Hash (3013.0) -
生の文字列を格納したハッシュを生成します。
...する場合に使用してください。
require 'json'
"にほんご".encode("euc-jp").to_json_raw_object
# => {"json_class"=>"String", "raw"=>[164, 203, 164, 219, 164, 243, 164, 180]}
"にほんご".encode("euc-jp").to_json # source sequence is illegal/malformed (JSON::GeneratorError)... -
Encoding
:: Converter # convert(source _ string) -> String (316.0) -
与えられた文字列を変換して、変換できた結果を返します。 引数の末尾の文字がバイト列の途中で終わっている場合、そのバイト列は変換器内に取り置かれます。 変換を終了させるには Encoding::Converter#finish を呼びます。
...ケープしたい場合やさらに細かい指定を行いたい場合は、Encoding::Converter#primitive_convert を用います。
@param source_string 変換する文字列の一部または全部です。
@return 変換結果である文字列の一部または全部です。
@raise Encoding:... -
Gem
:: RemoteFetcher # download(spec , source _ uri , install _ dir = Gem . dir) -> String (231.0) -
source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
...
source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
既に Gem パッケージが存在する場合は、ファイルを置き換えませんが source_uri が
ローカルパス (file://) である場合は常にファイルを置き換えま......す。
@param spec Gem::Specification のインスタンスを指定します。
@param source_uri 取得先の URI を指定します。
@param install_dir ダウンロードしたファイルの配置先を指定します。
@return ローカルにコピーした Gem ファイルのパスを... -
Method
# inspect -> String (121.0) -
self を読みやすい文字列として返します。
.../モジュール名、
method は、メソッド名を表します。
arg は引数を表します。
「foo.rb:2」は Method#source_location を表します。
source_location が nil の場合には付きません。
//emlist[例][ruby]{
module Foo
def foo
"foo"
end
end
class Bar
in......ラスメソッド
class Bar < Foo
end
p Bar.method(:foo) # => #<Method: Bar(Foo).foo() foo.rb:11>
# 以下は(形式1)の出力になる
module Baz
def baz
end
end
class <<obj
include Baz
end
p obj.method(:baz) # => #<Method: String(Baz)#baz() foo.rb:23>
//}
@see Object#inspect... -
Method
# to _ s -> String (121.0) -
self を読みやすい文字列として返します。
.../モジュール名、
method は、メソッド名を表します。
arg は引数を表します。
「foo.rb:2」は Method#source_location を表します。
source_location が nil の場合には付きません。
//emlist[例][ruby]{
module Foo
def foo
"foo"
end
end
class Bar
in......ラスメソッド
class Bar < Foo
end
p Bar.method(:foo) # => #<Method: Bar(Foo).foo() foo.rb:11>
# 以下は(形式1)の出力になる
module Baz
def baz
end
end
class <<obj
include Baz
end
p obj.method(:baz) # => #<Method: String(Baz)#baz() foo.rb:23>
//}
@see Object#inspect...