288件ヒット
[201-288件を表示]
(0.056秒)
クラス
-
Rake
:: Application (12) -
Rake
:: FileList (84) -
Rake
:: NameSpace (12) -
Rake
:: RDocTask (24) -
Rake
:: Task (48) -
Rake
:: TaskArguments (12) -
Rake
:: TestTask (24) - String (12)
モジュール
- FileUtils (12)
-
Rake
:: TaskManager (48)
キーワード
- * (12)
- == (12)
- actions (12)
-
arg
_ names (12) -
current
_ scope (12) - import (12)
-
in
_ namespace (12) -
is
_ a? (12) -
kind
_ of? (12) - libs (12)
- names (12)
-
option
_ list (12) -
pathmap
_ explode (12) - prerequisites (12)
-
resolve
_ args (12) -
ruby
_ opts (12) - sources (12)
-
split
_ all (12) - tasks (24)
-
to
_ a (12) -
to
_ ary (12) -
top
_ level _ tasks (12)
検索結果
先頭5件
-
Rake
:: TaskManager # tasks -> Array (205.0) -
全てのタスクリストを返します。
...{
# Rakefile での記載例とする
require 'pp'
task default: :test_rake_app2
task :test_rake_app1 do |task|
end
task :test_rake_app2 do |task|
pp task.application.tasks
# => [<Rake::Task default => [test_rake_app2]>,
# <Rake::Task test_rake_app1 => []>,
# <Rake::Task test_rake_a... -
String
# pathmap _ explode -> Array (205.0) -
自身をパスを表す部分ごとに分解して配列にして返します。 String#pathmap で利用される protected メソッドです。
自身をパスを表す部分ごとに分解して配列にして返します。
String#pathmap で利用される protected メソッドです。
@see String#pathmap -
Rake
:: RDocTask # option _ list -> Array (204.0) -
rdoc コマンドに渡すオプションのリストを返します。
rdoc コマンドに渡すオプションのリストを返します。 -
Rake
:: RDocTask # options -> Array (204.0) -
rdoc コマンドに渡すオプションのリストを返します。
rdoc コマンドに渡すオプションのリストを返します。
指定できるオプションは -o, --main, --title, -T 以外です。 -
Rake
:: TestTask # libs -> Array (204.0) -
テスト実行前に $LOAD_PATH に追加するパスを返します。
テスト実行前に $LOAD_PATH に追加するパスを返します。 -
Rake
:: TestTask # ruby _ opts -> Array (204.0) -
テスト実行時に Ruby コマンドに渡されるオプションを返します。
テスト実行時に Ruby コマンドに渡されるオプションを返します。 -
Rake
:: FileList # is _ a?(klass) -> bool (47.0) -
自身に Array のフリをさせます。
...自身に Array のフリをさせます。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.is_a?(Array) # => true
file_list.is_a?(String) # => false
end
//}... -
Rake
:: FileList # kind _ of?(klass) -> bool (47.0) -
自身に Array のフリをさせます。
...自身に Array のフリをさせます。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.is_a?(Array) # => true
file_list.is_a?(String) # => false
end
//}...