るりまサーチ (Ruby 2.1.0)

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

別のキーワード

  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 (54328.0)

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

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

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

Gem::Version#to_s -> String (54328.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 (54310.0)

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

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

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

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

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

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

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

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

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

絞り込み条件を変える