るりまサーチ

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

別のキーワード

  1. _builtin to_s
  2. openssl to_der
  3. openssl to_s
  4. _builtin to_a
  5. openssl to_pem

検索結果

Gem::Requirement#to_s -> String (18109.0)

条件を表す文字列を返します。

...条件を表す文字列を返します。

//emlist[][ruby]{
req = Gem::Requirement.new(["< 5.0", ">= 1.9"])
p req.to_s # => "< 5.0, >= 1.9"
//}...

Gem::Version#to_s -> String (18109.0)

バージョン情報を文字列として返します。

...バージョン情報を文字列として返します。

//emlist[][ruby]{
version = Gem::Version.new("1.2.3a")
p version.to_s # => "1.2.3a"
p version.version # => "1.2.3a"
//}...

Gem::Package::TarHeader#to_s -> String (18103.0)

ヘッダの情報を文字列として返します。

ヘッダの情報を文字列として返します。

Gem::Platform#to_s -> String (18103.0)

自身にセットされている CPU, OS, バージョンを文字列として返します。

自身にセットされている CPU, OS, バージョンを文字列として返します。

Gem::Version#version -> String (3009.0)

バージョン情報を文字列として返します。

...バージョン情報を文字列として返します。

//emlist[][ruby]{
version = Gem::Version.new("1.2.3a")
p version.to_s # => "1.2.3a"
p version.version # => "1.2.3a"
//}...

絞り込み条件を変える