るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.025秒)
トップページ > クエリ:spec[x] > クエリ:authors[x]

別のキーワード

  1. format spec
  2. format spec=
  3. installer spec
  4. oldformat spec
  5. uninstaller spec

ライブラリ

クラス

キーワード

検索結果

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

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

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

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

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

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

rubygems (48.0)

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

...ersion
gem command [arguments...] [options...]

例:
gem install rake
gem list --local
gem build package.gemspec
gem help install

さらにヘルプ:
gem help commands 全ての 'gem' コマンドをリストアップしま...
...作成する

作成した 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']
s.authors = ['Hello Author']
s.email...