132件ヒット
[1-100件を表示]
(0.378秒)
種類
- インスタンスメソッド (99)
- 定数 (22)
- ライブラリ (11)
ライブラリ
- ビルトイン (11)
-
net
/ imap (33) - optparse (22)
- rake (22)
-
rdoc
/ generator / ri (11) -
rubygems
/ command (11) -
rubygems
/ specification (11)
クラス
-
Gem
:: Command (11) -
Gem
:: Specification (11) -
Net
:: IMAP :: BodyTypeBasic (11) -
Net
:: IMAP :: BodyTypeMessage (11) -
Net
:: IMAP :: BodyTypeText (11) - Object (11)
- OptionParser (22)
-
RDoc
:: Generator :: RI (11)
モジュール
- Kernel (11)
-
Rake
:: TaskManager (11)
キーワード
- DESCRIPTION (11)
-
RUBY
_ DESCRIPTION (11) - desc (11)
-
last
_ description (11) -
rubygems
/ commands / generate _ index _ command (11) - summarize (22)
検索結果
先頭5件
-
Net
:: IMAP :: BodyTypeText # description -> String | nil (39517.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeBasic # description -> String | nil (36517.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeMessage # description -> String | nil (36517.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Gem
:: Command # description -> String (36501.0) -
このメソッドはサブクラスで再定義されます。 コマンドが実行することを説明する文字列を返します。
このメソッドはサブクラスで再定義されます。
コマンドが実行することを説明する文字列を返します。 -
Gem
:: Specification # description -> String (36501.0) -
Gem パッケージの説明を返します。
...Gem パッケージの説明を返します。... -
Object
:: RUBY _ DESCRIPTION -> String (24501.0) -
Ruby の詳細を表す文字列。
Ruby の詳細を表す文字列。
ruby -v で表示される内容が格納されています。 -
RDoc
:: Generator :: RI :: DESCRIPTION -> String (24501.0) -
このジェネレータの説明を表す文字列です。
このジェネレータの説明を表す文字列です。 -
rubygems
/ commands / generate _ index _ command (18018.0) -
ある Gem サーバに対するインデックスを作成するためのライブラリです。
...ある Gem サーバに対するインデックスを作成するためのライブラリです。
Usage: gem generate_index [options]
Options:
-d, --directory=DIRNAME repository base dir containing gems subdir
Common Options:
-h, --help この......race バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Generates the index files for a gem server directory
Description:
The generate_index command creates a set......he --directory option. When done, it will generate a set of files like
this:
gems/ # .gem files you want to
index
quick/index
quick/index.rz # quick index manifest
quick/<gemname>.gem... -
Rake
:: TaskManager # last _ description -> String (15507.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_ap......p2 do |task|
end
//}... -
Kernel
# desc(description) -> String (12707.0) -
直後の Rake タスクの説明を登録します。
...直後の Rake タスクの説明を登録します。
@param description 直後のタスクの説明を指定します。
例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end...