るりまサーチ

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

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

ライブラリ

クラス

キーワード

検索結果

Gem::Specification#require_path=(path) (18112.0)

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

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

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

@
see Gem::Specification#require_paths=...

rubygems (36.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 の名前...
...= '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 = 'lib'
s.has_rdoc = false
s.extra_rdo...

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

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

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

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

@
param plural 属性名の複数形を指定します。...