552件ヒット
[1-100件を表示]
(0.036秒)
クラス
-
Rake
:: Application (132) -
Rake
:: FileCreationTask (24) -
Rake
:: FileList (84) -
Rake
:: FileTask (12) -
Rake
:: GemPackageTask (12) -
Rake
:: InvocationChain (36) -
Rake
:: InvocationChain :: EmptyInvocationChain (36) -
Rake
:: PackageTask (12) -
Rake
:: RDocTask (24) -
Rake
:: Task (36) -
Rake
:: TestTask (24) - String (48)
モジュール
- FileUtils (36)
- Kernel (12)
-
Rake
:: TaskManager (24)
キーワード
-
add
_ loader (12) - append (24)
- application (12)
- application= (12)
-
create
_ rule (12) - egrep (12)
-
enhance
_ with _ matching _ rule (12) - exclude (12)
-
file
_ create (12) -
gem
_ spec (12) - gsub (12)
- gsub! (12)
- init (12)
- investigation (12)
-
load
_ rakefile (12) - member? (24)
- name (12)
- needed? (12)
-
original
_ dir (12) -
package
_ dir _ path (12) - pathmap (24)
-
pathmap
_ explode (12) -
pathmap
_ partial (12) -
pathmap
_ replace (12) - pattern (12)
- pattern= (12)
- rakefile (12)
- ruby (12)
- run (12)
- sh (12)
-
split
_ all (12) - sub (12)
- sub! (12)
- template (12)
- template= (12)
-
to
_ s (24) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12)
検索結果
先頭5件
-
Kernel
# file _ create(*args) { . . . } -> Rake :: FileCreationTask (6203.0) -
ファイルを作成するタスクを定義します。
ファイルを作成するタスクを定義します。
主に Kernel.#directory を定義するために使用します。 -
Rake
:: Task # application -> Rake :: Application (6203.0) -
自身を所有している Rake::Application のインスタンスを返します。
...自身を所有している Rake::Application のインスタンスを返します。... -
String
# pathmap _ replace(patterns) { . . . } -> String (6203.0) -
与えられたパスを前もって置き換えます。
...与えられたパスを前もって置き換えます。
@param patterns 'pat1,rep1;pat2,rep2;...' のような形式で置換パターンを指定します。... -
Rake
:: RDocTask # template=(template) (6202.0) -
使用するテンプレートをセットします。
...使用するテンプレートをセットします。
@param template 使用するテンプレートを指定します。... -
Rake
:: TestTask # pattern=(pattern) (6202.0) -
テストファイルにマッチする glob パターンを指定します。
テストファイルにマッチする glob パターンを指定します。 -
Rake
:: FileList # pathmap(spec = nil) -> Rake :: FileList (6103.0) -
各要素に String#pathmap を適用した新しい Rake::FileList を返します。
...各要素に String#pathmap を適用した新しい Rake::FileList を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.pathmap("%n") # => ["test1",......"test2", "test3"]
end
//}
@see String#pathmap... -
Rake
:: InvocationChain :: EmptyInvocationChain # append(task _ name) -> Rake :: InvocationChain (6103.0) -
与えられた値を追加した Rake::InvocationChain を返します。
...与えられた値を追加した Rake::InvocationChain を返します。
@param task_name 追加する値を指定します。... -
Rake
:: Task # application=(app) (6103.0) -
自身を所有している Rake::Application のインスタンスをセットします。
...自身を所有している Rake::Application のインスタンスをセットします。
@param app 自身を所有しているアプリケーションを指定します。... -
Rake
:: Task # investigation -> String (6103.0) -
自身の詳しい内部状態を文字列化して返します。
自身の詳しい内部状態を文字列化して返します。
このメソッドはデバッグに便利です。