374件ヒット
[1-100件を表示]
(0.106秒)
別のキーワード
ライブラリ
- ビルトイン (34)
- etc (12)
-
net
/ http (12) - openssl (12)
- optparse (12)
- psych (24)
-
rexml
/ document (48) - rubygems (24)
-
rubygems
/ specification (12) -
rubygems
/ version (36) - strscan (12)
- zlib (12)
クラス
-
Encoding
:: UndefinedConversionError (12) -
Gem
:: Specification (12) -
Gem
:: Version (24) -
Net
:: HTTPResponse (12) - Object (22)
- OptionParser (12)
-
REXML
:: Document (24) -
REXML
:: Instruction (24) - StringScanner (12)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 4 . 0 (9) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 2
. 7 . 0 (6) -
NEWS for Ruby 3
. 0 . 0 (5) -
RUBY
_ ENGINE _ VERSION (10) -
RUBY
_ VERSION (12) - RubyGemsPackageVersion (12)
- RubyGemsVersion (12)
- Rubyの起動 (12)
- VERSION (24)
- Version (24)
- cgi (12)
- confstr (12)
- content (12)
- dump (24)
-
error
_ char (12) -
http
_ version (12) - irb (12)
- rdoc (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 3 feature (12) -
rubygems
_ version (12) -
stand
_ alone? (12) - target (12)
-
to
_ s (12) - ver (12)
検索結果
先頭5件
-
Gem
:: Specification # rubygems _ version -> String (27603.0) -
この Gem パッケージを作成した RubyGems のバージョンを返します。
...この Gem パッケージを作成した RubyGems のバージョンを返します。... -
Object
:: RUBY _ VERSION -> String (24649.0) -
Ruby のバージョンを表す文字列。
...
Ruby のバージョンを表す文字列。
Ruby のバージョンは、major.minor.teeny という形式です。... -
Object
:: RUBY _ ENGINE _ VERSION -> String (24637.0) -
Ruby処理系実装のバージョンを表す文字列。
...Ruby処理系実装のバージョンを表す文字列。... -
Gem
:: RubyGemsPackageVersion -> String (24604.0) -
このライブラリのバージョンを表す文字列。
このライブラリのバージョンを表す文字列。 -
Gem
:: RubyGemsVersion -> String (24604.0) -
このライブラリのバージョンを表す文字列。
このライブラリのバージョンを表す文字列。 -
Gem
:: Version # version -> String (24447.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 (24427.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"
//}... -
StringScanner
:: Version -> String (18427.0) -
StringScanner クラスのバージョンを文字列で返します。 この文字列は Object#freeze されています。
...StringScanner クラスのバージョンを文字列で返します。
この文字列は Object#freeze されています。
//emlist[例][ruby]{
require 'strscan'
StringScanner::Version # => "0.7.0"
StringScanner::Version.frozen? # => true
//}... -
Net
:: HTTPResponse # http _ version -> String (15421.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"
//}...