12件ヒット
[1-12件を表示]
(0.072秒)
別のキーワード
ライブラリ
- rake (12)
クラス
-
Rake
:: TaskArguments (12)
検索結果
-
Rake
:: TaskArguments # with _ defaults(defaults) -> Hash (24207.0) -
パラメータにデフォルト値をセットします。
...mlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
arguments = Rake::TaskArguments.new(["name1", "name2"], ["value1", "value2"])
arguments.to_hash # => {:name1=>"value1", :name2=>"value2"}
arguments.wit...