107件ヒット
[1-100件を表示]
(0.125秒)
別のキーワード
ライブラリ
- e2mmap (6)
- logger (1)
-
net
/ telnet (4) - pathname (12)
- pp (12)
- rake (48)
- ripper (12)
-
ripper
/ filter (12)
クラス
-
Logger
:: Application (1) -
Net
:: Telnet (4) - PP (12)
- Pathname (12)
-
Rake
:: Application (24) -
Rake
:: InvocationChain (12) -
Rake
:: InvocationChain :: EmptyInvocationChain (12) - Ripper (12)
-
Ripper
:: Filter (12)
モジュール
キーワード
- append (24)
- appname (1)
-
def
_ exception (6) - entries (12)
- filename (24)
- init (12)
- login (4)
-
object
_ group (12)
検索結果
先頭5件
-
Logger
:: Application # appname -> String (24301.0) -
アプリケーション名を取得します。
アプリケーション名を取得します。 -
Rake
:: Application # name -> String (24108.0) -
アプリケーションの名前を返します。通常は 'rake' という名前を返します。
...アプリケーションの名前を返します。通常は 'rake' という名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.name # => "rake"
end
//}... -
PP
# object _ group(obj) { . . . } -> () (23117.0) -
以下と等価な働きをするもので簡便のために用意されています。 group(1, '#<' + obj.class.name, '>') { ... }
...以下と等価な働きをするもので簡便のために用意されています。
group(1, '#<' + obj.class.name, '>') { ... }
@param obj 表示したいオブジェクトを指定します。
@see PrettyPrint#group... -
Exception2MessageMapper
# def _ exception(exception _ name , message _ format , superclass = StandardError) -> Class (12324.0) -
exception_name という名前の例外クラスを定義します。
...exception_name という名前の例外クラスを定義します。
@param exception_name 定義する例外クラスの名前をシンボルで指定します。
@param message_format メッセージのフォーマット。
@param superclass 定義する例外のスーパークラスを指定... -
Rake
:: InvocationChain # append(task _ name) -> Rake :: InvocationChain (12308.0) -
与えられたタスク名を追加して新しい Rake::InvocationChain を返します。
...します。
@param task_name 追加するタスク名を指定します。
@raise RuntimeError 循環したタスクの呼び出しを検出した場合に発生します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
invocation_ch......ain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.append("task_b") # => LL("task_b", "task_a")
end
//}... -
Rake
:: InvocationChain :: EmptyInvocationChain # append(task _ name) -> Rake :: InvocationChain (12308.0) -
与えられた値を追加した Rake::InvocationChain を返します。
...与えられた値を追加した Rake::InvocationChain を返します。
@param task_name 追加する値を指定します。... -
Ripper
# filename -> String (12101.0) -
自身の持つ Ruby プログラムのファイル名を文字列で返します。
自身の持つ Ruby プログラムのファイル名を文字列で返します。 -
Ripper
:: Filter # filename -> String (12101.0) -
Ruby プログラムのファイル名を文字列で返します。
Ruby プログラムのファイル名を文字列で返します。 -
Rake
:: Application # init(app _ name = & # 39;rake& # 39;) (6314.0) -
コマンドラインオプションとアプリケーション名を初期化します。
...ンドラインオプションとアプリケーション名を初期化します。
//emlist[例][ruby]{
# Rakefile での記載例とする
task default: :test
task :test
Rake.application.name # => "rake"
Rake.application.init("MyApp") # => ["default"]
Rake.application.name # => "MyApp"
//}... -
Pathname
# entries -> [Pathname] (6213.0) -
self に含まれるファイルエントリ名を元にした Pathname オブジェクトの配列を返します。
... Pathname オブジェクトの配列を返します。
@raise Errno::EXXX self が存在しないパスであったりディレクトリでなければ例外が発生します。
//emlist[例][ruby]{
require 'pathname'
require 'pp'
pp Pathname('/usr/local').entries
# => [#<Pathname:.>,
# #<P......athname:..>,
# #<Pathname:bin>,
# #<Pathname:etc>,
# #<Pathname:include>,
# #<Pathname:lib>,
# #<Pathname:opt>,
# #<Pathname:sbin>,
# #<Pathname:share>,
# #<Pathname:var>]
//}
@see Dir.entries...