るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
7件ヒット [1-7件を表示] (0.230秒)
トップページ > クエリ:to_s[x] > バージョン:2.2.0[x] > クエリ:String[x] > ライブラリ:rake[x]

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

検索結果

Rake::FileList#to_s -> String (54631.0)

全ての要素をスペースで連結した文字列を返します。

...全ての要素をスペースで連結した文字列を返します。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_app do
file_list = FileList['a.c', 'b.c']
file_list.to_s # => "a.c b.c"
end
//}...

Rake::InvocationChain#to_s -> String (54631.0)

トップレベルのタスクから自身までの依存関係を文字列として返します。

...での依存関係を文字列として返します。

//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.to_s # => "TOP => task_a"
end
//...

Rake::EarlyTime#to_s -> String (54613.0)

"<EARLY TIME>" という文字列を返します。

"<EARLY TIME>" という文字列を返します。

Rake::InvocationChain::EmptyInvocationChain#to_s -> String (54613.0)

'TOP' という文字列を返します。

'TOP' という文字列を返します。

Rake::Task#to_s -> String (54613.0)

自身の名前を返します。

自身の名前を返します。

絞り込み条件を変える

Rake::TaskArguments#to_s -> String (45616.0)

自身を人間に読みやすい文字列にして返します。

自身を人間に読みやすい文字列にして返します。


@see Hash#inspect

Rake::TaskArguments#inspect -> String (316.0)

自身を人間に読みやすい文字列にして返します。

自身を人間に読みやすい文字列にして返します。


@see Hash#inspect