るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
16件ヒット [1-16件を表示] (0.136秒)

別のキーワード

  1. openssl g
  2. openssl g=
  3. dsa g=
  4. dsa g
  5. dh g=

検索結果

Net::IMAP::BodyTypeMessage#description -> String | nil (63655.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Gem::Command#description -> String (63607.0)

このメソッドはサブクラスで再定義されます。 コマンドが実行することを説明する文字列を返します。

このメソッドはサブクラスで再定義されます。
コマンドが実行することを説明する文字列を返します。

Gem::Specification#description -> String (63607.0)

Gem パッケージの説明を返します。

Gem パッケージの説明を返します。

RSS::Maker::ImageBase#description (63310.0)

@todo

@todo

RSS::Rss::Channel::Image#description (63310.0)

@todo

@todo

絞り込み条件を変える

Net::IMAP::BodyTypeBasic#description -> String | nil (54655.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Net::IMAP::BodyTypeText#description -> String | nil (54655.0)

Content-Description の値を文字列で返します。

Content-Description の値を文字列で返します。

@see 2045

Rake::Task#arg_description (36607.0)

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

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

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

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

task default: :test_rake_app1

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

desc "test2"
task :...

RSS::Maker::ImageBase#description=() (27310.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel::Image#description= (27310.0)

@todo

@todo

Gem::Specification#description=(desc) (27307.0)

Gem パッケージの説明をセットします。

Gem パッケージの説明をセットします。

@param desc パッケージの詳細を説明する文章を指定します。

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

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

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

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

task default: :test_rake_app1

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

desc "test2"
task :test_rake_app2 do |task|
end
//}

Gem::Command#summary=(description) (9325.0)

コマンドの短い説明をセットします。

コマンドの短い説明をセットします。

@param description コマンドの短い説明を指定します。

Rake::TaskManager#last_comment -> String (9325.0)

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

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

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

task default: :test_rake_app1

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

desc "test2"
task :test_rake_app2 do |task|
end
//}

絞り込み条件を変える

Kernel#desc(description) -> String (625.0)

直後の Rake タスクの説明を登録します。

直後の Rake タスクの説明を登録します。

@param description 直後のタスクの説明を指定します。

例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end