るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.113秒)
トップページ > クエリ:i[x] > クエリ:DES[x] > クエリ:last_description[x]

別のキーワード

  1. openssl des
  2. des new
  3. openssl openssl::cipher::des
  4. des
  5. des openssl

ライブラリ

モジュール

検索結果

Rake::TaskManager#last_description -> String (21307.0)

Rakefile 内の最新の詳細説明を追跡するためのメソッドです。

...Rakefile 内の最新の詳細説明を追跡するためのメソッドです。

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

task default: :test_rake_app1

des
c "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end

des
c "test2"
task :test_rake_a...

Rake::TaskManager#last_description=(description) (18519.0)

最新の詳細説明をセットします。

...

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

task default: :test_rake_app1

des
c "test1"
task :test_rake_app1 do |task|
task.application.last_description # => "test2"
task.application.last_description = "test3"
task.application.last_description # => "test3"
end

des
c "test2"
tas...