るりまサーチ (Ruby 2.6.0)

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

別のキーワード

  1. rss description
  2. rss description=
  3. net/imap description
  4. item description
  5. item description=

検索結果

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

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

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

@see 2045

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

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

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

@see 2045

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

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

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

@see 2045

RSS::Maker::ChannelBase#description (54310.0)

@todo

@todo

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

@todo

@todo

絞り込み条件を変える

RSS::Maker::ItemsBase::ItemBase#description (54310.0)

@todo

@todo

RSS::Maker::TextinputBase#description (54310.0)

@todo

@todo

RSS::RDF::Channel#description (54310.0)

@todo

@todo

RSS::RDF::Item#description (54310.0)

@todo

@todo

RSS::RDF::Textinput#description (54310.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel#description (54310.0)

@todo

@todo

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

@todo

@todo

RSS::Rss::Channel::Item#description (54310.0)

@todo

@todo

RSS::Rss::Channel::TextInput#description (54310.0)

@todo

@todo

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

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

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

絞り込み条件を変える

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

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

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

Rake::TaskManager#last_description=(description) (18664.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 :...

Rake::Task#add_description(description) (18610.0)

自身に詳細説明を追加します。

自身に詳細説明を追加します。

DublinCoreModel#dc_description (18310.0)

@todo

@todo

DublinCoreModel#dc_description= (18310.0)

@todo

@todo

絞り込み条件を変える

RSS::Maker::ChannelBase#description=() (18310.0)

@todo

@todo

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

@todo

@todo

RSS::Maker::ItemsBase::ItemBase#description=() (18310.0)

@todo

@todo

RSS::Maker::TextinputBase#description=() (18310.0)

@todo

@todo

RSS::RDF::Channel#description= (18310.0)

@todo

@todo

絞り込み条件を変える

RSS::RDF::Item#description= (18310.0)

@todo

@todo

RSS::RDF::Textinput#description= (18310.0)

@todo

@todo

RSS::Rss::Channel#description= (18310.0)

@todo

@todo

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

@todo

@todo

RSS::Rss::Channel::Item#description= (18310.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel::TextInput#description= (18310.0)

@todo

@todo

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

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

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

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

Rake::Task#arg_description (18307.0)

DublinCoreModel#dc_descriptions (18304.0)

@todo

@todo

Rake::TaskManager#last_description -> 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
//}

絞り込み条件を変える

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

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

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

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

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

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

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

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

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

OptionParser#summarize(to = [], width = self.summary_width, max = width - 1, indent= self.summary_indent) -> () (40.0)

サマリを指定された to へと加えていきます。

サマリを指定された to へと加えていきます。

ブロックが与えられた場合、サマリの各行を引数としてブロックを評価します。
この場合、ブロックの中で明示的に to へと加えていかない限り、
to にサマリが加えられることはありません。

@param to サマリを出力するオブジェクトを指定します。to には << メソッドが定義されいる必要があります。

@param width サマリの幅を整数で指定します。

@param max サマリの最大幅を整数で指定します。

@param indent サマリのインデントを文字列で指定します。

//emlist[例][ruby]{
requ...

OptionParser#summarize(to = [], width = self.summary_width, max = width - 1, indent= self.summary_indent) {|line| ... } -> () (40.0)

サマリを指定された to へと加えていきます。

サマリを指定された to へと加えていきます。

ブロックが与えられた場合、サマリの各行を引数としてブロックを評価します。
この場合、ブロックの中で明示的に to へと加えていかない限り、
to にサマリが加えられることはありません。

@param to サマリを出力するオブジェクトを指定します。to には << メソッドが定義されいる必要があります。

@param width サマリの幅を整数で指定します。

@param max サマリの最大幅を整数で指定します。

@param indent サマリのインデントを文字列で指定します。

//emlist[例][ruby]{
requ...

Rake::TaskManager#last_comment -> String (25.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
//}

絞り込み条件を変える