708件ヒット
[701-708件を表示]
(0.058秒)
種類
- インスタンスメソッド (672)
- 特異メソッド (36)
クラス
- Module (12)
-
Rake
:: Application (36) -
Rake
:: EarlyTime (12) -
Rake
:: FileList (120) -
Rake
:: FileTask (12) -
Rake
:: GemPackageTask (12) -
Rake
:: InvocationChain (12) -
Rake
:: InvocationChain :: EmptyInvocationChain (12) -
Rake
:: PackageTask (132) -
Rake
:: RDocTask (84) -
Rake
:: Task (96) -
Rake
:: TaskArguments (24) -
Rake
:: TestTask (36) - String (60)
モジュール
- Kernel (12)
- Rake (12)
-
Rake
:: TaskManager (24)
キーワード
- * (12)
- comment (12)
- desc (12)
- ext (24)
-
full
_ comment (12) -
gem
_ file (12) - gsub (12)
- gsub! (12)
- inspect (24)
- investigation (12)
-
is
_ a? (12) -
kind
_ of? (12) -
last
_ comment (12) -
last
_ description (12) - main (12)
- name (60)
-
option
_ string (12) -
original
_ dir (24) -
package
_ dir (12) -
package
_ dir _ path (12) -
package
_ name (12) - pathmap (24)
-
pathmap
_ explode (12) -
pathmap
_ partial (12) -
pathmap
_ replace (12) - pattern (12)
- quote (12)
-
rake
_ extension (12) - rakefile (12)
-
rdoc
_ dir (12) -
scope
_ name (24) - source (12)
- sub (12)
- sub! (12)
-
tar
_ bz2 _ file (12) -
tar
_ command (12) -
tar
_ gz _ file (12) - template (12)
-
tgz
_ file (12) - title (12)
-
to
_ s (72) - version (12)
-
zip
_ command (12) -
zip
_ file (12)
検索結果
-
Rake
:: FileList # kind _ of?(klass) -> bool (8.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
//}...
