るりまサーチ

最速Rubyリファレンスマニュアル検索!
1441件ヒット [1-100件を表示] (0.098秒)
トップページ > クエリ:i[x] > クエリ:-[x] > ライブラリ:rake[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. matrix i
  5. csv to_i

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

Rake::InvocationChain::EmptyInvocationChain#append(task_name) -> Rake::InvocationChain (12302.0)

与えられた値を追加した Rake::InvocationChain を返します。

...与えられた値を追加した Rake::InvocationChain を返します。

@param task_name 追加する値を指定します。...

Rake::InvocationChain::EmptyInvocationChain#to_s -> String (12202.0)

'TOP' という文字列を返します。

'TOP' という文字列を返します。

Rake::InvocationChain::EmptyInvocationChain#member?(task_name) -> bool (12102.0)

偽を返します。

偽を返します。

FileUtils#split_all(path) -> Array (9202.0)

与えられたパスをディレクトリごとに分割します。

...与えられたパスをディレクトリごとに分割します。

@param path 分割するパスを指定します。

例:
split_all("a/b/c") # => ['a', 'b', 'c']...

RakeFileUtils.nowrite_flag -> bool (9202.0)

この値が真の場合、実際のファイル書き込みをともなう操作は行いません。 そうでない場合、ファイル書き込みを行います。

...ァイル書き込みをともなう操作は行いません。
そうでない場合、ファイル書き込みを行います。

//emlist[][ruby]{
# Rakefile での記載例とする
task default: :sample_file_task

file :sample_file_task do |t|
Rake
FileUtils.nowrite_flag # => false
end
//}...

絞り込み条件を変える

Rake::InvocationChain::EMPTY -> Rake::InvocationChain::EmptyInvocationChain (6502.0)

Rake::InvocationChain::EmptyInvocationChain のインスタンスを表します。

...
Rake
::InvocationChain::EmptyInvocationChain のインスタンスを表します。...

Rake::FileTask#timestamp -> Time | Rake::LateTime (6402.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
//}...

Rake::InvocationChain.append(task_name, chain) -> Rake::InvocationChain (6402.0)

与えられたタスク名を第二引数の Rake::InvocationChain に追加します。

... Rake::InvocationChain に追加します。

@param task_name タスク名を指定します。

@param chain 既に存在する Rake::InvocationChain のインスタンスを指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_a...
...pp do
chain = Rake::InvocationChain::EMPTY
b = Rake::InvocationChain.append("task_a", chain)
b.to_s # => "TOP => task_a"
end
//}...

Kernel#directory(dir) -> () (6302.0)

与えられたディレクトリを作成するタスクを定義します。

...与えられたディレクトリを作成するタスクを定義します。

@param dir 作成するディレクトリを指定します。

例:
directory 'testdata/doc'...

Kernel#file(*args) { ... } -> Rake::FileTask (6302.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...

絞り込み条件を変える

<< 1 2 3 ... > >>