るりまサーチ

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

別のキーワード

  1. specification author=
  2. specification authors=
  3. specification authors
  4. specification author
  5. rubygems/specification author=

ライブラリ

クラス

キーワード

検索結果

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

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

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

rubygems (66.0)

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

...作成した gemspec ファイルを元にして Gem パッケージを簡単に作成することができます。

$ gem build <gemspec filename>

最小の gemspec は以下のようになります。ビルドするために必要な最小の 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'...
...require 'rake/gempackagetask'

PKG_FILES = FileList[
'lib/hello.rb',
'spec/*'
]
spec = Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.1'
s.author = 'Hello Author'
s.email = 'hello@example.com'
s.homepage = 'http://examp...

rss (36.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...
...logo.png"

maker.textinput.title = "Search Example Site"
maker.textinput.description = "Search Example Site's all text"
maker.textinput.name = "keyword"
maker.textinput.link = "http://example.com/search.cgi"
end

===== XMLスタイルシートの指定

もし,

* http://exampl...
...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.com...