840件ヒット
[801-840件を表示]
(0.079秒)
ライブラリ
- ビルトイン (72)
- mkmf (48)
-
net
/ http (36) - optparse (12)
- pstore (12)
- rake (588)
-
rake
/ loaders / makefile (12) -
rubygems
/ dependency _ installer (24) - win32ole (24)
- zlib (12)
クラス
-
Gem
:: DependencyInstaller (24) - Hash (12)
- Module (48)
- OptionParser (12)
- PStore (12)
-
Rake
:: Application (84) -
Rake
:: FileList (204) -
Rake
:: FileTask (24) -
Rake
:: InvocationChain (36) -
Rake
:: MakefileLoader (12) -
Rake
:: TaskArguments (60) -
WIN32OLE
_ PARAM (12) -
WIN32OLE
_ TYPE (12) -
Zlib
:: Deflate (12)
モジュール
- Enumerable (12)
- Kernel (48)
-
Net
:: HTTPHeader (36) -
Rake
:: Cloneable (24) -
Rake
:: TaskManager (156)
キーワード
- == (12)
- [] (24)
- append (12)
- chunk (12)
- clear (12)
-
clear
_ exclude (12) - clone (12)
-
create
_ rule (12) -
current
_ scope (12) -
default
_ event _ sources (12) -
default
_ proc= (12) -
define
_ task (12) - dup (12)
- egrep (12)
-
enable
_ config (24) -
excluded
_ from _ list? (12) - existing (12)
- existing! (12)
- ext (12)
- fetch (48)
-
find
_ spec _ by _ name _ and _ version (12) - gsub! (12)
- import (12)
-
in
_ namespace (12) - install (12)
- intern (12)
-
is
_ a? (12) -
kind
_ of? (12) -
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) - load (12)
- lookup (12)
- member? (12)
- name (12)
- names (12)
- needed? (12)
-
new
_ scope (12) -
original
_ dir (12) - params (12)
- parse! (12)
- pathmap (12)
- public (48)
- rakefile (12)
- resolve (12)
- sub! (12)
-
synthesize
_ file _ task (12) - tasks (12)
-
to
_ a (12) -
to
_ ary (12) -
to
_ hash (12) -
to
_ s (24) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12) -
with
_ config (24) -
with
_ defaults (12)
検索結果
先頭4件
-
Rake
:: TaskManager # define _ task(task _ class , *args) { . . . } -> Rake :: Task (13.0) -
タスクを定義します。
...s タスククラスを指定します。
@param args タスクに渡すパラメータを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.define_task(Rake::Task, :t) # => <Rake::Task t => []>
end
//}... -
Rake
:: TaskManager # intern(task _ class , task _ name) -> Rake :: Task (13.0) -
タスクを検索します。
...[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do |task|
task.application.intern(Rake::Task, "test_rake_app") # => <Rake::Task test_rake_app => []>
task.application.intern(Rake::Task, "sample_task") # => <Rake::Task sample_task => []>
end
//}... -
Rake
:: TaskManager # lookup(task _ name , initial _ scope = nil) -> Rake :: Task | nil (13.0) -
与えられたタスク名にマッチするタスクを検索します。
...名を指定します。
@param initial_scope 検索するスコープを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do |task|
task.application.lookup("test_rake_app") # => <Rake::Task test_rake_app => []>
end
//}... -
Rake
:: TaskManager # synthesize _ file _ task(task _ name) -> Rake :: FileTask | nil (13.0) -
与えられたタスク名をもとにファイルタスクを合成します。
...by]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do |task|
task.application.synthesize_file_task("sample_file") # => nil
IO.write("sample_file", "")
task.application.synthesize_file_task("sample_file") # => <Rake::FileTask sample_file => []>
end
//}...