るりまサーチ

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

別のキーワード

  1. irb/input-method new
  2. irb/input-method gets
  3. irb/input-method encoding
  4. irb/input-method readable_atfer_eof?
  5. readline input=

種類

ライブラリ

クラス

キーワード

検索結果

Gem::Version.create(input) -> Gem::Version | nil (18232.0)

Gem::Version のインスタンスを作成するためのファクトリメソッドです。

...m::Version.create('1.3.17') # => #<Gem::Version "1.3.17">
ver2 = Gem::Version.create(ver1) # => #<Gem::Version "1.3.17">
ver3 = Gem::Version.create(nil) # => nil
//}

@param input Gem::Version のインスタンスか文字列を指定します。

@raise ArgumentError input がバー...

Gem::Requirement.create(input) -> Gem::Requirement (18220.0)

Gem::Requirement のインスタンスを作成するためのファクトリメソッドです。

...す。

@param input 文字列か配列か Gem::Requirement, Gem::Version のインスタンス
のいずれかを指定します。

@return 上記以外の値を input に指定するとデフォルト値を返します。

//emlist[][ruby]{
pp Gem::Requirement.create("~> 3.2.1")
# =>...

ruby 1.8.4 feature (24.0)

ruby 1.8.4 feature ruby 1.8.4 での ruby 1.8.3 からの変更点です。

...xt.c (MakeX509ExtFactory): should use
# OPENSSL_malloc to allocate X509V3_CTX.
#
# * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_create_ext): use
# X509V3_EXT_nconf_nid to avoid SEGV (and to build extensions which
# values are placed in separate section).
#
#...
...raise): ditto.
#
# ?

#Mon Oct 31 05:49:23 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
#
# * ext/openssl/ossl_cipher.c (ossl_cipher_update): input data must
# not be empty. [ruby-talk:161220]
#
# * test/openssl/test_cipher.rb: add test for Cipher#update("").
#
# ?

#Wed Oct 12...
...85>)) ((<ruby-dev:27839>))

: irb [bug]

#Tue Oct 25 15:32:00 2005 Yukihiro Matsumoto <matz@ruby-lang.org>
#
# * lib/irb.rb (IRB::Irb::eval_input): handle prompts with newlines
# in irb auto-indentation mode. [ruby-core:06358]

irbのプロンプトに改行文字が含まれて...

NEWS for Ruby 3.0.0 (18.0)

NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

...and line options

=== `--help` option

When the environment variable `RUBY_PAGER` or `PAGER` is present and has
a non-empty value, and the standard input and output are tty, the `--help`
option shows the help message via the pager designated by the value.
16754

=== `--backtrace-limit` option

The `...
...16233
* Changed default for Encoding.default_external to UTF-8 on Windows 16604
* Fiber
* Fiber.new(blocking: true/false) allows you to create non-blocking execution contexts. 16786
* Fiber#blocking? tells whether the fiber is non-blocking. 16786
* Fiber#backtrace and Fiber#backt...
...en using a scheduler. 16792
* Proc
* Proc#== and Proc#eql? are now defined and will return true for separate Proc instances if the procs were created from the same block. 14267
* Queue / SizedQueue
* Queue#pop, SizedQueue#push and related methods may now invoke the `block`/`unblock` sche...