24件ヒット
[1-24件を表示]
(0.041秒)
検索結果
-
Gem
:: Specification # authors=(names) (21100.0) -
作成者の名前の配列をセットします。
作成者の名前の配列をセットします。 -
rubygems (42.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 = ['lib/hello.rb']
s.authors = ['Hello Author']
s.email = 'hello_autho......//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['bin/hello', 'lib/hello.rb']
s.executables = ['hello']
s.authors = ['Hello Author']
s.email...