304件ヒット
[101-200件を表示]
(0.158秒)
ライブラリ
- ビルトイン (84)
- csv (12)
-
minitest
/ spec (1) -
minitest
/ unit (3) - rss (144)
- rubygems (12)
- strscan (48)
クラス
-
ARGF
. class (36) - CSV (12)
-
MiniTest
:: Unit (2) - Module (1)
-
RSS
:: Maker :: ChannelBase (24) -
RSS
:: Maker :: ChannelBase :: SkipDaysBase (12) -
RSS
:: Maker :: ChannelBase :: SkipDaysBase :: DayBase (24) -
RSS
:: Maker :: ChannelBase :: SkipHoursBase (12) -
RSS
:: Maker :: ChannelBase :: SkipHoursBase :: HourBase (24) -
RSS
:: Rss :: Channel (48) - StringScanner (48)
-
Thread
:: Backtrace :: Location (48)
モジュール
- Kernel (12)
-
MiniTest
:: Assertions (1)
キーワード
-
absolute
_ path (12) -
base
_ label (12) - content (24)
- content= (24)
- filename (12)
- gem (12)
-
infect
_ with _ assertions (1) - inspect (12)
-
new
_ day (12) -
new
_ hour (12) - path (12)
- puke (1)
-
scan
_ full (12) -
search
_ full (12) - skipDays (24)
- skipDays= (12)
- skipHours (24)
- skipHours= (12)
-
skip
_ blanks? (12) -
skip
_ until (12) - skips= (1)
-
to
_ s (12)
検索結果
先頭5件
-
RSS
:: Maker :: ChannelBase :: SkipDaysBase :: DayBase # content=() (9101.0) -
@todo
@todo -
RSS
:: Maker :: ChannelBase :: SkipHoursBase :: HourBase # content (9101.0) -
@todo
@todo -
RSS
:: Maker :: ChannelBase :: SkipHoursBase :: HourBase # content=() (9101.0) -
@todo
@todo -
RSS
:: Rss :: Channel # skipDays (9101.0) -
@todo
@todo -
RSS
:: Rss :: Channel # skipDays= (9101.0) -
@todo
@todo -
RSS
:: Rss :: Channel # skipHours (9101.0) -
@todo
@todo -
RSS
:: Rss :: Channel # skipHours= (9101.0) -
@todo
@todo -
Module
# infect _ with _ assertions(positive _ prefix , negative _ prefix , skip _ regexp , map = {}) -> () (6208.0) -
BDD 風にテストを書くために使用するメソッド群を定義します。
...わりのプレフィックスを指定します。
@param negative_prefix refute の代わりのプレフィックスを指定します。
@param skip_regexp この正規表現にマッチしたメソッドは定義しません。
@param map メソッド名の変換規則のハッシュを指定... -
MiniTest
:: Unit # skips=(count) (6201.0) -
実行しなかったテストケース数をセットします。
...実行しなかったテストケース数をセットします。
@param count 件数を指定します。... -
StringScanner
# search _ full(regexp , s , f) -> object (6113.0) -
regexp で指定された正規表現とマッチするまで文字列をスキャンします。
...* search_full(regexp, true, true) は StringScanner#scan_until と同等。
* search_full(regexp, true, false) は StringScanner#skip_until と同等。
* search_full(regexp, false, true) は StringScanner#check_until と同等。
* search_full(regexp, false, false) は StringScanner#e......rscan'
s = StringScanner.new('test string')
p s.search_full(/t/, true, true) #=> "t"
p s.search_full(/str/, false, true) #=> "est str"
p s.search_full(/string/, true, true) #=> "est string"
//}
@see StringScanner#scan_until StringScanner#skip_until StringScanner#check_until StringSca... -
Thread
:: Backtrace :: Location # inspect -> String (6113.0) -
Thread::Backtrace::Location#to_s の結果を人間が読みやすいような文 字列に変換したオブジェクトを返します。
...ad::Backtrace::Location#to_s の結果を人間が読みやすいような文
字列に変換したオブジェクトを返します。
//emlist[例][ruby]{
# foo.rb
class Foo
attr_accessor :locations
def initialize(skip)
@locations = caller_locations(skip)
end
end
Foo.new(0..2).location......s.map do |call|
puts call.inspect
end
# => "path/to/foo.rb:5:in `initialize'"
# "path/to/foo.rb:9:in `new'"
# "path/to/foo.rb:9:in `<main>'"
//}...