72件ヒット
[1-72件を表示]
(0.045秒)
種類
- ライブラリ (48)
- インスタンスメソッド (24)
ライブラリ
クラス
-
Gem
:: Specification (24)
キーワード
-
rake
/ gempackagetask (12) - rubygems (12)
-
rubygems
/ commands / specification _ command (12) -
rubygems
/ specification (12) - summary= (12)
検索結果
先頭5件
-
Gem
:: Specification # summary -> String (21101.0) -
この Gem パッケージの短い説明を返します。
この Gem パッケージの短い説明を返します。 -
Gem
:: Specification # summary=(summary) (9208.0) -
この Gem パッケージの短い説明をセットします。
...この Gem パッケージの短い説明をセットします。
@param summary 短い説明を指定します。... -
rubygems
/ commands / specification _ command (6018.0) -
指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。
...。
Usage: gem specification [GEMFILE] [options]
Options:
-v, --version VERSION Specify version of gem to examine
--platform PLATFORM Specify the platform of gem to specification
--all Output specifications for all versions......Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMFILE gemspec を表示する Gem パッケージ名を指定します
Summary:
Gem パッケージの仕様を YAML 形式で表示します
Defaults:
--local --version '>= 0'... -
rubygems
/ specification (6018.0) -
Gem パッケージのメタデータを扱うためのライブラリです。
...ージのメタデータを扱うためのライブラリです。
通常 gemspec ファイルや Rakefile でメタデータを定義します。
例:
spec = Gem::Specification.new do |s|
s.name = 'rfoo'
s.version = '1.0'
s.summary = 'Example gem specification'
...
end... -
rubygems (78.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...ージです。また、いくつかの警告が表示されます。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
end
//}
実用的なライブラリを作成するための gemspec の例を示します。
警告......ようにいくつか設定を追加しています。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['lib/hello.rb']
s.authors = ['Hello Author']
s......= 'hello description'
end
//}
: name
この Gem の名前を指定します。
: version
この Gem のバージョンを指定します。
: summary
この Gem の短い説明を指定します。
: files
この Gem に含むファイルのリストを指定します。
: authors
この... -
rake
/ gempackagetask (12.0) -
Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
..._DIR/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 << 'no...