るりまサーチ

最速Rubyリファレンスマニュアル検索!
28698件ヒット [1-100件を表示] (0.286秒)

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p
  5. rsa p

ライブラリ

クラス

キーワード

検索結果

<< 1 2 3 ... > >>

Gem::DependencyList#dependency_order -> [Gem::Specification] (33501.0)

依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

...依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存...
...If there are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again....

Gem::Specification#development_dependencies -> Array (27401.0)

この Gem が依存している Gem のリストを返します。

この Gem が依存している Gem のリストを返します。

Gem::DependencyInstaller#gather_dependencies -> Array (27301.0)

依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。

依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。

Pathname#expand_path(default_dir = &#39;.&#39;) -> Pathname (21401.0)

Pathname.new(File.expand_path(self.to_s, *args)) と同じです。

...Pathname.new(File.expand_path(self.to_s, *args)) と同じです。

@param default_dir self が相対パスであれば default_dir を基準に展開されます。

//emlist[例][ruby]{
require "pathname"

p
ath = Pathname("testfile")
P
athname.pwd # => #<Pathname:/path/to>
p
ath.expand_...
...path # => #<Pathname:/path/to/testfile>
p
ath.expand_path("../") # => #<Pathname:/path/testfile>
//}

@see File.expand_path...

Gem::DependencyInstaller#find_spec_by_name_and_version(gem_name, version = Gem::Requirement.default) -> Array (21301.0)

与えられた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と それの存在する URI を含む配列を返します。

...られた Gem の名前とバージョンに関する条件にマッチする Gem::Specification と
それの存在する URI を含む配列を返します。

@param gem_name Gem の名前を指定します。

@param version Gem が満たすバージョンに関する条件を指定します。...

絞り込み条件を変える

Gem::Specification#dependencies -> Array (21301.0)

依存している Gem のリストを返します。

...依存している Gem のリストを返します。

@see Gem::Dependency...

Gem::Specification#dependent_gems -> Array (21301.0)

この Gem に依存している全ての Gem の情報のリストを返します。

...この Gem に依存している全ての Gem の情報のリストを返します。

それぞれのエントリは配列になっており、各要素は以下のようになっています。

(0) Gem::Specification
(1) Gem::Dependency
(2) Gem::Specification の配列...

Gem::Specification#runtime_dependencies -> Array (21301.0)

この Gem パッケージが依存している Gem パッケージのリストを返します。

この Gem パッケージが依存している Gem パッケージのリストを返します。

Rake::PackageTask#package_dir_path -> String (21301.0)

パッケージに含むファイルを配置するディレクトリを返します。

...パッケージに含むファイルを配置するディレクトリを返します。

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

Rake::PackageTask.new("sample", "1.0.0") do |package_task|
p
ackage_task.package_dir_path # => "pkg/sample-1.0.0"
end
//}...

OpenSSL::PKey::RSA#d -> OpenSSL::BN (21202.0)

鍵の private exponent です。

...鍵の private exponent です。

これは秘密鍵の一部です。...

絞り込み条件を変える

<< 1 2 3 ... > >>