るりまサーチ

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

別のキーワード

  1. rbconfig ruby
  2. fiddle ruby_free
  3. fiddle build_ruby_platform
  4. rake ruby
  5. rubygems/defaults ruby_engine

検索結果

<< 1 2 3 ... > >>

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

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

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

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

REXML::Document#version -> String (21320.0)

XML 宣言に含まれている XML 文書のバージョンを返します。

...XML 宣言を持たない場合はデフォルトの値
(REXML::XMLDecl.defaultで宣言されているもの)を返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<e />
EOS
doc.version # => "1.0"
//}...

Object::RUBY_VERSION -> String (15425.0)

Ruby のバージョンを表す文字列。

...
Ruby
のバージョンを表す文字列。

Ruby
のバージョンは、major.minor.teeny という形式です。...

Object::RUBY_ENGINE_VERSION -> String (15419.0)

Ruby処理系実装のバージョンを表す文字列。

...Ruby処理系実装のバージョンを表す文字列。...

Gem::Specification#rubygems_version -> String (15402.0)

この Gem パッケージを作成した RubyGems のバージョンを返します。

...この Gem パッケージを作成した RubyGems のバージョンを返します。...

絞り込み条件を変える

Gem::RubyGemsPackageVersion -> String (12402.0)

このライブラリのバージョンを表す文字列。

このライブラリのバージョンを表す文字列。

Gem::RubyGemsVersion -> String (12402.0)

このライブラリのバージョンを表す文字列。

このライブラリのバージョンを表す文字列。

StringScanner::Version -> String (12320.0)

StringScanner クラスのバージョンを文字列で返します。 この文字列は Object#freeze されています。

...StringScanner クラスのバージョンを文字列で返します。
この文字列は Object#freeze されています。

//emlist[例][ruby]{
require 'strscan'

String
Scanner::Version # => "0.7.0"
String
Scanner::Version.frozen? # => true
//}...

Net::HTTPResponse#http_version -> String (12314.0)

サーバがサポートしている HTTP のバージョンを文字列で返します。

...サーバがサポートしている HTTP のバージョンを文字列で返します。

//emlist[例][ruby]{
require 'net/http'

uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.http_version # => "1.1"
//}...
<< 1 2 3 ... > >>