612件ヒット
[1-100件を表示]
(0.127秒)
ライブラリ
- ビルトイン (156)
- csv (24)
-
fiddle
/ import (12) - openssl (24)
- optparse (48)
- pathname (108)
- rake (24)
- rexml (12)
-
rexml
/ document (48) -
rubygems
/ version (24) - socket (24)
- stringio (24)
-
webrick
/ httpresponse (48) -
webrick
/ httpversion (12) - zlib (24)
クラス
-
ARGF
. class (12) -
CSV
:: Table (24) - Exception (24)
-
Gem
:: Version (24) - IO (36)
-
OpenSSL
:: X509 :: Extension (12) - OptionParser (24)
-
OptionParser
:: ParseError (24) - Pathname (108)
-
REXML
:: Child (12) -
REXML
:: Declaration (12) -
REXML
:: Entity (12) -
REXML
:: NotationDecl (12) -
REXML
:: ParseException (12) -
Rake
:: InvocationChain (12) -
Rake
:: InvocationChain :: EmptyInvocationChain (12) - Rational (24)
-
Socket
:: Option (24) - StringIO (24)
- Symbol (36)
-
Thread
:: Backtrace :: Location (24) -
WEBrick
:: HTTPResponse (48) -
WEBrick
:: HTTPVersion (12) -
Zlib
:: GzipWriter (24)
モジュール
-
Fiddle
:: Importer (12) -
OpenSSL
:: Buffering (12)
キーワード
- << (36)
- bind (12)
- binread (12)
- binwrite (12)
- body= (12)
- capitalize (9)
-
content
_ length (12) -
content
_ length= (12) - ctime (12)
- data (12)
- downcase (9)
-
each
_ line (24) - help (12)
-
http
_ version (12) - inspect (24)
-
previous
_ sibling= (12) - print (12)
- read (12)
- readlines (12)
- swapcase (9)
- sysopen (12)
- syswrite (12)
-
to
_ csv (12) - upcase (9)
- version (12)
- write (72)
検索結果
先頭5件
-
Rake
:: InvocationChain :: EmptyInvocationChain # to _ s -> String (24102.0) -
'TOP' という文字列を返します。
'TOP' という文字列を返します。 -
Rational
# to _ s -> String (21126.0) -
自身を人間が読みやすい形の文字列表現にして返します。
..."-17/7" のように10進数の表記を返します。
@return 有理数の表記にした文字列を返します。
//emlist[例][ruby]{
Rational(3, 4).to_s # => "3/4"
Rational(8).to_s # => "8/1"
Rational(-8, 6).to_s # => "-4/3"
Rational(0.5).to_s # => "1/2"
//}
@see Rational#inspect... -
Gem
:: Version # to _ s -> String (21108.0) -
バージョン情報を文字列として返します。
...バージョン情報を文字列として返します。
//emlist[][ruby]{
version = Gem::Version.new("1.2.3a")
p version.to_s # => "1.2.3a"
p version.version # => "1.2.3a"
//}... -
Rake
:: InvocationChain # to _ s -> String (21108.0) -
トップレベルのタスクから自身までの依存関係を文字列として返します。
...の依存関係を文字列として返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
invocation_chain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.to_s # => "TOP => task_a"
end
//}... -
Thread
:: Backtrace :: Location # to _ s -> String (21108.0) -
self が表すフレームを Kernel.#caller と同じ表現にした文字列を返し ます。
...を返し
ます。
//emlist[例][ruby]{
# foo.rb
class Foo
attr_accessor :locations
def initialize(skip)
@locations = caller_locations(skip)
end
end
Foo.new(0..2).locations.map do |call|
puts call.to_s
end
# => path/to/foo.rb:5:in `initialize'
# path/to/foo.rb:9:in `new'
# path/to/fo... -
WEBrick
:: HTTPVersion # to _ s -> String (21108.0) -
自身を文字列に変換して返します。
...自身を文字列に変換して返します。
require 'webrick'
v = WEBrick::HTTPVersion.new('1.1')
p v.to_s #=> "1.1"... -
OpenSSL
:: X509 :: Extension # to _ s -> String (21102.0) -
拡張領域の内容を、文字列表現で返します。
拡張領域の内容を、文字列表現で返します。 -
REXML
:: Declaration # to _ s -> String (21102.0) -
ノードを文字列化します。
ノードを文字列化します。 -
REXML
:: NotationDecl # to _ s -> String (21102.0) -
self を文字列化したものを返します。
self を文字列化したものを返します。