741件ヒット
[1-100件を表示]
(0.192秒)
ライブラリ
- ビルトイン (321)
- csv (108)
- logger (48)
- matrix (12)
-
net
/ http (12) - optparse (12)
-
rexml
/ document (12) - rubygems (12)
-
rubygems
/ commands / update _ command (12) -
rubygems
/ requirement (36) -
rubygems
/ specification (72) -
rubygems
/ version (48) - socket (24)
- win32ole (12)
クラス
- Array (24)
- BasicSocket (12)
- Binding (11)
- CSV (108)
-
Encoding
:: Converter (192) -
Encoding
:: UndefinedConversionError (12) - FrozenError (6)
-
Gem
:: Commands :: UpdateCommand (12) -
Gem
:: Requirement (36) -
Gem
:: Specification (72) -
Gem
:: Version (48) - Hash (12)
- Logger (48)
- Matrix (12)
- Method (12)
-
Net
:: HTTPResponse (12) - OptionParser (12)
-
REXML
:: Document (12) - Range (4)
- Socket (12)
- String (24)
- WIN32OLE (12)
モジュール
- Enumerable (24)
- Kernel (12)
キーワード
- <=> (12)
- === (12)
- =~ (12)
- add (24)
- connect (12)
- convert (48)
- converters (12)
- convpath (12)
-
destination
_ encoding (12) -
do
_ not _ reverse _ lookup (12) -
do
_ rubygems _ update (12) - eql? (12)
-
error
_ char (12) - finish (12)
- gem (12)
-
header
_ convert (36) -
header
_ converters (12) -
http
_ version (12) -
insert
_ output (12) - inverse (12)
- invert (12)
-
last
_ error (12) - log (24)
-
ole
_ query _ interface (12) -
primitive
_ convert (48) -
primitive
_ errinfo (12) - putback (24)
- receiver (29)
- replacement (12)
- replacement= (12)
-
required
_ ruby _ version (12) -
required
_ ruby _ version= (12) -
required
_ rubygems _ version (12) -
required
_ rubygems _ version= (12) - reverse (12)
- reverse! (12)
-
reverse
_ each (52) -
rubygems
_ version (12) -
rubygems
_ version= (12) -
satisfied
_ by? (12) -
source
_ encoding (12) -
to
_ s (12) -
unconverted
_ fields? (12) - version (24)
検索結果
先頭5件
- OptionParser
# ver -> String - Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol - Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize) -> Symbol - Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset) -> Symbol - Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer) -> Symbol
-
OptionParser
# ver -> String (21214.0) -
program_name、version と release から生成したバージョンを表す文字列を返します。
...ogram_name、version と release から生成したバージョンを表す文字列を返します。
//emlist[例][ruby]{
require "optparse"
OptionParser.new do |opts|
opts.banner = "Usage: example.rb [options]"
opts.program_name = "Optparse Example"
opts.version = [0, 1]
opts.release =......"2019-05-01"
opts.on_tail("--version", "Show version") do
puts opts.ver # => "Optparse Example 0.1 (2019-05-01)"
exit
end
opts.parse!(ARGV)
end
//}... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol (15907.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...ing::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesize......ptions 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after output......re input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize) -> Symbol (15807.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...ing::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesize......ptions 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after output......re input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset) -> Symbol (15607.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...ing::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesize......ptions 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after output......re input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer) -> Symbol (15407.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...ing::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesize......ptions 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol
options には以下が指定できます。
: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after output......re input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :... -
Gem
:: Specification # required _ ruby _ version -> Gem :: Requirement (15318.0) -
この Gem パッケージを動作させるのに必要な Ruby のバージョンを返します。
...この Gem パッケージを動作させるのに必要な Ruby のバージョンを返します。... -
Gem
:: Specification # required _ ruby _ version=(requirement) (15318.0) -
この Gem パッケージを動作させるのに必要な Ruby のバージョンをセットします。
...この Gem パッケージを動作させるのに必要な Ruby のバージョンをセットします。
@param requirement Gem::Requirement.create が受け付ける形式のオブジェクトを指定します。
@see Gem::Requirement... -
Gem
:: Commands :: UpdateCommand # do _ rubygems _ update(version) (15301.0) -
RubyGems 自体を更新します。
...
RubyGems 自体を更新します。... -
Gem
:: Specification # required _ rubygems _ version -> Gem :: Requirement (15301.0) -
この Gem パッケージを動作させるのに必要な RubyGems のバージョンを返します。
...この Gem パッケージを動作させるのに必要な RubyGems のバージョンを返します。...