1039件ヒット
[1001-1039件を表示]
(0.093秒)
別のキーワード
ライブラリ
- ビルトイン (393)
- csv (3)
- delegate (24)
-
drb
/ acl (24) - fiddle (12)
-
irb
/ extend-command (12) - json (12)
-
minitest
/ unit (1) - mkmf (12)
-
net
/ http (24) -
net
/ pop (36) - openssl (72)
- pstore (12)
- rake (24)
-
rexml
/ document (48) -
rubygems
/ config _ file (12) -
rubygems
/ dependency _ installer (12) -
rubygems
/ doc _ manager (12) -
rubygems
/ installer (108) -
rubygems
/ source _ index (12) -
rubygems
/ uninstaller (60) - shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) -
shell
/ process-controller (6) -
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / digestauth (12) -
win32
/ registry (12)
クラス
- ACL (24)
- Array (21)
-
CSV
:: Row (3) - Class (12)
- Delegator (24)
-
Fiddle
:: Closure :: BlockCaller (12) -
Gem
:: ConfigFile (12) -
Gem
:: DependencyInstaller (12) -
Gem
:: DocManager (12) -
Gem
:: Installer (108) -
Gem
:: SourceIndex (12) -
Gem
:: Uninstaller (60) - Hash (67)
- Integer (8)
-
JSON
:: State (12) - Method (38)
- Module (48)
-
Net
:: HTTP (24) -
Net
:: POPMail (36) - NoMethodError (9)
- Object (12)
-
OpenSSL
:: SSL :: SSLContext (48) -
OpenSSL
:: X509 :: Store (24) - PStore (12)
- Proc (14)
-
RDoc
:: Options (36) -
REXML
:: Attributes (12) -
REXML
:: Element (36) -
Rake
:: FileTask (12) - Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) -
Shell
:: ProcessController (6) - TracePoint (12)
- UnboundMethod (12)
-
WEBrick
:: HTTPAuth :: BasicAuth (12) -
WEBrick
:: HTTPAuth :: DigestAuth (12) -
Win32
:: Registry (12)
モジュール
- Enumerable (140)
- FileUtils (12)
-
IRB
:: ExtendCommandBundle (12) - Kernel (12)
-
MiniTest
:: Assertions (1)
キーワード
- << (14)
- >> (14)
- [] (12)
- all? (53)
-
all
_ one _ file (12) - allbits? (8)
- allocate (12)
-
allow
_ addr? (12) -
allow
_ nan? (12) -
allow
_ socket? (12) -
ask
_ if _ ok (12) -
bin
_ dir (24) -
bind
_ call (12) -
build
_ extensions (12) - call (36)
-
callee
_ id (12) - challenge (24)
- context (12)
- create (12)
- deconstruct (3)
- delete (24)
-
delete
_ all (12) -
dependencies
_ ok? (12) - filter (14)
-
find
_ all (24) -
find
_ spec _ by _ name _ and _ version (12) -
finish
_ all _ jobs (18) -
generate
_ bin (12) -
generate
_ bin _ script (12) -
generate
_ bin _ symlink (12) -
generate
_ windows _ script (12) - glob (18)
-
hyperlink
_ all (12) - index (7)
-
install
_ alias _ method (12) -
install
_ rb (12) -
installation
_ satisfies _ dependency? (12) - key (12)
- lazy (12)
- mail (12)
- needed? (12)
-
path
_ ok? (12) - pop (12)
-
private
_ call? (9) -
protected
_ methods (12) - public (48)
-
public
_ methods (12) - raw (12)
-
rdoc
_ installed? (12) -
really
_ verbose (12) -
remove
_ executables (12) -
respond
_ to? (12) - select (24)
- shebang (12)
- shift (12)
-
show
_ all (12) - skip (1)
-
slice
_ before (24) -
split
_ all (12) - tally (10)
-
tmp
_ dh _ callback (12) -
tmp
_ dh _ callback= (12) -
ultra
_ safe (12) - update (12)
-
verify
_ callback (36) -
verify
_ callback= (36) -
wait
_ all _ jobs _ execution (6) - whitespace (12)
-
windows
_ stub _ script (12)
検索結果
先頭4件
-
PStore
# ultra _ safe -> bool (107.0) -
真であれば、パフォーマンスと引き換えにファイル更新の衝突を避けることができます。 デフォルトは偽です。
...真であれば、パフォーマンスと引き換えにファイル更新の衝突を避けることができます。
デフォルトは偽です。
このフラグの効果があるのは一部のプラットフォームだけです。
(e.g. all POSIX platforms: Linux, Mac OS X, FreeBSD, etc)... -
REXML
:: Element # raw -> bool (107.0) -
その要素が raw モードであるならば真を返します。
...その要素が raw モードであるならば真を返します。
以下のいずれかであれば、raw モードであると判定されます。
* REXML::Element#context の :raw が :all である
* context の :raw の配列に self の要素名が含まれる... -
REXML
:: Element # whitespace -> bool (107.0) -
要素(self)内で空白が考慮されるならば真を返します。
...が含まれていて、
:compress_whitespace に self の要素名が含まれていない。
「含まれている」というのには :all が指定されている場合と、
配列に含まれている場合の両方があります。
のいずれかの場合に真を返します... -
Rake
:: FileTask # needed? -> bool (107.0) -
このタスクが必要である場合は真を返します。 そうでない場合は偽を返します。
...うとしているファイルが古い場合に真を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: "test.txt"
file "test.txt" do |task|
Rake.application.options.build_all = false
task.needed? # => true
IO.write("test.txt", "test")
task.needed? # => fa...