108件ヒット
[1-100件を表示]
(0.010秒)
ライブラリ
- pathname (12)
-
rubygems
/ command (12) -
rubygems
/ installer (24) -
rubygems
/ require _ paths _ builder (12) -
rubygems
/ specification (24) -
rubygems
/ uninstaller (12) -
webrick
/ httpserver (12)
クラス
-
Gem
:: Command (12) -
Gem
:: Installer (24) -
Gem
:: Specification (24) -
Gem
:: Uninstaller (12) - Pathname (12)
-
WEBrick
:: HTTPServer (12)
モジュール
キーワード
-
add
_ extra _ args (12) -
gem
_ home (24) - homepage (12)
- homepage= (12)
- install (12)
- mount (12)
-
sub
_ ext (12) -
write
_ require _ paths _ file _ if _ needed (12)
検索結果
先頭5件
-
Gem
:: Installer # gem _ home -> String (6102.0) -
Gem のインストール先を返します。
Gem のインストール先を返します。 -
Gem
:: Uninstaller # gem _ home -> String (6102.0) -
Gem がインストールされているディレクトリを返します。
Gem がインストールされているディレクトリを返します。 -
Gem
:: Specification # homepage -> String (6101.0) -
この Gem パッケージを作成しているプロジェクトか作成者のウェブサイトの URI を返します。
この Gem パッケージを作成しているプロジェクトか作成者のウェブサイトの URI を返します。 -
Gem
:: Specification # homepage=(uri) (6101.0) -
この Gem パッケージを作成しているプロジェクトか作成者のウェブサイトの URI をセットします。
この Gem パッケージを作成しているプロジェクトか作成者のウェブサイトの URI をセットします。
@param uri この Gem パッケージを作成しているプロジェクトか作成者のウェブサイトの URI を指定します。 -
Gem
:: RequirePathsBuilder # write _ require _ paths _ file _ if _ needed(spec = @spec , gem _ home = @gem _ home) (203.0) -
必要であれば、'.require_paths' というファイルを Gem ごとに作成します。
必要であれば、'.require_paths' というファイルを Gem ごとに作成します。 -
Pathname
# sub _ ext(replace) -> Pathname (61.0) -
拡張子を与えられた文字列で置き換えた Pathname オブジェクトを返します。
...n.rb>
Pathname('/home/user/test.txt').sub_ext('.pdf') # => #<Pathname:/home/user/test.pdf>
Pathname('/home/user/test').sub_ext('.pdf') # => #<Pathname:/home/user/test.pdf>
Pathname('/home/user/test.').sub_ext('.pdf') # => #<Pathname:/home/user/test..pdf>
Pathname('/home/user/.test').sub......_ext('.pdf') # => #<Pathname:/home/user/.test.pdf>
Pathname('/home/user/test.tar.gz').sub_ext('.xz') # => #<Pathname:/home/user/test.tar.xz>
//}... -
Gem
:: Command # add _ extra _ args(args) -> Array (17.0) -
$HOME/.gemrc から読み込んだ引数を追加します。
...$HOME/.gemrc から読み込んだ引数を追加します。
@param args 追加する引数を配列で指定します。... -
Gem
:: Installer # install -> Gem :: Specification (7.0) -
Gem をインストールします。
...Gem をインストールします。
以下のディレクトリ構造で Gem をインストールします。
@gem_home/
cache/<gem-version>.gem #=> インストールした Gem のコピー
gems/<gem-version>/... #=> インストール時に展開した... -
WEBrick
:: HTTPServer # mount(dir , servlet , *options) -> () (7.0) -
サーバ上のディレクトリ dir にサーブレット servlet を対応させます。
...定します。
@param options サーブレットのコンストラクタの引数を指定します。
require 'webrick'
include WEBrick
srv = HTTPServer.new( { :BindAddress => '127.0.0.1', :Port => 10080 } )
srv.mount('/img', WEBrick::HTTPServlet::FileHandler, '/home/username/images')...