534件ヒット
[1-100件を表示]
(0.083秒)
別のキーワード
ライブラリ
- ビルトイン (173)
- csv (12)
-
io
/ console (24) -
minitest
/ unit (1) - optparse (12)
-
rdoc
/ context (12) -
rexml
/ document (96) -
rexml
/ parsers / pullparser (12) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) -
rubygems
/ dependency _ installer (24) -
rubygems
/ installer (48) -
rubygems
/ specification (36) -
rubygems
/ uninstaller (12) -
rubygems
/ user _ interaction (12) -
webrick
/ httpservlet / prochandler (12)
クラス
- CSV (12)
- Exception (12)
-
Gem
:: DependencyInstaller (24) -
Gem
:: Installer (48) -
Gem
:: Specification (36) -
Gem
:: StreamUI (12) -
Gem
:: Uninstaller (12) - IO (24)
-
OptionParser
:: ParseError (12) -
RDoc
:: Context :: Section (12) -
REXML
:: Element (12) -
REXML
:: Instruction (84) -
REXML
:: Parsers :: PullEvent (12) - Rational (12)
-
RubyVM
:: InstructionSequence (130) -
Thread
:: Backtrace :: Location (12) - TracePoint (7)
-
WEBrick
:: HTTPServlet :: ProcHandler (12)
モジュール
-
Gem
:: InstallUpdateOptions (24) -
MiniTest
:: Assertions (1) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- == (12)
-
absolute
_ path (12) -
assert
_ instance _ of (1) -
base
_ label (12) -
build
_ extensions (12) - clone (12)
- content (12)
- content= (12)
- disasm (12)
- disassemble (12)
- eval (12)
-
find
_ spec _ by _ name _ and _ version (12) -
first
_ lineno (12) -
get
_ instance (12) - inspect (84)
- install (24)
-
install
_ update _ defaults _ str (12) -
installation
_ path (12) -
installation
_ satisfies _ dependency? (12) - instruction (12)
- instruction? (12)
-
instruction
_ sequence (7) - instructions (12)
- label (12)
-
node
_ type (12) - path (12)
-
processing
_ instruction (12) - spec (24)
- target (12)
- target= (12)
-
to
_ a (12) -
to
_ binary (10) - winsize (12)
- winsize= (12)
検索結果
先頭5件
-
IO
# winsize -> [Integer , Integer] (27101.0) -
端末のサイズを [rows, columns] で返します。
端末のサイズを [rows, columns] で返します。 -
IO
# winsize=(size) (27101.0) -
端末のサイズを設定します。
端末のサイズを設定します。
@param size [rows, columns] を数値の配列で指定します。
効果はプラットフォームや環境に依存します。 -
Gem
:: StreamUI # ins -> IO (18203.0) -
この UI にセットされている入力ストリームを返します。
この UI にセットされている入力ストリームを返します。 -
Gem
:: InstallUpdateOptions # add _ install _ update _ options (18201.0) -
インストールとアップデートに関するオプションを追加します。
インストールとアップデートに関するオプションを追加します。 -
Gem
:: Installer # installation _ satisfies _ dependency?(dependency) -> bool (15201.0) -
登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。
登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。
@param dependency Gem::Dependency のインスタンスを指定します。 -
Gem
:: Specification # installation _ path -> String (15201.0) -
この Gem パッケージのインストール先のパスを返します。
この Gem パッケージのインストール先のパスを返します。 -
REXML
:: Element # instructions -> [REXML :: Instraction] (12401.0) -
すべての instruction 子ノードの配列を返します。
...すべての instruction 子ノードの配列を返します。
返される配列は freeze されます。... -
REXML
:: StreamListener # instruction(name , instruction) -> () (12401.0) -
XML処理命令(PI)をパースしたときに呼び出されるコールバックメソッドです。
...e ターゲット名が文字列で渡されます
@param instruction 処理命令の内容が文字列で渡されます
=== 例
<?xml-stylesheet type="text/css" href="style.css"?>
というPIに対し
name: "xml-stylesheet"
instruction: " type=\"text/css\" href=\"style.css\""
という引... -
TracePoint
# instruction _ sequence -> RubyVM :: InstructionSequence (12401.0) -
script_compiledイベント発生時にコンパイルされた RubyVM::InstructionSequenceインスタンスを返します。
...compiledイベント発生時にコンパイルされた
RubyVM::InstructionSequenceインスタンスを返します。
//emlist[例][ruby]{
TracePoint.new(:script_compiled) do |tp|
p tp.instruction_sequence # => <RubyVM::InstructionSequence:block in <main>@(eval):1>
end.enable do
eval("puts '...