534件ヒット
[101-200件を表示]
(0.162秒)
別のキーワード
ライブラリ
- ビルトイン (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件
-
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 '... -
REXML
:: Parsers :: PullEvent # instruction? -> bool (12201.0) -
XML処理命令なら真を返します。
XML処理命令なら真を返します。 -
REXML
:: SAX2Listener # processing _ instruction(target , data) -> () (12201.0) -
XML 処理命令(PI)に対し呼び出されるコールバックメソッドです。
XML 処理命令(PI)に対し呼び出されるコールバックメソッドです。
@param target ターゲット名が文字列で渡されます
@param data 処理命令の内容が文字列で渡されます -
Gem
:: InstallUpdateOptions # install _ update _ defaults _ str -> String (12101.0) -
Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。
...Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。
デフォルトのオプションは以下の通りです。
--rdoc --no-force --no-test --wrappers... -
RubyVM
:: InstructionSequence # inspect -> String (12101.0) -
self の情報をラベルとパスを含んだ人間に読みやすい文字列にして返します。
...んだ人間に読みやすい文字列にして返します。
//emlist[例][ruby]{
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
iseq.inspect # => "<RubyVM::InstructionSequence:<compiled>@<compiled>>"
//}
@see RubyVM::InstructionSequence#label,
RubyVM::InstructionSequence#path... -
Gem
:: DependencyInstaller # find _ spec _ by _ name _ and _ version(gem _ name , version = Gem :: Requirement . default) -> Array (9201.0) -
与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と それの存在する URI を含む配列を返します。
...れた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と
それの存在する URI を含む配列を返します。
@param gem_name Gem の名前を指定します。
@param version Gem が満たすバージョンに関する条件を指定します。... -
Gem
:: DependencyInstaller # install(dep _ or _ name , version = Gem :: Requirement . default) -> Array (9201.0) -
指定された Gem とその依存する Gem を全てインストールします。
...m を全てインストールします。
@param dep_or_name Gem の名前か Gem::Dependency のインスタンスを指定します。
@param version バージョンに関する条件を指定します。
@return このメソッドでインストールした Gem のリストを返します。... -
Gem
:: Installer # install -> Gem :: Specification (9201.0) -
Gem をインストールします。
...che/<gem-version>.gem #=> インストールした Gem のコピー
gems/<gem-version>/... #=> インストール時に展開したファイル
specifications/<gem-version>.gemspec #=> gemspec ファイル
@return ロードされた Gem::Specification のイン......返します。
@raise Gem::InstallError 要求された Ruby のバージョンを満たしていない場合に発生します。
@raise Gem::InstallError 要求された RubyGems のバージョンを満たしていない場合に発生します。
@raise Gem::InstallError Zlib::GzipFile::Erro... -
Exception
# inspect -> String (9101.0) -
self のクラス名と message を文字列にして返します。
...self のクラス名と message を文字列にして返します。
//emlist[例][ruby]{
begin
raise "exception"
rescue
p $!.inspect # => "#<RuntimeError: exception>"
end
//}... -
Gem
:: Installer # build _ extensions (9101.0) -
拡張ライブラリをビルドします。
拡張ライブラリをビルドします。
拡張ライブラリをビルドするためのファイルタイプとして有効であるのは、
extconf.rb, configure script, Rakefile, mkmf_files です。