150件ヒット
[1-100件を表示]
(0.044秒)
種類
- インスタンスメソッド (96)
- 定数 (24)
- ライブラリ (24)
- 文書 (6)
ライブラリ
- ビルトイン (12)
-
net
/ imap (36) - rake (36)
-
rdoc
/ generator / ri (12) -
rubygems
/ command (12) -
rubygems
/ specification (12)
クラス
-
Gem
:: Command (12) -
Gem
:: Specification (12) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) - Object (12)
-
RDoc
:: Generator :: RI (12)
モジュール
- Kernel (12)
-
Rake
:: TaskManager (24)
キーワード
- DESCRIPTION (12)
-
NEWS for Ruby 2
. 7 . 0 (6) -
RUBY
_ DESCRIPTION (12) - desc (12)
-
last
_ comment (12) -
last
_ description (12) - rdoc (12)
- rss (12)
検索結果
先頭5件
-
Net
:: IMAP :: BodyTypeBasic # description -> String | nil (18218.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeMessage # description -> String | nil (18218.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeText # description -> String | nil (18218.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Gem
:: Command # description -> String (18202.0) -
このメソッドはサブクラスで再定義されます。 コマンドが実行することを説明する文字列を返します。
このメソッドはサブクラスで再定義されます。
コマンドが実行することを説明する文字列を返します。 -
Gem
:: Specification # description -> String (18202.0) -
Gem パッケージの説明を返します。
Gem パッケージの説明を返します。 -
Object
:: RUBY _ DESCRIPTION -> String (6202.0) -
Ruby の詳細を表す文字列。
Ruby の詳細を表す文字列。
ruby -v で表示される内容が格納されています。 -
RDoc
:: Generator :: RI :: DESCRIPTION -> String (6202.0) -
このジェネレータの説明を表す文字列です。
このジェネレータの説明を表す文字列です。 -
Rake
:: TaskManager # last _ description -> String (3209.0) -
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 (208.0) -
直後の Rake タスクの説明を登録します。
...直後の Rake タスクの説明を登録します。
@param description 直後のタスクの説明を指定します。
例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end...