396件ヒット
[1-100件を表示]
(0.102秒)
ライブラリ
- ビルトイン (12)
-
net
/ http (12) - openssl (12)
- optparse (24)
- psych (24)
-
rexml
/ document (60) -
rubygems
/ requirement (36) -
rubygems
/ version (96) -
webrick
/ httpresponse (24) -
webrick
/ httpversion (24) - win32ole (72)
クラス
-
Encoding
:: UndefinedConversionError (12) -
Gem
:: Requirement (36) -
Gem
:: Version (96) -
Net
:: HTTP (12) -
OpenSSL
:: SSL :: SSLContext (12) - OptionParser (24)
-
Psych
:: Nodes :: Document (24) -
REXML
:: Document (36) -
REXML
:: Instruction (24) -
WEBrick
:: HTTPResponse (24) -
WEBrick
:: HTTPVersion (24) - WIN32OLE (12)
-
WIN32OLE
_ TYPE (24) -
WIN32OLE
_ TYPELIB (36)
キーワード
- <=> (24)
- === (12)
- =~ (12)
- bump (12)
- chunked= (12)
- content (12)
- encoding (12)
-
error
_ char (12) -
http
_ version (12) -
major
_ version (24) -
marshal
_ dump (12) -
marshal
_ load (12) -
minor
_ version (24) -
ole
_ query _ interface (12) -
on
_ tail (12) - prerelease? (12)
- release (12)
-
satisfied
_ by? (12) -
ssl
_ version= (24) -
stand
_ alone? (12) - target (12)
-
to
_ s (24) - ver (12)
- version= (12)
検索結果
先頭5件
-
Gem
:: Version # version -> String (18138.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 (18120.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"
//}... -
Psych
:: Nodes :: Document # version -> [Integer] (18114.0) -
YAML ドキュメントのバージョンを返します。
...YAML ドキュメントのバージョンを返します。
@see Psych::Nodes::Document#version=,
Psych::Nodes::Document.new... -
WIN32OLE
_ TYPELIB # version -> Float (18114.0) -
TypeLibのバージョン番号を取得します。
...号、小数点
数部にマイナーバージョン番号を設定したFloatで返します。
@raise WIN32OLERuntimeError TypeLibの属性が読み取れない場合に通知します。
tlib = WIN32OLE_TYPELIB.new('Microsoft Excel 14.0 Object Library')
puts tlib.version # => 1.7... -
WEBrick
:: HTTPResponse # http _ version -> WEBrick :: HTTPVersion (6220.0) -
レスポンスの HTTP のバージョンを表す WEBrick::HTTPVersion オブジェクトを返します。
...ョンを表す WEBrick::HTTPVersion オブジェクトを返します。
require 'webrick'
res = WEBrick::HTTPResponse.new( { :HTTPVersion => "1.1" } )
p res.http_version.class #=> WEBrick::HTTPVersion
p res.http_version.to_s... -
Net
:: HTTP # ssl _ version=(ver) (6120.0) -
利用するプロトコルの種類を指定します。
...利用するプロトコルの種類を指定します。
OpenSSL::SSL::SSLContext.new で指定できるものと同じです。
@param ver 利用するプロトコルの種類(文字列 or シンボル)
@see Net::HTTP#ssl_version, OpenSSL::SSL::SSLContext#ssl_version=... -
Psych
:: Nodes :: Document # version=(ver) (6114.0) -
YAML ドキュメントのバージョンを設定します。
...YAML ドキュメントのバージョンを設定します。
@param ver 設定するバージョン
@see Psych::Nodes::Document#version,
Psych::Nodes::Document.new... -
WIN32OLE
_ TYPE # major _ version -> Integer (6114.0) -
型のメジャーバージョン番号を取得します。
...取得します。
@return 型のメジャーバージョン番号を整数で返します。
@raise WIN32OLERuntimeError 型属性の読み取りに失敗すると通知します。
tobj = WIN32OLE_TYPE.new('Microsoft Word 14.0 Object Library', 'Documents')
p tobj.major_version # => 8... -
WIN32OLE
_ TYPE # minor _ version -> Integer (6114.0) -
型のマイナーバージョン番号を取得します。
...取得します。
@return 型のマイナーバージョン番号を整数で返します。
@raise WIN32OLERuntimeError 型属性の読み取りに失敗すると通知します。
tobj = WIN32OLE_TYPE.new('Microsoft Word 14.0 Object Library', 'Documents')
p tobj.minor_version # => 5...