1800件ヒット
[1-100件を表示]
(0.052秒)
クラス
- Module (12)
-
Rake
:: Application (132) -
Rake
:: DefaultLoader (12) -
Rake
:: EarlyTime (24) -
Rake
:: FileCreationTask (24) -
Rake
:: FileList (264) -
Rake
:: FileTask (24) -
Rake
:: GemPackageTask (48) -
Rake
:: InvocationChain (36) -
Rake
:: InvocationChain :: EmptyInvocationChain (36) -
Rake
:: MakefileLoader (12) -
Rake
:: PackageTask (240) -
Rake
:: RDocTask (192) -
Rake
:: Task (228) -
Rake
:: TaskArguments (36) -
Rake
:: TestTask (132) - String (60)
モジュール
- FileUtils (48)
- Kernel (84)
-
Rake
:: TaskManager (120) - RakeFileUtils (36)
キーワード
- * (12)
- <=> (12)
- == (12)
- [] (12)
- actions (12)
-
add
_ description (12) -
add
_ loader (12) - append (24)
- application (12)
- application= (12)
-
arg
_ description (12) -
clear
_ actions (12) -
clear
_ exclude (12) -
clear
_ prerequisites (12) - comment (12)
- define (48)
-
define
_ task (12) - desc (12)
- directory (12)
- egrep (12)
- enhance (12)
-
enhance
_ with _ matching _ rule (12) - exclude (12)
-
excluded
_ from _ list? (12) - execute (12)
- existing (12)
- existing! (12)
- ext (24)
- file (12)
-
file
_ create (12) -
full
_ comment (12) -
gem
_ file (12) -
gem
_ spec (12) - gsub (12)
- gsub! (12)
- import (24)
-
in
_ namespace (12) - include (12)
- init (36)
- inspect (24)
- intern (12)
- investigation (12)
- invoke (12)
-
is
_ a? (12) -
kind
_ of? (12) -
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) - libs (12)
- libs= (12)
- load (24)
-
load
_ rakefile (12) - lookup (12)
- main (12)
- main= (12)
- member? (24)
- multitask (12)
- name (60)
- namespace (12)
-
need
_ zip (12) -
need
_ zip= (12) - needed? (24)
- nowrite (12)
-
option
_ list (12) -
option
_ string (12) -
original
_ dir (12) -
package
_ dir (12) -
package
_ dir= (12) -
package
_ dir _ path (12) -
package
_ files (12) -
package
_ files= (12) -
package
_ name (12) - pathmap (24)
-
pathmap
_ explode (12) -
pathmap
_ partial (12) -
pathmap
_ replace (12) - pattern (12)
- prerequisites (12)
- quote (12)
-
rake
_ extension (12) - rakefile (12)
-
rdoc
_ dir (12) -
rdoc
_ dir= (12) -
rdoc
_ files (12) -
rdoc
_ files= (12) - resolve (12)
- ruby (12)
-
ruby
_ opts= (12) - run (12)
-
safe
_ ln (12) - sh (12)
- source (12)
-
split
_ all (12) - sub (12)
- sub! (12)
-
synthesize
_ file _ task (12) -
tar
_ bz2 _ file (12) -
tar
_ command (12) -
tar
_ gz _ file (12) - template (12)
-
test
_ files= (12) -
tgz
_ file (12) - title (12)
- title= (12)
-
to
_ a (12) -
to
_ ary (12) -
to
_ s (72) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12) - verbose (12)
- version (12)
- version= (12)
- warning (12)
- warning= (12)
-
when
_ writing (12) -
with
_ defaults (12) -
zip
_ command (12) -
zip
_ command= (12) -
zip
_ file (12)
検索結果
先頭5件
-
Rake
:: InvocationChain :: EmptyInvocationChain # append(task _ name) -> Rake :: InvocationChain (12203.0) -
与えられた値を追加した Rake::InvocationChain を返します。
...与えられた値を追加した Rake::InvocationChain を返します。
@param task_name 追加する値を指定します。... -
Rake
:: InvocationChain :: EmptyInvocationChain # to _ s -> String (12103.0) -
'TOP' という文字列を返します。
'TOP' という文字列を返します。 -
Rake
:: InvocationChain :: EmptyInvocationChain # member?(task _ name) -> bool (12003.0) -
偽を返します。
偽を返します。 -
FileUtils
# split _ all(path) -> Array (9103.0) -
与えられたパスをディレクトリごとに分割します。
...与えられたパスをディレクトリごとに分割します。
@param path 分割するパスを指定します。
例:
split_all("a/b/c") # => ['a', 'b', 'c']... -
RakeFileUtils
# nowrite(value = nil) { . . . } (9103.0) -
ファイルを書き込むかどうかを制御します。
...am value 真を指定するとファイルを書き込みません。
例:
nowrite # 現在の状態を返します。
nowrite(v) # 与えられた状態に変更します。
nowrite(v) { code } # ブロックを評価する間だけ与えられた状態に変更... -
RakeFileUtils
# when _ writing(msg = nil) { . . . } (9103.0) -
RakeFileUtils.nowrite_flag が真である場合与えられたブロックを実行せずに、 与えられたメッセージを表示します。
...
RakeFileUtils.nowrite_flag が真である場合与えられたブロックを実行せずに、
与えられたメッセージを表示します。
そうでない場合は、与えられたブロックを実行します。
@param msg 表示するメッセージを指定します。
例:
when......_writing("Building Project") do
project.build
end... -
Rake
:: FileTask # timestamp -> Time | Rake :: LateTime (6303.0) -
ファイルタスクのタイムスタンプを返します。
...ファイルタスクのタイムスタンプを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: "test.txt"
file "test.txt" do |task|
Rake.application.options.build_all = false
task.timestamp # => #<Rake::LateTime:0x2ba58f0>
end
//}... -
Kernel
# directory(dir) -> () (6203.0) -
与えられたディレクトリを作成するタスクを定義します。
...与えられたディレクトリを作成するタスクを定義します。
@param dir 作成するディレクトリを指定します。
例:
directory 'testdata/doc'... -
Kernel
# file(*args) { . . . } -> Rake :: FileTask (6203.0) -
ファイルタスクを定義します。
...ル名を指定します。
例:
file "config.cfg" => ["config.template"] do
open("config.cfg", "w") do |outfile|
open("config.template") do |infile|
while line = infile.gets
outfile.puts line
end
end
end
end
@see Rake::Task.define_task...