るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
9件ヒット [1-9件を表示] (0.040秒)
トップページ > バージョン:2.2.0[x] > クエリ:IO[x] > クエリ:on[x] > クエリ:tr[x] > クエリ:DESCRIPTION[x]

別のキーワード

  1. optparse on
  2. optionparser on
  3. tracer on
  4. thread abort_on_exception
  5. _builtin abort_on_exception

検索結果

RDoc::Generator::RI::DESCRIPTION -> String (91204.0)

このジェネレータの説明を表す文字列です。

このジェネレータの説明を表す文字列です。

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

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

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

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

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

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

@see 2045

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

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

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

@see 2045

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

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

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

@see 2045

絞り込み条件を変える

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

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

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

Object::RUBY_DESCRIPTION -> String (55204.0)

Ruby の詳細を表す文字列。

Ruby の詳細を表す文字列。

ruby -v で表示される内容が格納されています。

Rake::TaskManager#last_description -> String (28222.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 (1222.0)

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

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

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

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