るりまサーチ

最速Rubyリファレンスマニュアル検索!
96件ヒット [1-96件を表示] (0.020秒)
トップページ > クエリ:specification[x] > 種類:ライブラリ[x]

別のキーワード

  1. specification name
  2. specification load
  3. specification list
  4. specification date
  5. specification name=

検索結果

rubygems/commands/specification_command (6013.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...

rubygems/specification (6013.0)

Gem パッケージのメタデータを扱うためのライブラリです。

...ージのメタデータを扱うためのライブラリです。

通常 gemspec ファイルや Rakefile でメタデータを定義します。

例:

spec = Gem::Specification.new do |s|
s.name = 'rfoo'
s.version = '1.0'
s.summary = 'Example gem specification'
...
end...

rubygems (31.0)

RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。

...タデータのみを含む Gem パッケージです。また、いくつかの警告が表示されます。

//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
end
//}

実用的なライブラリを作成するため...
...示します。
警告メッセージが出力されないようにいくつか設定を追加しています。

//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['l...
...

実行可能なファイル (コマンド) を含む場合の gemspec は以下のようになります。

//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['bi...

rubygems/builder (17.0)

Gem::Specification のインスタンスから Gem パッケージを作成するためのライブラリです。

...Gem::Specification のインスタンスから Gem パッケージを作成するためのライブラリです。...

net/http (13.0)

汎用データ転送プロトコル HTTP を扱うライブラリです。 実装は 2616 に基きます。

...1866 Hypertext Markup Language - 2.0 で初めて公式に登場し、
HTML 4.01 Specification の 17.13.4 Form content types
でもそのように書かれています。

ところが、同じ HTML 4.01 Specification
B.2.2 Ampersands in URI attribute values では、
この `&' がSGMLの文...

絞り込み条件を変える

rake/gempackagetask (7.0)

Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。

...を定義します。

: PACKAGE_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_VE...

rss (7.0)

RSS を扱うためのライブラリです。

...=== 参考

* RSS 0.91 http://backend.userland.com/rss091
* RSS 1.0 http://purl.org/rss/1.0/spec
* RSS 2.0 http://www.rssboard.org/rss-specification
* Atom 1.0 https://www.ietf.org/rfc/rfc4287.txt

=== 注意

RSS ParserはRSS 0.9x/1.0/2.0, Atom 1.0 をサポートしていますが,RSS...

yaml (7.0)

構造化されたデータを表現するフォーマットであるYAML (YAML Ain't Markup Language) を扱うためのライブラリです。

...* ":foo" のような文字列はそのまま Symbol として扱える
* "y" や "n" は真偽値として扱われない

=== 参考

YAML Specification

* https://yaml.org/spec/
* https://yaml.org/type/

YAML4R

* http://yaml4r.sourceforge.net/
* http://yaml4r.sourceforge.net/cookbook/(htt...