るりまサーチ

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

別のキーワード

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

検索結果

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

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

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

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

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

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

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

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

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

gemspec をセットします。

...gemspec をセットします。

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

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

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

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

rubygems (42.0)

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

...oxy サーバ経由で Gem パッケージをインストールするには以下のようにします。

$ gem install rak -p http://user:password@proxy.example.com/

==== Gem パッケージをアンインストールする

例えば rak をアンインストールするには、以下のい...
...ry = 'hello summary'
s.files = ['lib/hello.rb']
s.authors = ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end
//}

: name
この Gem の名前...
...packagetask'

PKG_FILES = FileList[
'lib/hello.rb',
'spec/*'
]
spec =
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.1'
s.author = 'Hello Author'
s.email = 'hello@example.com'
s.homepage = 'http://example.com/hello'
s...

絞り込み条件を変える

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

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

...い 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...