るりまサーチ

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

別のキーワード

  1. rake to_s
  2. rake new
  3. rake []
  4. rake application
  5. rake clear

検索結果

rake/gempackagetask (38006.0)

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

...s.version = PKG_VERSION
s.requirements << 'none'
s.require_path = 'lib'
s.autorequire = 'rake'
s.files = PKG_FILES
s.description = <<EOF
Rake is a Make-like program implemented in Ruby. Tasks
and dependencies are specified in standard Ruby syntax.
EOF
end...

rubygems (36.0)

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

...= ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end
//}

: name
この Gem の名前を指定します。
: version
この Gem のバージョンを指定します。
: summ...
...Gem の作者の連絡先メールアドレスを指定します。
: homepage
この Gem のウェブサイトの URI を指定します。
: description
この Gem の長い説明を指定します。

実行可能なファイル (コマンド) を含む場合の gemspec は以下のように...
...e.com/hello'
s.description = 'hello description'
end
//}

ライブラリの例に加えて executables を追加しています。

また、以下のように Rakefile にタスクを追加することもできます。

//emlist[gemspec][ruby]{
require 'rake/gempackagetask'

PKG_FILES = F...