るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
28件ヒット [1-28件を表示] (0.100秒)
トップページ > バージョン:2.3.0[x] > クエリ:l[x] > クエリ:description[x]

別のキーワード

  1. lupdecomposition l
  2. matrix l
  3. kernel $-l
  4. _builtin $-l
  5. l matrix

検索結果

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

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

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

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

@see 2045

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

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

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

@see 2045

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

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

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

@see 2045

Rake::TaskManager#last_description=(description) (36961.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::TaskManager#last_description -> String (27622.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
//}

DublinCoreModel#dc_description (27307.0)

@todo

@todo

DublinCoreModel#dc_description= (27307.0)

@todo

@todo

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

@todo

@todo

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

DublinCoreModel#dc_descriptions (27301.0)

@todo

@todo

絞り込み条件を変える

Rake.application -> Rake::Application (18619.0)

現在の Rake アプリケーションを返します。

現在の Rake アプリケーションを返します。

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

require 'pp'

task default: :test_rake_app
task :test_rake_app do
pp Rake.application
end

# => #<Rake::Application:0x31b0f18
# @default_loader=#<Rake::DefaultLoader:0x31b0c78>,
# @imported=[],
# @last_description=nil,
# ...

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

Rake.application=(app) (18319.0)

現在の Rake アプリケーションをセットします。

現在の Rake アプリケーションをセットします。

@param app Rake::Application のインスタンスを指定します。

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

require 'pp'

task default: :test_rake_app
task :test_rake_app do
app = Rake::Application.new
app.tty_output = true
Rake.application = app
pp Rake.application
end

# => #<Rake::App...

RSS::Maker::ChannelBase (18055.0)

channel要素の値を設定します.

channel要素の値を設定します.

RSS 1.0を生成する場合はabout,title,link,
descriptionを設定しなければいけません.

RSS 0.91を生成する場合はtitle,link,
description,languageを設定しなければいけません.

RSS 2.0を生成する場合はtitle,link,
descriptionを設定しなければいけません.

maker.channelになんらかの値を設定しておきながら,上記
のmaker.channelが要求する値を設定していない場合は
RSS::NotSetError例外が発生します.どの値も設定していな
...

rubygems/commands/lock_command (18019.0)

指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。

指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために
必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。

Usage: gem lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options]
Options:
-s, --[no-]strict 依存関係を満たせない場合に失敗します
Common Options:
-h, --help このコマンドのヘルプを表示します
...

絞り込み条件を変える

Kernel#desc(description) -> String (9322.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) -> () (637.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| ... } -> () (637.0)

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

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

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

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

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

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

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

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