300件ヒット
[1-100件を表示]
(0.063秒)
別のキーワード
種類
- インスタンスメソッド (192)
- ライブラリ (84)
- 定数 (24)
ライブラリ
- ビルトイン (12)
-
net
/ imap (36) - rake (60)
-
rdoc
/ generator / ri (12) - rss (48)
-
rubygems
/ command (24) -
rubygems
/ specification (24)
クラス
-
Gem
:: Command (24) -
Gem
:: Specification (24) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) - Object (12)
-
RDoc
:: Generator :: RI (12) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: Rss :: Channel :: Image (24) -
Rake
:: Task (12)
モジュール
- Kernel (12)
-
Rake
:: TaskManager (36)
キーワード
- DESCRIPTION (12)
-
RUBY
_ DESCRIPTION (12) -
arg
_ description (12) - desc (12)
- description= (36)
-
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) -
rake
/ gempackagetask (12) - rubygems (12)
-
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / server _ command (12) - summary= (12)
検索結果
先頭5件
-
Net
:: IMAP :: BodyTypeMessage # description -> String | nil (21217.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Gem
:: Command # description -> String (21201.0) -
このメソッドはサブクラスで再定義されます。 コマンドが実行することを説明する文字列を返します。
このメソッドはサブクラスで再定義されます。
コマンドが実行することを説明する文字列を返します。 -
Gem
:: Specification # description -> String (21201.0) -
Gem パッケージの説明を返します。
...
Gem パッケージの説明を返します。... -
RSS
:: Maker :: ImageBase # description (21102.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Image # description (21102.0) -
@todo
@todo -
Net
:: IMAP :: BodyTypeBasic # description -> String | nil (18217.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeText # description -> String | nil (18217.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Rake
:: Task # arg _ description (12201.0) -
-
rake
/ gempackagetask (12006.0) -
Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
...Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
Gem パッケージだけでなく zip, tgz, tar.gz, tar.bz2 の各ファイルを作成する事もできます。
以下のタスクを定義します。
: PACKAGE_DI......R/NAME-VERSION.gem
Gem パッケージを作成します。
例:
require 'rubygems'
spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Ruby based make-like utility."
s.name = 'rake'
s.version = PKG_VERSION
s.requirements << 'none'......re = 'rake'
s.files = PKG_FILES
s.description = <<EOF
Rake is a Make-like program implemented in Ruby. Tasks
and dependencies are specified in standard Ruby syntax.
EOF
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end...