るりまサーチ

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

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

ライブラリ

クラス

検索結果

Gem::Specification#autorequire -> String (30401.0)

非推奨の属性です。

非推奨の属性です。

rake/gempackagetask (6024.0)

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

...z, tar.gz, tar.bz2 の各ファイルを作成する事もできます。

以下のタスクを定義します。

: PACKAGE_DIR/NAME-VERSION.gem
Gem パッケージを作成します。

例:
r
equire 'rubygems'

spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY...
...s.summary = "Ruby based make-like utility."
s.name = 'rake'
s.version = PKG_VERSION
s.requirements << 'none'
s.require_path = 'lib'
s.autorequire = 'rake'
s.files = PKG_FILES
s.description = <<EOF
R
ake is a Make-like program implemented in Ruby. Tasks
an...
...d dependencies are specified in standard Ruby syntax.
EOF
end

R
ake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end...