660件ヒット
[1-100件を表示]
(0.050秒)
別のキーワード
クラス
-
Rake
:: Application (60) -
Rake
:: FileList (192) -
Rake
:: FileTask (24) -
Rake
:: InvocationChain (36) -
Rake
:: NameSpace (24) -
Rake
:: PackageTask (96) -
Rake
:: TaskArguments (60) -
Rake
:: TestTask (24)
モジュール
-
Rake
:: Cloneable (24) -
Rake
:: TaskManager (120)
キーワード
- == (12)
- [] (36)
- append (12)
-
clear
_ exclude (12) - clone (12)
-
current
_ scope (12) -
define
_ task (12) - dup (12)
-
excluded
_ from _ list? (12) - existing (12)
- existing! (12)
- ext (12)
- gsub! (12)
- import (12)
-
in
_ namespace (12) - intern (12)
-
is
_ a? (12) -
kind
_ of? (12) -
last
_ comment (12) -
last
_ description (12) - lookup (12)
- member? (12)
- name (24)
- names (12)
-
need
_ tar (12) -
need
_ tar _ bz2 (12) -
need
_ tar _ gz (12) -
need
_ zip (12) - needed? (12)
-
new
_ scope (12) -
original
_ dir (12) -
package
_ dir (12) -
package
_ dir _ path (12) -
package
_ files (12) - pathmap (12)
- rakefile (12)
- resolve (12)
-
ruby
_ opts (12) - sub! (12)
-
synthesize
_ file _ task (12) - tasks (24)
-
to
_ a (12) -
to
_ ary (12) -
to
_ hash (12) -
to
_ s (24) -
top
_ level _ tasks (12) - warning (12)
-
with
_ defaults (12)
検索結果
先頭5件
-
Rake
:: TestTask # ruby _ opts -> Array (6219.0) -
テスト実行時に Ruby コマンドに渡されるオプションを返します。
...テスト実行時に Ruby コマンドに渡されるオプションを返します。... -
Rake
:: TestTask # warning -> bool (134.0) -
この値が真である場合、テスト実行時に ruby -w を実行したのと同じ効果が生じます。
...この値が真である場合、テスト実行時に ruby -w を実行したのと同じ効果が生じます。... -
Rake
:: PackageTask # package _ dir _ path -> String (114.0) -
パッケージに含むファイルを配置するディレクトリを返します。
...パッケージに含むファイルを配置するディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
require 'rake/packagetask'
Rake::PackageTask.new("sample", "1.0.0") do |package_task|
package_task.package_dir_path # => "pkg/sample-1.0.0"
end
//}... -
Rake
:: Application # name -> String (109.0) -
アプリケーションの名前を返します。通常は 'rake' という名前を返します。
...アプリケーションの名前を返します。通常は 'rake' という名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.name # => "rake"
end
//}... -
Rake
:: Application # options -> OpenStruct (109.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, dry......run=false, ignore_deprecate=false, ignore_system=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_outpu... -
Rake
:: Application # original _ dir -> String (109.0) -
rake コマンドを実行したディレクトリを返します。
...
rake コマンドを実行したディレクトリを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.original_dir # => "/path/to/dir"
end
//}... -
Rake
:: Application # rakefile -> String (109.0) -
実際に使用されている Rakefile の名前を返します。
...実際に使用されている Rakefile の名前を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.rakefile # => "Rakefile"
end
//}... -
Rake
:: Application # top _ level _ tasks -> Array (109.0) -
コマンドラインで指定されたタスクのリストを返します。
...コマンドラインで指定されたタスクのリストを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.top_level_tasks # => ["default"]
end
//}... -
Rake
:: Cloneable # clone -> object (109.0) -
自身を複製します。
...リーズされていれば返されるオブジェクトもフリーズされています。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList['a.c', 'b.c']
clone = file_list.clone
clone # => ["a.c"...