513件ヒット
[101-200件を表示]
(0.095秒)
ライブラリ
- ビルトイン (55)
- etc (12)
- json (12)
- mkmf (24)
-
net
/ ftp (140) - psych (12)
- rake (12)
-
rake
/ packagetask (24) -
rake
/ rdoctask (12) -
rubygems
/ gem _ path _ searcher (12) -
rubygems
/ indexer (24) -
rubygems
/ installer (12) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (24) -
rubygems
/ specification (12) -
rubygems
/ uninstaller (12) -
rubygems
/ validator (12) - shell (42)
-
shell
/ command-processor (6) -
shell
/ filter (6)
クラス
- Class (12)
- Dir (55)
-
Etc
:: Passwd (12) -
Gem
:: GemPathSearcher (12) -
Gem
:: Indexer (24) -
Gem
:: Installer (12) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (24) -
Gem
:: Specification (12) -
Gem
:: Uninstaller (12) -
Gem
:: Validator (12) -
Net
:: FTP (120) -
Net
:: FTP :: MLSxEntry (20) -
Psych
:: Nodes :: Document (12) -
RDoc
:: Options (24) -
Rake
:: Application (12) -
Rake
:: PackageTask (24) -
Rake
:: RDocTask (12) - Shell (42)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6)
モジュール
- Kernel (24)
キーワード
-
bin
_ dir (24) - bindir (12)
-
cache
_ dir (12) - children (7)
- cwd (6)
-
dest
_ directory (12) -
dir
_ config (12) -
dir
_ stack (6) - directory (12)
- dirname (18)
- dirs (6)
- download (12)
-
dummy
_ makefile (12) - facts (10)
- getdir (12)
- getwd (6)
- inspect (12)
-
json
_ creatable? (12) -
lib
_ dirs _ for (12) - list (24)
- ls (24)
- mkdir (12)
- nlst (12)
-
op
_ dir (12) -
original
_ dir (12) -
package
_ dir (12) -
package
_ dir _ path (12) - path (12)
- pwd (18)
-
rdoc
_ dir (12) - read (12)
-
remove
_ leading _ dot _ dir (12) -
spec
_ dirs (12) -
tag
_ directives (12) -
template
_ dir (12) -
to
_ path (12) - type (10)
検索結果
先頭5件
-
Dir
# to _ path -> String (9109.0) -
オープンしているディレクトリのパス名を文字列で返します。
...オープンしているディレクトリのパス名を文字列で返します。
//emlist[例][ruby]{
Dir.open("..") do |d|
d.path # => ".."
d.to_path # => ".."
end
//}... -
Kernel
# dir _ config(target , idefault = nil , ldefault = nil) -> [String , String] (6338.0) -
configure オプション --with-TARGET-dir, --with-TARGET-include, --with-TARGET-lib をユーザが extconf.rb に指定できるようにします。
...configure オプション
--with-TARGET-dir,
--with-TARGET-include,
--with-TARGET-lib
をユーザが extconf.rb に指定できるようにします。
--with-TARGET-dir オプションは
システム標準ではない、
ヘッダファイルやライブラリがあるディレクトリをま......とめて指定するために使います。
ユーザが extconf.rb に --with-TARGET-dir=PATH を指定したときは
$CFLAGS に "-IPATH/include" を、
$LDFLAGS に "-LPATH/lib" を、
それぞれ追加します。
--with-TARGET-include オプションは
システム標準ではないヘッ......ldefault システム標準ではないライブラリのディレクトリのデフォルト値を指定します。
例
require 'mkmf'
# xml2 の configure オプションを指定できるようにします。
xml2_dirs = dir_config('xml2', '/opt/local/include/libxml2', '/opt/local/lib')... -
Psych
:: Nodes :: Document # tag _ directives -> [[String , String]] (6303.0) -
tag directive の配列を返します。
...tag directive の配列を返します。
@see Psych::Nodes::Document#tag_directives=,
Psych::Nodes::Document.new... -
Net
:: FTP # mkdir(dirname) -> String (6302.0) -
リモートサーバ上にディレクトリを作成します。
...リモートサーバ上にディレクトリを作成します。
作成に失敗した場合には例外が発生します。
@param dirname 作成するディレクトリ名を文字列で指定します。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise N... -
Rake
:: Application # original _ dir -> String (6215.0) -
rake コマンドを実行したディレクトリを返します。
...rake コマンドを実行したディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.original_dir # => "/path/to/dir"
end
//}... -
Rake
:: PackageTask # package _ dir -> String (6209.0) -
パッケージに入れるファイルを保存するディレクトリ名を返します。
...パッケージに入れるファイルを保存するディレクトリ名を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
require 'rake/packagetask'
Rake::PackageTask.new("sample", "1.0.0") do |package_task|
package_task.package_dir # => "pkg"
end
//}... -
Rake
:: PackageTask # package _ dir _ path -> String (6209.0) -
パッケージに含むファイルを配置するディレクトリを返します。
...パッケージに含むファイルを配置するディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
require 'rake/packagetask'
Rake::PackageTask.new("sample", "1.0.0") do |package_task|
package_task.package_dir_path # => "pkg/sample-1.0.0"
end
//}... -
Shell
# dir _ stack -> [String] (6204.0) -
@todo
@todo -
Shell
# dirs -> [String] (6204.0) -
@todo
@todo -
Gem
:: Installer # bin _ dir -> String (6203.0) -
実行ファイルをインストールするディレクトリを返します。
実行ファイルをインストールするディレクトリを返します。