るりまサーチ

最速Rubyリファレンスマニュアル検索!
72件ヒット [1-72件を表示] (0.023秒)

別のキーワード

  1. specification authors
  2. specification author=
  3. specification authors=
  4. specification platform

ライブラリ

クラス

キーワード

検索結果

Gem::Specification#author -> String (21101.0)

作成者の名前を返します。

作成者の名前を返します。

Gem::Specification#author=(name) (9101.0)

作成者の名前をセットします。

作成者の名前をセットします。

Gem::Specification#authors -> Array (9100.0)

作成者の名前の配列を返します。

作成者の名前の配列を返します。

Gem::Specification#authors=(names) (9100.0)

作成者の名前の配列をセットします。

作成者の名前の配列をセットします。

rubygems (60.0)

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

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

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

実用的なライブラリを作成するため...
...list[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.email = 'hello_author@example.com'
s.homepage...
...ます。
: summary
この Gem の短い説明を指定します。
: files
この Gem に含むファイルのリストを指定します。
: authors
この Gem の作者のリストを指定します。
: email
この Gem の作者の連絡先メールアドレスを指定します。
: h...

絞り込み条件を変える

rss (18.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...
...するた
めには以下のように変更する必要があります。

* RSS::Maker.makeの第一引数を"atom"に変更
* maker.channel.authorを設定
* maker.channel.dateを設定

もし、

* 作者がBobで
* たった今、作成された

Atom 1.0なら以下のようになり...
...maker.channel.title = "Example"
maker.channel.description = "Example Site"
maker.channel.link = "http://example.com/"

maker.channel.author = "Bob"
maker.channel.date = Time.now

maker.items.do_sort = true

maker.items.new_item do |item|
item.link = "http://example.co...