るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. t61string new
  4. matrix t
  5. fiddle type_intptr_t

ライブラリ

モジュール

キーワード

検索結果

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

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

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

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

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

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

@see 2045...

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

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

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

@see 2045...

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

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

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

@see 2045...

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

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

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

絞り込み条件を変える

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

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

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

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

t
ask default: :test_rake_app1

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

desc "test2"
t
ask :test_rake_app2 do |task|
end
//}...

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

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

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

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

t
ask default: :test_rake_app1

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

desc "test2"
t
ask :test_rake_app2 do |task|
end
//}...

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

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

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

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

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