るりまサーチ

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

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils rm_r
  5. fileutils cp_r

検索結果

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

Gem::Specification#require_paths の単数バージョンです。

...Gem::Specification#require_paths の単数バージョンです。

@see Gem::Specification#require_paths...

Gem::Specification#require_paths -> [String] (18400.0)

この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ のリストを返します。

...この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ
のリストを返します。...

Gem::Specification.attribute_alias_singular(singular, plural) -> () (6212.0)

既に存在する複数形の属性の単数形バージョンを定義します。

...に定義すると
attribute_alias_singular :require_path, :require_paths
# こう書くかわりに
s.require_paths = ['mylib']
# こう書くことができます。
s.require_path = 'mylib'

@param singular 属性名の単数形を指定します。

@param plural 属性名の複数形...

rubygems (6120.0)

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

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


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

$ gem help

R
ubyGems は Ruby のための高機能なパッケージ管理ツールです。
これはより多くの情報へのポ...
...本的なヘルプメッセージです。

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

例:
gem install rake
gem list --local
gem build package.gemspec
gem help install

さら...
...s.version = '0.0.1'
s.author = 'Hello Author'
s.email = 'hello@example.com'
s.homepage = 'http://example.com/hello'
s.platform = Gem::Platform::RUBY
s.summary = 'Hello Gem'
s.files = PKG_FILES.to_a
s.require_path =...

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

絞り込み条件を変える