るりまサーチ (Ruby 2.4.0)

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

別のキーワード

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

検索結果

Gem::Format#spec=(spec) (54319.0)

Gem の Gem::Specification をセットします。

Gem の Gem::Specification をセットします。

@param spec Gem の Gem::Specification をセットします。

Gem::OldFormat#spec=(spec) (54319.0)

Gem の Gem::Specification をセットします。

Gem の Gem::Specification をセットします。

@param spec Gem の Gem::Specification をセットします。

Rake::GemPackageTask#gem_spec=(gem_spec) (18319.0)

gemspec をセットします。

gemspec をセットします。

@param gem_spec Gem::Specification のインスタンスを指定します。

Gem::RequirePathsBuilder#write_require_paths_file_if_needed(spec = @spec, gem_home = @gem_home) (310.0)

必要であれば、'.require_paths' というファイルを Gem ごとに作成します。

必要であれば、'.require_paths' というファイルを Gem ごとに作成します。

rubygems (127.0)

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

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


===[a:gem_command] gem コマンドの使い方

$ gem help

RubyGems は Ruby のための高機能なパッケージ管理ツールです。
これはより多くの情報へのポインタを含んでいる基本的なヘルプメッセージです。

使用方法:
gem -h/--help
gem -v/--version
gem command [arguments...] [options...]

例:
...

絞り込み条件を変える

Rake::FileList#pathmap(spec = nil) -> Rake::FileList (22.0)

各要素に String#pathmap を適用した新しい Rake::FileList を返します。

各要素に String#pathmap を適用した新しい Rake::FileList を返します。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb", "test3.rb")
file_list.pathmap("%n") # => ["test1", "test2", "test3"]
end
//}

@see String#pathmap