288件ヒット
[101-200件を表示]
(0.086秒)
別のキーワード
ライブラリ
- ビルトイン (36)
-
irb
/ cmd / load (12) - json (24)
- rake (12)
- resolv (96)
-
rubygems
/ commands / dependency _ command (12) -
rubygems
/ source _ index (72) - win32ole (24)
クラス
-
Encoding
:: InvalidByteSequenceError (12) -
Encoding
:: UndefinedConversionError (12) -
Gem
:: Commands :: DependencyCommand (12) -
Gem
:: SourceIndex (72) -
IRB
:: ExtendCommand :: Source (12) -
JSON
:: Parser (24) - Module (12)
-
Resolv
:: DNS (36) -
Resolv
:: DNS :: Resource :: DomainName (12) -
Resolv
:: DNS :: Resource :: IN :: SRV (12) -
Resolv
:: DNS :: Resource :: MX (12) -
Resolv
:: DNS :: Resource :: SOA (24) -
WIN32OLE
_ TYPE (24)
モジュール
- Kernel (12)
キーワード
-
const
_ source _ location (12) -
default
_ event _ sources (12) - each (24)
-
each
_ resource (12) - exchange (12)
- execute (12)
-
find
_ gems (12) -
find
_ name (12) -
gem
_ signature (12) - getresource (12)
- getresources (12)
- mname (12)
- parse (12)
-
remove
_ spec (12) - rname (12)
- rule (12)
-
source
_ encoding _ name (24) -
source
_ ole _ types (12) - specification (12)
- target (12)
検索結果
先頭5件
- Resolv
:: DNS # getresource(name , typeclass) -> Resolv :: DNS :: Resource - Resolv
:: DNS # getresources(name , typeclass) -> [Resolv :: DNS :: Resource] - Module
# const _ source _ location(name , inherited = true) -> [String , Integer] - WIN32OLE
_ TYPE # default _ event _ sources -> [WIN32OLE _ TYPE] - WIN32OLE
_ TYPE # source _ ole _ types -> [WIN32OLE _ TYPE]
-
Resolv
:: DNS # getresource(name , typeclass) -> Resolv :: DNS :: Resource (6330.0) -
nameに対応するDNSリソースレコードを取得します。 最初に見つかったリソースを返します。
...nameに対応するDNSリソースレコードを取得します。
最初に見つかったリソースを返します。
typeclass は以下のいずれかです。
* Resolv::DNS::Resource::IN::ANY
* Resolv::DNS::Resource::IN::NS
* Resolv::DNS::Resource::IN::CNAME
* Resolv::DNS::Resource:......NS::Resource::IN::HINFO
* Resolv::DNS::Resource::IN::MINFO
* Resolv::DNS::Resource::IN::MX
* Resolv::DNS::Resource::IN::TXT
* Resolv::DNS::Resource::IN::A
* Resolv::DNS::Resource::IN::WKS
* Resolv::DNS::Resource::IN::PTR
* Resolv::DNS::Resource::IN::AAAA
* Resolv::DNS::Resource::IN::......lv::DNS::Resource (のサブクラス)のインスタンスとなります。
typeclass に Resolv::DNS::Resource::IN::ANY 以外を指定した場合には
そのクラスのインスタンスを返します。
@param name ルックアップ対象となる名前を Resolv::DNS::Name または... -
Resolv
:: DNS # getresources(name , typeclass) -> [Resolv :: DNS :: Resource] (6330.0) -
nameに対応するDNSリソースレコードを取得します。 見つかったリソース全てを配列にして返します。
...nameに対応するDNSリソースレコードを取得します。
見つかったリソース全てを配列にして返します。
typeclass は以下のいずれかです。
* Resolv::DNS::Resource::IN::ANY
* Resolv::DNS::Resource::IN::NS
* Resolv::DNS::Resource::IN::CNAME
* Resolv::DN......S::Resource::IN::SOA
* Resolv::DNS::Resource::IN::HINFO
* Resolv::DNS::Resource::IN::MINFO
* Resolv::DNS::Resource::IN::MX
* Resolv::DNS::Resource::IN::TXT
* Resolv::DNS::Resource::IN::A
* Resolv::DNS::Resource::IN::WKS
* Resolv::DNS::Resource::IN::PTR
* Resolv::DNS::Resource::IN::AA......olv::DNS::Resource::IN::SRV
ルックアップ結果は Resolv::DNS::Resource (のサブクラス)のインスタンスとなります。
typeclass に Resolv::DNS::Resource::IN::ANY 以外を指定した場合には
そのクラスのインスタンスを返します。
@param name ルック... -
Module
# const _ source _ location(name , inherited = true) -> [String , Integer] (6291.0) -
name で指定した定数の定義を含むソースコードのファイル名と行番号を配列で返します。
...
name で指定した定数の定義を含むソースコードのファイル名と行番号を配列で返します。
@param name Symbol,String で定数の名前を指定します。
@param inherited true を指定するとスーパークラスや include したモジュールで定義され......_source_location('C4') # => ["test.rb", 12]
p B.const_source_location('C3') # => ["test.rb", 7]
p B.const_source_location('C1') # => ["test.rb", 2]
p B.const_source_location('C3', false) # => nil -- include したモジュールは検索しない
p A.const_source_......す
p Object.const_source_location('B') # => ["test.rb", 10] -- Object はトップレベルの定数を検索する
p Object.const_source_location('A') # => ["test.rb", 1] -- クラスが再定義された場合は最初の定義位置を返す
p B.const_source_location('A')... -
WIN32OLE
_ TYPE # default _ event _ sources -> [WIN32OLE _ TYPE] (6137.0) -
型が持つソースインターフェイスを取得します。
...型が持つソースインターフェイスを取得します。
default_event_sourcesメソッドは、selfがCoClass(コンポーネントクラス)
の場合、そのクラスがサポートするデフォルトのソースインターフェイス(イ
ベントの通知元となるイン......は空配列を返します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Worksheet')
tobj.default_event_sources.map {|intf| intf.name} #=> ["DocEvents"]
WIN32OLE_EVENT.newでインターフェイス名を指定しない場合は、ここで
返されたインターフ......er')
ctl = WIN32OLE.new(type.progid)
source = type.default_event_sources[0]
class WebEvent
def initialize
@completed = false
end
attr_reader :completed
end
source.ole_methods.each do |m|
WebEvent.module_eval do
define_method("on#{m.name}") do |*arg|
if arg[0] == "... -
WIN32OLE
_ TYPE # source _ ole _ types -> [WIN32OLE _ TYPE] (6120.0) -
型が持つソースインターフェイスを取得します。
...型が持つソースインターフェイスを取得します。
source_ole_typesメソッドは、selfがCoClass(コンポーネントクラス)の場合、
そのクラスがサポートするすべてのソースインターフェイス(イベントの通知
元となるインターフ......ェイスをWIN32OLE_TYPEの配列として返します。
ソースインターフェイスを持たない場合は空配列を返します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Worksheet')
tobj.source_ole_types.map {|intf| intf.name} #=> ["DocEvents"]... -
Gem
:: SourceIndex # gem _ signature(gem _ full _ name) -> String (3108.0) -
与えられた名前を持つ Gem の SHA256 ダイジェストを返します。
...与えられた名前を持つ Gem の SHA256 ダイジェストを返します。
@param gem_full_name Gem の名前を指定します。... -
Gem
:: SourceIndex # specification(full _ name) -> Gem :: Specification | nil (3108.0) -
指定された名前の Gem::Specification オブジェクトを返します。
...指定された名前の Gem::Specification オブジェクトを返します。
@param full_name Gem のフルネームを指定します。... -
IRB
:: ExtendCommand :: Source # execute(file _ name) -> nil (3108.0) -
現在の irb インタプリタ上で、 Ruby スクリプト path を評価します。
...y スクリプト path を評価します。
path の内容を irb で一行ずつタイプしたかのように、irb 上で一行ずつ評価
されます。$" は更新されず、何度でも実行し直す事ができます。
@param file_name ファイル名を文字列で指定します。... -
Gem
:: SourceIndex # each {|full _ name , gem| . . . } -> Hash (3102.0) -
自身に登録されているそれぞれの Gem についてブロックを評価します。
自身に登録されているそれぞれの Gem についてブロックを評価します。