360件ヒット
[1-100件を表示]
(0.124秒)
別のキーワード
ライブラリ
- rake (312)
-
rake
/ loaders / makefile (12) -
rake
/ packagetask (24) -
rubygems
/ installer (12)
クラス
-
Gem
:: Installer (12) -
Rake
:: Application (132) -
Rake
:: FileList (96) -
Rake
:: FileTask (12) -
Rake
:: InvocationChain (36) -
Rake
:: MakefileLoader (12) -
Rake
:: PackageTask (24)
モジュール
-
Rake
:: TaskManager (36)
キーワード
-
add
_ loader (12) - append (12)
-
build
_ extensions (12) - egrep (12)
-
excluded
_ from _ list? (12) - existing (12)
- existing! (12)
- ext (12)
- gsub! (12)
- import (12)
- init (12)
-
last
_ description (12) -
last
_ description= (12) - load (12)
-
load
_ rakefile (12) - member? (12)
- name (12)
- needed? (12)
-
original
_ dir (12) -
package
_ files (12) -
package
_ files= (12) - resolve (12)
- run (12)
-
synthesize
_ file _ task (12) -
to
_ s (12) -
top
_ level (12) -
top
_ level _ tasks (12) -
tty
_ output= (12)
検索結果
先頭5件
-
Rake
:: Application # rakefile -> String (21136.0) -
実際に使用されている Rakefile の名前を返します。
...実際に使用されている Rakefile の名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.rakefile # => "Rakefile"
end
//}... -
Rake
:: Application # load _ rakefile (9118.0) -
Rakefile を探してロードします。
...
Rakefile を探してロードします。... -
Rake
:: Application # options -> OpenStruct (9113.0) -
コマンドラインで与えられたアプリケーションのオプションを返します。
...えられたアプリケーションのオプションを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.options # => #<OpenStruct always_multitask=false, backtrace=false, build_all=false, dryrun=false, i......em=false, job_stats=false, load_system=false, nosearch=false, rakelib=["rakelib"], show_all_tasks=false, show_prereqs=false, show_task_pattern=nil, show_tasks=nil, silent=false, suppress_backtrace_pattern=nil, thread_pool_size=8, trace=false, trace_output=#<IO:<STDERR>>, trace_rules=false>
end
//}... -
Rake
:: TaskManager # last _ description=(description) (6207.0) -
最新の詳細説明をセットします。
...ます。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
task.application.last_description # => "test2"
task.application.last_description = "test3"
task.application.last_description # => "test3"
end
desc "test... -
Gem
:: Installer # build _ extensions (6107.0) -
拡張ライブラリをビルドします。
...拡張ライブラリをビルドします。
拡張ライブラリをビルドするためのファイルタイプとして有効であるのは、
extconf.rb, configure script, Rakefile, mkmf_files です。... -
Rake
:: TaskManager # last _ description -> String (3123.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_a... -
Rake
:: InvocationChain # append(task _ name) -> Rake :: InvocationChain (3107.0) -
与えられたタスク名を追加して新しい Rake::InvocationChain を返します。
...を追加して新しい Rake::InvocationChain を返します。
@param task_name 追加するタスク名を指定します。
@raise RuntimeError 循環したタスクの呼び出しを検出した場合に発生します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default:......:test_rake_app
task :test_rake_app do
invocation_chain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.append("task_b") # => LL("task_b", "task_a")
end
//}... -
Rake
:: Application # add _ loader(ext , loader) (3013.0) -
与えられた拡張子で終わるファイル名のファイルをロードするためのローダーを 自身に追加します。
...ire "rake/loaders/makefile"
# Rakefile での記載例とする
task default: :test
task :test
makefile =<<-EOS
<< <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
EOS
IO.write("sample.mf", makefile)
Rake.application.add_loader("mf", Rake::MakefileLoader.new)
Rake.application.add_import("sample.mf")
Rake......::Task.task_defined?("a") # => false
Rake.application.load_imports
Rake::Task.task_defined?("a") # => true
//}... -
Rake
:: Application # init(app _ name = & # 39;rake& # 39;) (3007.0) -
コマンドラインオプションとアプリケーション名を初期化します。
...ンドラインオプションとアプリケーション名を初期化します。
//emlist[例][ruby]{
# Rakefile での記載例とする
task default: :test
task :test
Rake.application.name # => "rake"
Rake.application.init("MyApp") # => ["default"]
Rake.application.name # => "MyApp"
//}...