Last active
August 29, 2015 14:13
-
-
Save shikhalev/12090b4e64340d9d8c2e to your computer and use it in GitHub Desktop.
Для статьи «Средства самопознания в RUby»
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
def log msg, file, line | |
$stderr.puts "[#{file}:#{line}] #{msg}" | |
end | |
log 'Сообщение', __FILE__, __LINE__ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
def log msg | |
$stderr.puts "[#{caller[0]}] #{msg}" | |
end | |
def log2 msg | |
cl = caller_locations[0] | |
$stderr.puts "[#{cl.path}:#{cl.lineno}] #{msg}" | |
end | |
log 'Сообщение' | |
log2 'Сообщение' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
def divide a, b | |
if b == 0 || b == 0.0 | |
raise StandardError, 'На ноль делить нельзя', caller | |
end | |
a / b | |
end | |
puts divide(1, 0) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
def print_module mod, ancestors = true | |
if ancestors | |
puts "#{mod.class.name.downcase} #{mod.name}" + | |
" #{mod.ancestors.inspect}" | |
else | |
puts " #{mod.class.name.downcase} #{mod.name}" | |
end | |
mod.constants(false).each do |c| | |
puts " const #{c.inspect}" | |
end | |
mod.public_instance_methods(false).each do |m| | |
puts " #{m.inspect}" | |
end | |
if ancestors | |
ancs = mod.ancestors[1..-1] | |
ancs.each do |anc| | |
print_module anc, false | |
end | |
end | |
end | |
print_module Class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
def test a, b = 1, *c, d:, e: 2, **f, &g | |
end | |
p method(:test).parameters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
ARG_TEMPLATE = { | |
req: '%s', | |
opt: '%s = <..>', | |
rest: '*%s', | |
key: '%s: <..>', | |
keyreq: '%s:', | |
keyrest: '**%s', | |
block: '&%s' | |
} | |
def header mobj | |
anprefix = 'arg' | |
ancounter = 0 | |
params = [] | |
mobj.parameters.each do |param| | |
if param.size == 2 | |
name = param[1] | |
else | |
name = anprefix + ancounter.to_s | |
ancounter += 1 | |
end | |
params << (ARG_TEMPLATE[param[0]] % name) | |
end | |
result = "#{mobj.name}(#{params.join(', ')})" | |
if mobj.source_location | |
result += " [#{mobj.source_location.join(':')}]" | |
else | |
result += " [<binary>]" | |
end | |
result | |
end | |
def test a, b = 1, *c, d:, e: 2, **f, &g | |
end | |
puts header(method(:test)) | |
puts header(method(:header)) | |
puts header(method(:puts)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
ARG_TEMPLATE = { | |
req: '%s', | |
opt: '%s = <..>', | |
rest: '*%s', | |
key: '%s: <..>', | |
keyreq: '%s:', | |
keyrest: '**%s', | |
block: '&%s' | |
} | |
def header mobj | |
anprefix = 'arg' | |
ancounter = 0 | |
params = [] | |
mobj.parameters.each do |param| | |
if param.size == 2 | |
name = param[1] | |
else | |
name = anprefix + ancounter.to_s | |
ancounter += 1 | |
end | |
params << (ARG_TEMPLATE[param[0]] % name) | |
end | |
result = "#{mobj.name}(#{params.join(', ')})" | |
if mobj.source_location | |
result += " [#{mobj.source_location.join(':')}]" | |
else | |
result += " [<binary>]" | |
end | |
result | |
end | |
class Alpha | |
ALPHA = 1 | |
class << self | |
attr_accessor :beta | |
end | |
def alpha a, b = 0, *c | |
p [a, b, c] | |
end | |
end | |
def print_module mod | |
title = "#{mod.class.name.downcase} #{mod}" | |
if Class === mod && mod.superclass != nil | |
title += " < #{mod.superclass}" | |
end | |
puts title | |
puts " ancestors: #{mod.ancestors.join(', ')}" | |
puts " constants:" | |
mod.constants(false).each do |c| | |
puts " #{c}" | |
end | |
puts " class methods:" | |
mod.public_methods(false).each do |m| | |
puts " #{header(mod.method(m))}" | |
end | |
puts " instance methods:" | |
mod.public_instance_methods(false).each do |m| | |
puts " #{header(mod.instance_method(m))}" | |
end | |
puts '' | |
end | |
ObjectSpace.each_object(Module) do |mod| | |
print_module mod | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SyntaxError < ScriptError | |
ancestors: SyntaxError, ScriptError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class ScriptError < Exception | |
ancestors: ScriptError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class RangeError < StandardError | |
ancestors: RangeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class KeyError < IndexError | |
ancestors: KeyError, IndexError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class IndexError < StandardError | |
ancestors: IndexError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class ArgumentError < StandardError | |
ancestors: ArgumentError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class TypeError < StandardError | |
ancestors: TypeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class StandardError < Exception | |
ancestors: StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Interrupt < SignalException | |
ancestors: Interrupt, SignalException, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class SignalException < Exception | |
ancestors: SignalException, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
signo() [<binary>] | |
signm() [<binary>] | |
class fatal < Exception | |
ancestors: fatal, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class SystemExit < Exception | |
ancestors: SystemExit, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
status() [<binary>] | |
success?() [<binary>] | |
class Exception < Object | |
ancestors: Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
exception(*arg0) [<binary>] | |
==(arg0) [<binary>] | |
to_s() [<binary>] | |
message() [<binary>] | |
inspect() [<binary>] | |
backtrace() [<binary>] | |
backtrace_locations() [<binary>] | |
set_backtrace(arg0) [<binary>] | |
cause() [<binary>] | |
respond_to?(*arg0) [<binary>] | |
class Symbol < Object | |
ancestors: Symbol, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
all_symbols() [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
===(arg0) [<binary>] | |
inspect() [<binary>] | |
to_s() [<binary>] | |
id2name() [<binary>] | |
intern() [<binary>] | |
to_sym() [<binary>] | |
to_proc() [<binary>] | |
succ() [<binary>] | |
next() [<binary>] | |
<=>(arg0) [<binary>] | |
casecmp(arg0) [<binary>] | |
=~(arg0) [<binary>] | |
[](*arg0) [<binary>] | |
slice(*arg0) [<binary>] | |
length() [<binary>] | |
size() [<binary>] | |
empty?() [<binary>] | |
match(arg0) [<binary>] | |
upcase() [<binary>] | |
downcase() [<binary>] | |
capitalize() [<binary>] | |
swapcase() [<binary>] | |
encoding() [<binary>] | |
class String < Object | |
ancestors: String, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
try_convert(arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
<=>(arg0) [<binary>] | |
==(arg0) [<binary>] | |
===(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
casecmp(arg0) [<binary>] | |
+(arg0) [<binary>] | |
*(arg0) [<binary>] | |
%(arg0) [<binary>] | |
[](*arg0) [<binary>] | |
[]=(*arg0) [<binary>] | |
insert(arg0, arg1) [<binary>] | |
length() [<binary>] | |
size() [<binary>] | |
bytesize() [<binary>] | |
empty?() [<binary>] | |
=~(arg0) [<binary>] | |
match(*arg0) [<binary>] | |
succ() [<binary>] | |
succ!() [<binary>] | |
next() [<binary>] | |
next!() [<binary>] | |
upto(*arg0) [<binary>] | |
index(*arg0) [<binary>] | |
rindex(*arg0) [<binary>] | |
replace(arg0) [<binary>] | |
clear() [<binary>] | |
chr() [<binary>] | |
getbyte(arg0) [<binary>] | |
setbyte(arg0, arg1) [<binary>] | |
byteslice(*arg0) [<binary>] | |
scrub(*arg0) [<binary>] | |
scrub!(*arg0) [<binary>] | |
freeze() [<binary>] | |
to_i(*arg0) [<binary>] | |
to_f() [<binary>] | |
to_s() [<binary>] | |
to_str() [<binary>] | |
inspect() [<binary>] | |
dump() [<binary>] | |
upcase() [<binary>] | |
downcase() [<binary>] | |
capitalize() [<binary>] | |
swapcase() [<binary>] | |
upcase!() [<binary>] | |
downcase!() [<binary>] | |
capitalize!() [<binary>] | |
swapcase!() [<binary>] | |
hex() [<binary>] | |
oct() [<binary>] | |
split(*arg0) [<binary>] | |
lines(*arg0) [<binary>] | |
bytes() [<binary>] | |
chars() [<binary>] | |
codepoints() [<binary>] | |
reverse() [<binary>] | |
reverse!() [<binary>] | |
concat(arg0) [<binary>] | |
<<(arg0) [<binary>] | |
prepend(arg0) [<binary>] | |
crypt(arg0) [<binary>] | |
intern() [<binary>] | |
to_sym() [<binary>] | |
ord() [<binary>] | |
include?(arg0) [<binary>] | |
start_with?(*arg0) [<binary>] | |
end_with?(*arg0) [<binary>] | |
scan(arg0) [<binary>] | |
ljust(*arg0) [<binary>] | |
rjust(*arg0) [<binary>] | |
center(*arg0) [<binary>] | |
sub(*arg0) [<binary>] | |
gsub(*arg0) [<binary>] | |
chop() [<binary>] | |
chomp(*arg0) [<binary>] | |
strip() [<binary>] | |
lstrip() [<binary>] | |
rstrip() [<binary>] | |
sub!(*arg0) [<binary>] | |
gsub!(*arg0) [<binary>] | |
chop!() [<binary>] | |
chomp!(*arg0) [<binary>] | |
strip!() [<binary>] | |
lstrip!() [<binary>] | |
rstrip!() [<binary>] | |
tr(arg0, arg1) [<binary>] | |
tr_s(arg0, arg1) [<binary>] | |
delete(*arg0) [<binary>] | |
squeeze(*arg0) [<binary>] | |
count(*arg0) [<binary>] | |
tr!(arg0, arg1) [<binary>] | |
tr_s!(arg0, arg1) [<binary>] | |
delete!(*arg0) [<binary>] | |
squeeze!(*arg0) [<binary>] | |
each_line(*arg0) [<binary>] | |
each_byte() [<binary>] | |
each_char() [<binary>] | |
each_codepoint() [<binary>] | |
sum(*arg0) [<binary>] | |
slice(*arg0) [<binary>] | |
slice!(*arg0) [<binary>] | |
partition(arg0) [<binary>] | |
rpartition(arg0) [<binary>] | |
encoding() [<binary>] | |
force_encoding(arg0) [<binary>] | |
b() [<binary>] | |
valid_encoding?() [<binary>] | |
ascii_only?() [<binary>] | |
unpack(arg0) [<binary>] | |
encode(*arg0) [<binary>] | |
encode!(*arg0) [<binary>] | |
to_r() [<binary>] | |
to_c() [<binary>] | |
module Enumerable | |
ancestors: Enumerable | |
constants: | |
class methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
to_a(*arg0) [<binary>] | |
entries(*arg0) [<binary>] | |
to_h(*arg0) [<binary>] | |
sort() [<binary>] | |
sort_by() [<binary>] | |
grep(arg0) [<binary>] | |
count(*arg0) [<binary>] | |
find(*arg0) [<binary>] | |
detect(*arg0) [<binary>] | |
find_index(*arg0) [<binary>] | |
find_all() [<binary>] | |
select() [<binary>] | |
reject() [<binary>] | |
collect() [<binary>] | |
map() [<binary>] | |
flat_map() [<binary>] | |
collect_concat() [<binary>] | |
inject(*arg0) [<binary>] | |
reduce(*arg0) [<binary>] | |
partition() [<binary>] | |
group_by() [<binary>] | |
first(*arg0) [<binary>] | |
all?() [<binary>] | |
any?() [<binary>] | |
one?() [<binary>] | |
none?() [<binary>] | |
min() [<binary>] | |
max() [<binary>] | |
minmax() [<binary>] | |
min_by() [<binary>] | |
max_by() [<binary>] | |
minmax_by() [<binary>] | |
member?(arg0) [<binary>] | |
include?(arg0) [<binary>] | |
each_with_index(*arg0) [<binary>] | |
reverse_each(*arg0) [<binary>] | |
each_entry(*arg0) [<binary>] | |
each_slice(arg0) [<binary>] | |
each_cons(arg0) [<binary>] | |
each_with_object(arg0) [<binary>] | |
zip(*arg0) [<binary>] | |
take(arg0) [<binary>] | |
take_while() [<binary>] | |
drop(arg0) [<binary>] | |
drop_while() [<binary>] | |
cycle(*arg0) [<binary>] | |
chunk(*arg0) [<binary>] | |
slice_before(*arg0) [<binary>] | |
lazy() [<binary>] | |
module Comparable | |
ancestors: Comparable | |
constants: | |
class methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
between?(arg0, arg1) [<binary>] | |
class Encoding < Object | |
ancestors: Encoding, Object, Kernel, BasicObject | |
constants: | |
CompatibilityError | |
UndefinedConversionError | |
InvalidByteSequenceError | |
ConverterNotFoundError | |
Converter | |
ASCII_8BIT | |
UTF_8 | |
US_ASCII | |
Big5 | |
BIG5 | |
Big5_HKSCS | |
BIG5_HKSCS | |
Big5_UAO | |
BIG5_UAO | |
CP949 | |
Emacs_Mule | |
EMACS_MULE | |
EUC_JP | |
EUC_KR | |
EUC_TW | |
GB2312 | |
GB18030 | |
GBK | |
ISO_8859_1 | |
ISO_8859_2 | |
ISO_8859_3 | |
ISO_8859_4 | |
ISO_8859_5 | |
ISO_8859_6 | |
ISO_8859_7 | |
ISO_8859_8 | |
ISO_8859_9 | |
ISO_8859_10 | |
ISO_8859_11 | |
ISO_8859_13 | |
ISO_8859_14 | |
ISO_8859_15 | |
ISO_8859_16 | |
KOI8_R | |
KOI8_U | |
Shift_JIS | |
SHIFT_JIS | |
UTF_16BE | |
UTF_16LE | |
UTF_32BE | |
UTF_32LE | |
Windows_31J | |
WINDOWS_31J | |
Windows_1251 | |
WINDOWS_1251 | |
BINARY | |
IBM437 | |
CP437 | |
IBM737 | |
CP737 | |
IBM775 | |
CP775 | |
CP850 | |
IBM850 | |
IBM852 | |
CP852 | |
IBM855 | |
CP855 | |
IBM857 | |
CP857 | |
IBM860 | |
CP860 | |
IBM861 | |
CP861 | |
IBM862 | |
CP862 | |
IBM863 | |
CP863 | |
IBM864 | |
CP864 | |
IBM865 | |
CP865 | |
IBM866 | |
CP866 | |
IBM869 | |
CP869 | |
Windows_1258 | |
WINDOWS_1258 | |
CP1258 | |
GB1988 | |
MacCentEuro | |
MACCENTEURO | |
MacCroatian | |
MACCROATIAN | |
MacCyrillic | |
MACCYRILLIC | |
MacGreek | |
MACGREEK | |
MacIceland | |
MACICELAND | |
MacRoman | |
MACROMAN | |
MacRomania | |
MACROMANIA | |
MacThai | |
MACTHAI | |
MacTurkish | |
MACTURKISH | |
MacUkraine | |
MACUKRAINE | |
CP950 | |
Big5_HKSCS_2008 | |
BIG5_HKSCS_2008 | |
CP951 | |
Stateless_ISO_2022_JP | |
STATELESS_ISO_2022_JP | |
EucJP | |
EUCJP | |
EucJP_ms | |
EUCJP_MS | |
EUC_JP_MS | |
CP51932 | |
EUC_JIS_2004 | |
EUC_JISX0213 | |
EucKR | |
EUCKR | |
EucTW | |
EUCTW | |
EUC_CN | |
EucCN | |
EUCCN | |
GB12345 | |
CP936 | |
ISO_2022_JP | |
ISO2022_JP | |
ISO_2022_JP_2 | |
ISO2022_JP2 | |
CP50220 | |
CP50221 | |
ISO8859_1 | |
Windows_1252 | |
WINDOWS_1252 | |
CP1252 | |
ISO8859_2 | |
Windows_1250 | |
WINDOWS_1250 | |
CP1250 | |
ISO8859_3 | |
ISO8859_4 | |
ISO8859_5 | |
ISO8859_6 | |
Windows_1256 | |
WINDOWS_1256 | |
CP1256 | |
ISO8859_7 | |
Windows_1253 | |
WINDOWS_1253 | |
CP1253 | |
ISO8859_8 | |
Windows_1255 | |
WINDOWS_1255 | |
CP1255 | |
ISO8859_9 | |
Windows_1254 | |
WINDOWS_1254 | |
CP1254 | |
ISO8859_10 | |
ISO8859_11 | |
TIS_620 | |
Windows_874 | |
WINDOWS_874 | |
CP874 | |
ISO8859_13 | |
Windows_1257 | |
WINDOWS_1257 | |
CP1257 | |
ISO8859_14 | |
ISO8859_15 | |
ISO8859_16 | |
CP878 | |
MacJapanese | |
MACJAPANESE | |
MacJapan | |
MACJAPAN | |
ASCII | |
ANSI_X3_4_1968 | |
UTF_7 | |
CP65000 | |
CP65001 | |
UTF8_MAC | |
UTF_8_MAC | |
UTF_8_HFS | |
UTF_16 | |
UTF_32 | |
UCS_2BE | |
UCS_4BE | |
UCS_4LE | |
CP932 | |
CsWindows31J | |
CSWINDOWS31J | |
SJIS | |
PCK | |
CP1251 | |
UTF8_DoCoMo | |
UTF8_DOCOMO | |
SJIS_DoCoMo | |
SJIS_DOCOMO | |
UTF8_KDDI | |
SJIS_KDDI | |
ISO_2022_JP_KDDI | |
Stateless_ISO_2022_JP_KDDI | |
STATELESS_ISO_2022_JP_KDDI | |
UTF8_SoftBank | |
UTF8_SOFTBANK | |
SJIS_SoftBank | |
SJIS_SOFTBANK | |
class methods: | |
list() [<binary>] | |
name_list() [<binary>] | |
aliases() [<binary>] | |
find(arg0) [<binary>] | |
compatible?(arg0, arg1) [<binary>] | |
_load(arg0) [<binary>] | |
default_external() [<binary>] | |
default_external=(arg0) [<binary>] | |
default_internal() [<binary>] | |
default_internal=(arg0) [<binary>] | |
locale_charmap() [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s() [<binary>] | |
inspect() [<binary>] | |
name() [<binary>] | |
names() [<binary>] | |
dummy?() [<binary>] | |
ascii_compatible?() [<binary>] | |
replicate(arg0) [<binary>] | |
_dump(*arg0) [<binary>] | |
class FalseClass < Object | |
ancestors: FalseClass, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s() [<binary>] | |
inspect() [<binary>] | |
&(arg0) [<binary>] | |
|(arg0) [<binary>] | |
^(arg0) [<binary>] | |
class TrueClass < Object | |
ancestors: TrueClass, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s() [<binary>] | |
inspect() [<binary>] | |
&(arg0) [<binary>] | |
|(arg0) [<binary>] | |
^(arg0) [<binary>] | |
class Data < Object | |
ancestors: Data, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class NilClass < Object | |
ancestors: NilClass, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_i() [<binary>] | |
to_f() [<binary>] | |
to_s() [<binary>] | |
to_a() [<binary>] | |
to_h() [<binary>] | |
inspect() [<binary>] | |
&(arg0) [<binary>] | |
|(arg0) [<binary>] | |
^(arg0) [<binary>] | |
nil?() [<binary>] | |
to_r() [<binary>] | |
rationalize(*arg0) [<binary>] | |
to_c() [<binary>] | |
module Kernel | |
ancestors: Kernel | |
constants: | |
RUBYGEMS_ACTIVATION_MONITOR | |
class methods: | |
sprintf(*arg0) [<binary>] | |
format(*arg0) [<binary>] | |
Integer(*arg0) [<binary>] | |
Float(arg0) [<binary>] | |
String(arg0) [<binary>] | |
Array(arg0) [<binary>] | |
Hash(arg0) [<binary>] | |
warn(*arg0) [<binary>] | |
raise(*arg0) [<binary>] | |
fail(*arg0) [<binary>] | |
global_variables() [<binary>] | |
__method__() [<binary>] | |
__callee__() [<binary>] | |
__dir__() [<binary>] | |
eval(*arg0) [<binary>] | |
local_variables() [<binary>] | |
iterator?() [<binary>] | |
block_given?() [<binary>] | |
catch(*arg0) [<binary>] | |
throw(*arg0) [<binary>] | |
loop() [<binary>] | |
trace_var(*arg0) [<binary>] | |
untrace_var(*arg0) [<binary>] | |
at_exit() [<binary>] | |
syscall(*arg0) [<binary>] | |
open(*arg0) [<binary>] | |
printf(*arg0) [<binary>] | |
print(*arg0) [<binary>] | |
putc(arg0) [<binary>] | |
puts(*arg0) [<binary>] | |
gets(*arg0) [<binary>] | |
readline(*arg0) [<binary>] | |
select(*arg0) [<binary>] | |
readlines(*arg0) [<binary>] | |
`(arg0) [<binary>] | |
p(*arg0) [<binary>] | |
test(*arg0) [<binary>] | |
srand(*arg0) [<binary>] | |
rand(*arg0) [<binary>] | |
trap(*arg0) [<binary>] | |
exec(*arg0) [<binary>] | |
fork() [<binary>] | |
exit!(*arg0) [<binary>] | |
system(*arg0) [<binary>] | |
spawn(*arg0) [<binary>] | |
sleep(*arg0) [<binary>] | |
exit(*arg0) [<binary>] | |
abort(*arg0) [<binary>] | |
load(*arg0) [<binary>] | |
require(arg0) [<binary>] | |
require_relative(arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
proc() [<binary>] | |
lambda() [<binary>] | |
binding() [<binary>] | |
caller(*arg0) [<binary>] | |
caller_locations(*arg0) [<binary>] | |
Rational(*arg0) [<binary>] | |
Complex(*arg0) [<binary>] | |
set_trace_func(arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
nil?() [<binary>] | |
===(arg0) [<binary>] | |
=~(arg0) [<binary>] | |
!~(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
<=>(arg0) [<binary>] | |
class() [<binary>] | |
singleton_class() [<binary>] | |
clone() [<binary>] | |
dup() [<binary>] | |
taint() [<binary>] | |
tainted?() [<binary>] | |
untaint() [<binary>] | |
untrust() [<binary>] | |
untrusted?() [<binary>] | |
trust() [<binary>] | |
freeze() [<binary>] | |
frozen?() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
methods(*arg0) [<binary>] | |
singleton_methods(*arg0) [<binary>] | |
protected_methods(*arg0) [<binary>] | |
private_methods(*arg0) [<binary>] | |
public_methods(*arg0) [<binary>] | |
instance_variables() [<binary>] | |
instance_variable_get(arg0) [<binary>] | |
instance_variable_set(arg0, arg1) [<binary>] | |
instance_variable_defined?(arg0) [<binary>] | |
remove_instance_variable(arg0) [<binary>] | |
instance_of?(arg0) [<binary>] | |
kind_of?(arg0) [<binary>] | |
is_a?(arg0) [<binary>] | |
tap() [<binary>] | |
send(*arg0) [<binary>] | |
public_send(*arg0) [<binary>] | |
respond_to?(*arg0) [<binary>] | |
extend(*arg0) [<binary>] | |
display(*arg0) [<binary>] | |
method(arg0) [<binary>] | |
public_method(arg0) [<binary>] | |
singleton_method(arg0) [<binary>] | |
define_singleton_method(*arg0) [<binary>] | |
object_id() [<binary>] | |
to_enum(*arg0) [<binary>] | |
enum_for(*arg0) [<binary>] | |
class Class < Module | |
ancestors: Class, Module, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
nesting() [<binary>] | |
constants(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
class Module < Object | |
ancestors: Module, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
nesting() [<binary>] | |
constants(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
class Object < BasicObject | |
ancestors: Object, Kernel, BasicObject | |
constants: | |
Object | |
Module | |
Class | |
BasicObject | |
Kernel | |
NilClass | |
NIL | |
Data | |
TrueClass | |
TRUE | |
FalseClass | |
FALSE | |
Encoding | |
Comparable | |
Enumerable | |
String | |
Symbol | |
Exception | |
SystemExit | |
fatal | |
SignalException | |
Interrupt | |
StandardError | |
TypeError | |
ArgumentError | |
IndexError | |
KeyError | |
RangeError | |
ScriptError | |
SyntaxError | |
LoadError | |
NotImplementedError | |
NameError | |
NoMethodError | |
RuntimeError | |
SecurityError | |
NoMemoryError | |
EncodingError | |
SystemCallError | |
Errno | |
ZeroDivisionError | |
FloatDomainError | |
Numeric | |
Integer | |
Fixnum | |
Float | |
Bignum | |
Array | |
Hash | |
ENV | |
Struct | |
RegexpError | |
Regexp | |
MatchData | |
Marshal | |
Range | |
IOError | |
EOFError | |
IO | |
STDIN | |
STDOUT | |
STDERR | |
ARGF | |
FileTest | |
File | |
Dir | |
Time | |
Random | |
Signal | |
Process | |
Proc | |
LocalJumpError | |
SystemStackError | |
Method | |
UnboundMethod | |
Binding | |
Math | |
GC | |
ObjectSpace | |
Enumerator | |
StopIteration | |
RubyVM | |
Thread | |
TOPLEVEL_BINDING | |
ThreadGroup | |
Mutex | |
ThreadError | |
Fiber | |
FiberError | |
Rational | |
Complex | |
RUBY_VERSION | |
RUBY_RELEASE_DATE | |
RUBY_PLATFORM | |
RUBY_PATCHLEVEL | |
RUBY_REVISION | |
RUBY_DESCRIPTION | |
RUBY_COPYRIGHT | |
RUBY_ENGINE | |
TracePoint | |
ARGV | |
Gem | |
RbConfig | |
Config | |
CROSS_COMPILING | |
ConditionVariable | |
Queue | |
SizedQueue | |
MonitorMixin | |
Monitor | |
ARG_TEMPLATE | |
Alpha | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class BasicObject | |
ancestors: BasicObject | |
constants: | |
BasicObject | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
equal?(arg0) [<binary>] | |
!() [<binary>] | |
!=(arg0) [<binary>] | |
instance_eval(*arg0) [<binary>] | |
instance_exec(*arg0) [<binary>] | |
__send__(*arg0) [<binary>] | |
__id__() [<binary>] | |
class Gem::Specification < Gem::BasicSpecification | |
ancestors: Gem::Specification, Gem::BasicSpecification, Object, Kernel, BasicObject | |
constants: | |
NONEXISTENT_SPECIFICATION_VERSION | |
CURRENT_SPECIFICATION_VERSION | |
SPECIFICATION_VERSION_HISTORY | |
MARSHAL_FIELDS | |
TODAY | |
LOAD_CACHE | |
Dupable | |
DateLike | |
DateTimeFormat | |
class methods: | |
_all() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:703] | |
_clear_load_cache() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:718] | |
each_gemspec(dirs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:722] | |
each_stub(dirs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:730] | |
each_spec(dirs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:737] | |
stubs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:747] | |
_resort!(specs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:760] | |
load_defaults() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:771] | |
add_spec(spec) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:783] | |
add_specs(*specs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:805] | |
all() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:821] | |
all=(specs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:839] | |
all_names() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:846] | |
array_attributes() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:855] | |
attribute_names() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:864] | |
dirs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:871] | |
dirs=(dirs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:881] | |
each() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:893] | |
find_all_by_name(name, *requirements) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:904] | |
find_by_name(name, *requirements) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:916] | |
find_by_path(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:927] | |
find_inactive_by_path(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:937] | |
find_in_unresolved(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:947] | |
find_in_unresolved_tree(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:958] | |
from_yaml(input) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:984] | |
latest_specs(prerelease = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1008] | |
load(file) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1028] | |
non_nil_attributes() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1066] | |
normalize_yaml_input(input) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1073] | |
outdated() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1090] | |
outdated_and_latest_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1101] | |
remove_spec(spec) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1126] | |
required_attribute?(name) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1134] | |
required_attributes() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1141] | |
reset() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1149] | |
unresolved_deps() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1170] | |
_load(str) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1177] | |
to_a(*arg0) [<binary>] | |
entries(*arg0) [<binary>] | |
to_h(*arg0) [<binary>] | |
sort() [<binary>] | |
sort_by() [<binary>] | |
grep(arg0) [<binary>] | |
count(*arg0) [<binary>] | |
find(*arg0) [<binary>] | |
detect(*arg0) [<binary>] | |
find_index(*arg0) [<binary>] | |
find_all() [<binary>] | |
select() [<binary>] | |
reject() [<binary>] | |
collect() [<binary>] | |
map() [<binary>] | |
flat_map() [<binary>] | |
collect_concat() [<binary>] | |
inject(*arg0) [<binary>] | |
reduce(*arg0) [<binary>] | |
partition() [<binary>] | |
group_by() [<binary>] | |
first(*arg0) [<binary>] | |
all?() [<binary>] | |
any?() [<binary>] | |
one?() [<binary>] | |
none?() [<binary>] | |
min() [<binary>] | |
max() [<binary>] | |
minmax() [<binary>] | |
min_by() [<binary>] | |
max_by() [<binary>] | |
minmax_by() [<binary>] | |
member?(arg0) [<binary>] | |
include?(arg0) [<binary>] | |
each_with_index(*arg0) [<binary>] | |
reverse_each(*arg0) [<binary>] | |
each_entry(*arg0) [<binary>] | |
each_slice(arg0) [<binary>] | |
each_cons(arg0) [<binary>] | |
each_with_object(arg0) [<binary>] | |
zip(*arg0) [<binary>] | |
take(arg0) [<binary>] | |
take_while() [<binary>] | |
drop(arg0) [<binary>] | |
drop_while() [<binary>] | |
cycle(*arg0) [<binary>] | |
chunk(*arg0) [<binary>] | |
slice_before(*arg0) [<binary>] | |
lazy() [<binary>] | |
default_specifications_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:32] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:185] | |
name=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:185] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:198] | |
require_paths=(val) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:217] | |
rubygems_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:226] | |
rubygems_version=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:226] | |
summary() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:237] | |
author=(o) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:246] | |
authors=(value) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:257] | |
platform=(platform) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:284] | |
files() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:340] | |
bindir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:361] | |
bindir=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:361] | |
cert_chain() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:367] | |
cert_chain=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:367] | |
description() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:383] | |
email() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:393] | |
email=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:393] | |
homepage() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:402] | |
homepage=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:402] | |
post_install_message() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:411] | |
post_install_message=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:411] | |
required_ruby_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:416] | |
required_rubygems_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:421] | |
signing_key() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:426] | |
signing_key=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:426] | |
metadata() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:447] | |
metadata=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:447] | |
add_development_dependency(gem, *requirements) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:460] | |
add_runtime_dependency(gem, *requirements) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:471] | |
executables() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:490] | |
extensions() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:507] | |
extra_rdoc_files() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:523] | |
installed_by_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:532] | |
installed_by_version=(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:540] | |
license=(o) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:572] | |
licenses=(licenses) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:590] | |
rdoc_options() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:603] | |
required_ruby_version=(req) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:623] | |
required_rubygems_version=(req) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:630] | |
requirements() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:643] | |
test_files=(files) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:655] | |
activated() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:665] | |
activated=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:665] | |
activated?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:665] | |
autorequire() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:674] | |
autorequire=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:674] | |
default_executable=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:681] | |
original_platform=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:686] | |
rubyforge_project() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:694] | |
rubyforge_project=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:694] | |
specification_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:701] | |
specification_version=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:701] | |
<=>(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1228] | |
==(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1232] | |
_dump(limit) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1245] | |
activate() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1275] | |
activate_dependencies() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1299] | |
add_bindir(executables) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1330] | |
add_dependency(gem, *requirements) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:471] | |
add_self_to_load_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1369] | |
author() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1389] | |
authors() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1398] | |
bin_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1408] | |
bin_file(name) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1415] | |
build_args() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1422] | |
build_extensions() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1437] | |
build_info_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1469] | |
build_info_file() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1477] | |
cache_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1485] | |
cache_file() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1492] | |
conflicts() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1499] | |
date() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1515] | |
date=(date) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1535] | |
default_executable() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1566] | |
default_value(name) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1580] | |
dependencies() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1590] | |
dependent_gems() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1600] | |
dependent_specs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1619] | |
description=(str) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1626] | |
development_dependencies() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1633] | |
doc_dir(type = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1645] | |
encode_with(coder) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1655] | |
eql?(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1676] | |
executable() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1683] | |
executable=(o) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1690] | |
executables=(value) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1698] | |
extensions=(extensions) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1707] | |
extra_rdoc_files=(files) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1716] | |
file_name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1726] | |
files=(files) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1733] | |
for_cache() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1751] | |
full_name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1765] | |
gem_build_complete_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1773] | |
gem_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1780] | |
has_rdoc() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1789] | |
has_rdoc=(ignored) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1798] | |
has_rdoc?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1789] | |
has_unit_tests?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1807] | |
has_test_suite?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1807] | |
hash() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1815] | |
init_with(coder) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1819] | |
inspect() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1890] | |
lib_dirs_glob() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1902] | |
lib_files() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1915] | |
license() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1926] | |
licenses() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1935] | |
loaded_from=(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1939] | |
mark_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1954] | |
matches_for_glob(glob) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1961] | |
method_missing(sym, *a, &b) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1971] | |
missing_extensions?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1984] | |
normalize() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:1999] | |
name_tuple() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2016] | |
original_name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2024] | |
original_platform() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2035] | |
platform() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2042] | |
pretty_print(q) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2046] | |
raise_if_conflicts() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2100] | |
rdoc_options=(options) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2112] | |
require_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2120] | |
require_path=(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2127] | |
requirements=(req) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2135] | |
ri_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2147] | |
runtime_dependencies() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2180] | |
satisfies_requirement?(dependency) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2196] | |
sort_obj() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2204] | |
source() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2211] | |
spec_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2219] | |
spec_file() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2227] | |
spec_name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2236] | |
summary=(str) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2243] | |
test_file() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2251] | |
test_file=(file) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2258] | |
test_files() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2266] | |
to_ruby() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2286] | |
to_ruby_for_cache() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2379] | |
to_s() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2383] | |
to_spec() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2390] | |
to_yaml(opts = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2394] | |
traverse(trail = <..>, &block) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2427] | |
validate(packaging = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2445] | |
validate_dependencies() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2637] | |
validate_permissions() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2704] | |
version=(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2724] | |
stubbed?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2732] | |
yaml_initialize(tag, vals) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2736] | |
reset_nil_attributes_to_default() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2754] | |
warning(statement) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb:2773] | |
class Gem::StringSource < Object | |
ancestors: Gem::StringSource, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
read(count = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/util/stringio.rb:23] | |
readpartial(count = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/util/stringio.rb:23] | |
class Gem::StringSink < Object | |
ancestors: Gem::StringSink, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
string() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/util/stringio.rb:6] | |
write(s) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/util/stringio.rb:8] | |
set_encoding(enc) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/util/stringio.rb:13] | |
class Gem::StubSpecification::StubLine < Object | |
ancestors: Gem::StubSpecification::StubLine, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
parts() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:18] | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:24] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:28] | |
platform() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:32] | |
require_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:36] | |
module RbConfig | |
ancestors: RbConfig | |
constants: | |
TOPDIR | |
DESTDIR | |
CONFIG | |
MAKEFILE_CONFIG | |
class methods: | |
expand(val, config = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/x86_64-linux/rbconfig.rb:237] | |
ruby() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/x86_64-linux/rbconfig.rb:260] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class Gem::StubSpecification < Gem::BasicSpecification | |
ancestors: Gem::StubSpecification, Gem::BasicSpecification, Object, Kernel, BasicObject | |
constants: | |
PREFIX | |
OPEN_MODE | |
StubLine | |
class methods: | |
default_specifications_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:32] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
activated?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:51] | |
build_extensions() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:56] | |
extensions() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:94] | |
find_full_gem_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:107] | |
full_require_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:117] | |
missing_extensions?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:123] | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:133] | |
platform() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:140] | |
require_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:147] | |
to_spec() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:156] | |
valid?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:171] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:178] | |
stubbed?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/stub_specification.rb:185] | |
class Gem::Requirement::BadRequirementError < ArgumentError | |
ancestors: Gem::Requirement::BadRequirementError, ArgumentError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::Requirement < Object | |
ancestors: Gem::Requirement, Object, Kernel, BasicObject | |
constants: | |
OPS | |
PATTERN_RAW | |
PATTERN | |
DefaultRequirement | |
BadRequirementError | |
class methods: | |
create(input) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:51] | |
default() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:69] | |
parse(obj) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:85] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
requirements() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:103] | |
concat(new) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:126] | |
for_lockfile() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:138] | |
none?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:153] | |
exact?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:164] | |
as_list() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:169] | |
hash() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:173] | |
marshal_dump() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:177] | |
marshal_load(array) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:183] | |
yaml_initialize(tag, vals) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:189] | |
init_with(coder) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:198] | |
to_yaml_properties() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:202] | |
encode_with(coder) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:206] | |
prerelease?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:214] | |
pretty_print(q) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:218] | |
satisfied_by?(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:227] | |
===(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:227] | |
=~(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:227] | |
specific?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:240] | |
to_s() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:246] | |
==(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/requirement.rb:250] | |
module Gem | |
ancestors: Gem | |
constants: | |
VERSION | |
GEM_PRELUDE_SUCKAGE | |
RubyGemsVersion | |
RbConfigPriorities | |
ConfigMap | |
RubyGemsPackageVersion | |
DEFAULT_HOST | |
Deprecate | |
LoadError | |
ConflictError | |
ErrorReason | |
PlatformMismatch | |
SourceFetchProblem | |
RUBYGEMS_DIR | |
WIN_PATTERNS | |
GEM_DEP_FILES | |
REPOSITORY_SUBDIRECTORIES | |
REPOSITORY_DEFAULT_GEM_SUBDIRECTORIES | |
LOADED_SPECS_MUTEX | |
MARSHAL_SPEC_DIR | |
ConfigFile | |
Dependency | |
DependencyList | |
DependencyResolver | |
Installer | |
PathSupport | |
RequestSet | |
Resolver | |
Source | |
SourceList | |
SpecFetcher | |
Version | |
Requirement | |
Platform | |
BasicSpecification | |
StubSpecification | |
StringSink | |
StringSource | |
Specification | |
Exception | |
CommandLineError | |
DependencyError | |
DependencyRemovalException | |
DependencyResolutionError | |
GemNotInHomeException | |
DocumentError | |
EndOfYAMLException | |
FilePermissionError | |
FormatException | |
GemNotFoundException | |
SpecificGemNotFoundException | |
ImpossibleDependenciesError | |
InstallError | |
InvalidSpecificationException | |
OperationNotSupportedError | |
RemoteError | |
RemoteInstallationCancelled | |
RemoteInstallationSkipped | |
RemoteSourceException | |
RubyVersionMismatch | |
VerificationError | |
SystemExitException | |
UnsatisfiableDependencyError | |
UnsatisfiableDepedencyError | |
class methods: | |
default_sources() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:13] | |
default_spec_cache_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:21] | |
default_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:29] | |
default_ext_dir_for(base_dir) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:61] | |
default_rubygems_dirs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:68] | |
user_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:75] | |
path_separator() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:84] | |
default_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:91] | |
default_exec_format() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:102] | |
default_bindir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:116] | |
ruby_engine() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:127] | |
default_key_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:138] | |
default_cert_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:145] | |
default_gems_use_full_paths?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:152] | |
install_extension_in_lib() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:159] | |
vendor_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/defaults.rb:166] | |
try_activate(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:180] | |
needs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:204] | |
finish_resolve(request_set = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:212] | |
bin_path(name, exec_name = <..>, *requirements) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:226] | |
binary_mode() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:255] | |
bindir(install_dir = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:262] | |
clear_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:273] | |
config_file() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:283] | |
configuration() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:290] | |
configuration=(config) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:298] | |
datadir(gem_name) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:306] | |
deflate(data) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:317] | |
paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:325] | |
paths=(env) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:333] | |
dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:344] | |
path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:348] | |
spec_cache_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:352] | |
ensure_gem_subdirectories(dir = <..>, mode = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:365] | |
ensure_default_gem_subdirectories(dir = <..>, mode = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:378] | |
ensure_subdirectories(dir, mode, subdirs) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:382] | |
extension_api_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:405] | |
find_files(glob, check_load_path = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:425] | |
find_files_from_load_path(glob) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:441] | |
find_latest_files(glob, check_load_path = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:459] | |
gunzip(data) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:520] | |
gzip(data) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:528] | |
inflate(data) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:536] | |
install(name, version = <..>, *options) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:549] | |
host() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:560] | |
host=(host) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:567] | |
load_path_insert_index() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:576] | |
load_yaml() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:587] | |
location_of_caller() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:636] | |
marshal_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:647] | |
platforms=(platforms) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:654] | |
platforms() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:661] | |
post_build(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:676] | |
post_install(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:684] | |
done_installing(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:693] | |
post_reset(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:701] | |
post_uninstall(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:710] | |
pre_install(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:719] | |
pre_reset(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:727] | |
pre_uninstall(&hook) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:736] | |
prefix() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:745] | |
refresh() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:758] | |
read_binary(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:765] | |
ruby() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:779] | |
ruby_api_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:793] | |
latest_spec_for(name) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:800] | |
latest_rubygems_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:813] | |
latest_version_for(name) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:821] | |
ruby_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:829] | |
rubygems_version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:845] | |
sources() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:854] | |
sources=(new_sources) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:865] | |
suffix_pattern() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:876] | |
suffixes() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:883] | |
time(msg, width = <..>, display = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:898] | |
ui() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:913] | |
use_paths(home, *paths) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:923] | |
user_home() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:932] | |
win_platform?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:939] | |
load_plugin_files(plugins) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:951] | |
load_plugins() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:972] | |
load_env_plugins() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:984] | |
use_gemdeps(path = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1019] | |
detect_gemdeps(path = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1019] | |
loaded_specs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1077] | |
register_default_spec(spec) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1091] | |
find_unresolved_default_spec(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1112] | |
remove_unresolved_default_spec(spec) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1124] | |
clear_default_specs() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1133] | |
post_build_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1141] | |
post_install_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1147] | |
done_installing_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1153] | |
post_reset_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1158] | |
post_uninstall_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1164] | |
pre_install_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1169] | |
pre_reset_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1174] | |
pre_uninstall_hooks() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems.rb:1180] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class TracePoint < Object | |
ancestors: TracePoint, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
new(*arg0) [<binary>] | |
trace(*arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
enable() [<binary>] | |
disable() [<binary>] | |
enabled?() [<binary>] | |
inspect() [<binary>] | |
event() [<binary>] | |
lineno() [<binary>] | |
path() [<binary>] | |
method_id() [<binary>] | |
defined_class() [<binary>] | |
binding() [<binary>] | |
self() [<binary>] | |
return_value() [<binary>] | |
raised_exception() [<binary>] | |
class Complex::compatible < Object | |
ancestors: Complex::compatible, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Complex < Numeric | |
ancestors: Complex, Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
compatible | |
I | |
class methods: | |
rectangular(*arg0) [<binary>] | |
rect(*arg0) [<binary>] | |
polar(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
real() [<binary>] | |
imaginary() [<binary>] | |
imag() [<binary>] | |
-@() [<binary>] | |
+(arg0) [<binary>] | |
-(arg0) [<binary>] | |
*(arg0) [<binary>] | |
/(arg0) [<binary>] | |
quo(arg0) [<binary>] | |
fdiv(arg0) [<binary>] | |
**(arg0) [<binary>] | |
==(arg0) [<binary>] | |
coerce(arg0) [<binary>] | |
abs() [<binary>] | |
magnitude() [<binary>] | |
abs2() [<binary>] | |
arg() [<binary>] | |
angle() [<binary>] | |
phase() [<binary>] | |
rectangular() [<binary>] | |
rect() [<binary>] | |
polar() [<binary>] | |
conjugate() [<binary>] | |
conj() [<binary>] | |
real?() [<binary>] | |
numerator() [<binary>] | |
denominator() [<binary>] | |
hash() [<binary>] | |
eql?(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
to_i() [<binary>] | |
to_f() [<binary>] | |
to_r() [<binary>] | |
rationalize(*arg0) [<binary>] | |
to_c() [<binary>] | |
class Rational::compatible < Object | |
ancestors: Rational::compatible, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Rational < Numeric | |
ancestors: Rational, Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
compatible | |
class methods: | |
superclass() [<binary>] | |
instance methods: | |
numerator() [<binary>] | |
denominator() [<binary>] | |
+(arg0) [<binary>] | |
-(arg0) [<binary>] | |
*(arg0) [<binary>] | |
/(arg0) [<binary>] | |
quo(arg0) [<binary>] | |
fdiv(arg0) [<binary>] | |
**(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
==(arg0) [<binary>] | |
coerce(arg0) [<binary>] | |
floor(*arg0) [<binary>] | |
ceil(*arg0) [<binary>] | |
truncate(*arg0) [<binary>] | |
round(*arg0) [<binary>] | |
to_i() [<binary>] | |
to_f() [<binary>] | |
to_r() [<binary>] | |
rationalize(*arg0) [<binary>] | |
hash() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
class FiberError < StandardError | |
ancestors: FiberError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Fiber < Object | |
ancestors: Fiber, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
yield(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
resume(*arg0) [<binary>] | |
class ThreadError < StandardError | |
ancestors: ThreadError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Mutex < Object | |
ancestors: Mutex, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
locked?() [<binary>] | |
try_lock() [<binary>] | |
lock() [<binary>] | |
unlock() [<binary>] | |
sleep(*arg0) [<binary>] | |
synchronize() [<binary>] | |
owned?() [<binary>] | |
class ThreadGroup < Object | |
ancestors: ThreadGroup, Object, Kernel, BasicObject | |
constants: | |
Default | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
list() [<binary>] | |
enclose() [<binary>] | |
enclosed?() [<binary>] | |
add(arg0) [<binary>] | |
class RubyVM::InstructionSequence < Object | |
ancestors: RubyVM::InstructionSequence, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
compile(*arg0) [<binary>] | |
new(*arg0) [<binary>] | |
compile_file(*arg0) [<binary>] | |
compile_option() [<binary>] | |
compile_option=(arg0) [<binary>] | |
disasm(arg0) [<binary>] | |
disassemble(arg0) [<binary>] | |
of(arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
inspect() [<binary>] | |
disasm() [<binary>] | |
disassemble() [<binary>] | |
to_a() [<binary>] | |
eval() [<binary>] | |
path() [<binary>] | |
absolute_path() [<binary>] | |
label() [<binary>] | |
base_label() [<binary>] | |
first_lineno() [<binary>] | |
class Thread::Backtrace::Location < Object | |
ancestors: Thread::Backtrace::Location, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
lineno() [<binary>] | |
label() [<binary>] | |
base_label() [<binary>] | |
path() [<binary>] | |
absolute_path() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
class Thread::Backtrace < Object | |
ancestors: Thread::Backtrace, Object, Kernel, BasicObject | |
constants: | |
Location | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Thread < Object | |
ancestors: Thread, Object, Kernel, BasicObject | |
constants: | |
Backtrace | |
MUTEX_FOR_THREAD_EXCLUSIVE | |
ConditionVariable | |
Queue | |
SizedQueue | |
class methods: | |
new(*arg0) [<binary>] | |
start(*arg0) [<binary>] | |
fork(*arg0) [<binary>] | |
main() [<binary>] | |
current() [<binary>] | |
stop() [<binary>] | |
kill(arg0) [<binary>] | |
exit() [<binary>] | |
pass() [<binary>] | |
list() [<binary>] | |
abort_on_exception() [<binary>] | |
abort_on_exception=(arg0) [<binary>] | |
handle_interrupt(arg0) [<binary>] | |
pending_interrupt?(*arg0) [<binary>] | |
exclusive() [<internal:prelude>:10] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
pending_interrupt?(*arg0) [<binary>] | |
raise(*arg0) [<binary>] | |
join(*arg0) [<binary>] | |
value() [<binary>] | |
kill() [<binary>] | |
terminate() [<binary>] | |
exit() [<binary>] | |
run() [<binary>] | |
wakeup() [<binary>] | |
[](arg0) [<binary>] | |
[]=(arg0, arg1) [<binary>] | |
key?(arg0) [<binary>] | |
keys() [<binary>] | |
priority() [<binary>] | |
priority=(arg0) [<binary>] | |
status() [<binary>] | |
thread_variable_get(arg0) [<binary>] | |
thread_variable_set(arg0, arg1) [<binary>] | |
thread_variables() [<binary>] | |
thread_variable?(arg0) [<binary>] | |
alive?() [<binary>] | |
stop?() [<binary>] | |
abort_on_exception() [<binary>] | |
abort_on_exception=(arg0) [<binary>] | |
safe_level() [<binary>] | |
group() [<binary>] | |
backtrace(*arg0) [<binary>] | |
backtrace_locations(*arg0) [<binary>] | |
inspect() [<binary>] | |
set_trace_func(arg0) [<binary>] | |
add_trace_func(arg0) [<binary>] | |
class RubyVM::Env < Object | |
ancestors: RubyVM::Env, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class RubyVM < Object | |
ancestors: RubyVM, Object, Kernel, BasicObject | |
constants: | |
Env | |
OPTS | |
INSTRUCTION_NAMES | |
DEFAULT_PARAMS | |
InstructionSequence | |
class methods: | |
stat(*arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Enumerator::Yielder < Object | |
ancestors: Enumerator::Yielder, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
yield(*arg0) [<binary>] | |
<<(*arg0) [<binary>] | |
class Enumerator::Generator < Object | |
ancestors: Enumerator::Generator, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
each(*arg0) [<binary>] | |
class StopIteration < IndexError | |
ancestors: StopIteration, IndexError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
result() [<binary>] | |
class Enumerator::Lazy < Enumerator | |
ancestors: Enumerator::Lazy, Enumerator, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_enum(*arg0) [<binary>] | |
enum_for(*arg0) [<binary>] | |
map() [<binary>] | |
collect() [<binary>] | |
flat_map() [<binary>] | |
collect_concat() [<binary>] | |
select() [<binary>] | |
find_all() [<binary>] | |
reject() [<binary>] | |
grep(arg0) [<binary>] | |
zip(*arg0) [<binary>] | |
take(arg0) [<binary>] | |
take_while() [<binary>] | |
drop(arg0) [<binary>] | |
drop_while() [<binary>] | |
lazy() [<binary>] | |
chunk(*arg0) [<binary>] | |
slice_before(*arg0) [<binary>] | |
force(*arg0) [<binary>] | |
class Enumerator < Object | |
ancestors: Enumerator, Enumerable, Object, Kernel, BasicObject | |
constants: | |
Lazy | |
Generator | |
Yielder | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
each(*arg0) [<binary>] | |
each_with_index() [<binary>] | |
each_with_object(arg0) [<binary>] | |
with_index(*arg0) [<binary>] | |
with_object(arg0) [<binary>] | |
next_values() [<binary>] | |
peek_values() [<binary>] | |
next() [<binary>] | |
peek() [<binary>] | |
feed(arg0) [<binary>] | |
rewind() [<binary>] | |
inspect() [<binary>] | |
size() [<binary>] | |
class ObjectSpace::WeakMap < Object | |
ancestors: ObjectSpace::WeakMap, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
[]=(arg0, arg1) [<binary>] | |
[](arg0) [<binary>] | |
include?(arg0) [<binary>] | |
member?(arg0) [<binary>] | |
key?(arg0) [<binary>] | |
inspect() [<binary>] | |
each() [<binary>] | |
each_pair() [<binary>] | |
each_key() [<binary>] | |
each_value() [<binary>] | |
keys() [<binary>] | |
values() [<binary>] | |
size() [<binary>] | |
length() [<binary>] | |
module ObjectSpace | |
ancestors: ObjectSpace | |
constants: | |
WeakMap | |
class methods: | |
each_object(*arg0) [<binary>] | |
garbage_collect(*arg0) [<binary>] | |
define_finalizer(*arg0) [<binary>] | |
undefine_finalizer(arg0) [<binary>] | |
_id2ref(arg0) [<binary>] | |
count_objects(*arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
module GC::Profiler | |
ancestors: GC::Profiler | |
constants: | |
class methods: | |
enabled?() [<binary>] | |
enable() [<binary>] | |
raw_data() [<binary>] | |
disable() [<binary>] | |
clear() [<binary>] | |
result() [<binary>] | |
report(*arg0) [<binary>] | |
total_time() [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
module GC | |
ancestors: GC | |
constants: | |
INTERNAL_CONSTANTS | |
Profiler | |
OPTS | |
class methods: | |
start(*arg0) [<binary>] | |
enable() [<binary>] | |
disable() [<binary>] | |
stress() [<binary>] | |
stress=(arg0) [<binary>] | |
count() [<binary>] | |
stat(*arg0) [<binary>] | |
latest_gc_info(*arg0) [<binary>] | |
verify_internal_consistency() [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
garbage_collect(*arg0) [<binary>] | |
class Math::DomainError < StandardError | |
ancestors: Math::DomainError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
module Math | |
ancestors: Math | |
constants: | |
DomainError | |
PI | |
E | |
class methods: | |
atan2(arg0, arg1) [<binary>] | |
cos(arg0) [<binary>] | |
sin(arg0) [<binary>] | |
tan(arg0) [<binary>] | |
acos(arg0) [<binary>] | |
asin(arg0) [<binary>] | |
atan(arg0) [<binary>] | |
cosh(arg0) [<binary>] | |
sinh(arg0) [<binary>] | |
tanh(arg0) [<binary>] | |
acosh(arg0) [<binary>] | |
asinh(arg0) [<binary>] | |
atanh(arg0) [<binary>] | |
exp(arg0) [<binary>] | |
log(*arg0) [<binary>] | |
log2(arg0) [<binary>] | |
log10(arg0) [<binary>] | |
sqrt(arg0) [<binary>] | |
cbrt(arg0) [<binary>] | |
frexp(arg0) [<binary>] | |
ldexp(arg0, arg1) [<binary>] | |
hypot(arg0, arg1) [<binary>] | |
erf(arg0) [<binary>] | |
erfc(arg0) [<binary>] | |
gamma(arg0) [<binary>] | |
lgamma(arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class Binding < Object | |
ancestors: Binding, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
clone() [<binary>] | |
dup() [<binary>] | |
eval(*arg0) [<binary>] | |
local_variable_get(arg0) [<binary>] | |
local_variable_set(arg0, arg1) [<binary>] | |
local_variable_defined?(arg0) [<binary>] | |
class UnboundMethod < Object | |
ancestors: UnboundMethod, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
clone() [<binary>] | |
arity() [<binary>] | |
inspect() [<binary>] | |
to_s() [<binary>] | |
name() [<binary>] | |
original_name() [<binary>] | |
owner() [<binary>] | |
bind(arg0) [<binary>] | |
source_location() [<binary>] | |
parameters() [<binary>] | |
class Method < Object | |
ancestors: Method, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
clone() [<binary>] | |
call(*arg0) [<binary>] | |
[](*arg0) [<binary>] | |
arity() [<binary>] | |
inspect() [<binary>] | |
to_s() [<binary>] | |
to_proc() [<binary>] | |
receiver() [<binary>] | |
name() [<binary>] | |
original_name() [<binary>] | |
owner() [<binary>] | |
unbind() [<binary>] | |
source_location() [<binary>] | |
parameters() [<binary>] | |
class SystemStackError < Exception | |
ancestors: SystemStackError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class LocalJumpError < StandardError | |
ancestors: LocalJumpError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
exit_value() [<binary>] | |
reason() [<binary>] | |
class Proc < Object | |
ancestors: Proc, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
new(*arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
call(*arg0) [<binary>] | |
[](*arg0) [<binary>] | |
===(*arg0) [<binary>] | |
yield(*arg0) [<binary>] | |
to_proc() [<binary>] | |
arity() [<binary>] | |
clone() [<binary>] | |
dup() [<binary>] | |
hash() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
lambda?() [<binary>] | |
binding() [<binary>] | |
curry(*arg0) [<binary>] | |
source_location() [<binary>] | |
parameters() [<binary>] | |
module Process::Sys | |
ancestors: Process::Sys | |
constants: | |
class methods: | |
getuid() [<binary>] | |
geteuid() [<binary>] | |
getgid() [<binary>] | |
getegid() [<binary>] | |
setuid(arg0) [<binary>] | |
setgid(arg0) [<binary>] | |
setruid() [<binary>] | |
setrgid() [<binary>] | |
seteuid(arg0) [<binary>] | |
setegid(arg0) [<binary>] | |
setreuid(arg0, arg1) [<binary>] | |
setregid(arg0, arg1) [<binary>] | |
setresuid(arg0, arg1, arg2) [<binary>] | |
setresgid(arg0, arg1, arg2) [<binary>] | |
issetugid() [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
module Process::GID | |
ancestors: Process::GID | |
constants: | |
class methods: | |
rid() [<binary>] | |
eid() [<binary>] | |
change_privilege(arg0) [<binary>] | |
grant_privilege(arg0) [<binary>] | |
eid=(arg0) [<binary>] | |
re_exchange() [<binary>] | |
re_exchangeable?() [<binary>] | |
sid_available?() [<binary>] | |
switch() [<binary>] | |
from_name(arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
module Process::UID | |
ancestors: Process::UID | |
constants: | |
class methods: | |
rid() [<binary>] | |
eid() [<binary>] | |
change_privilege(arg0) [<binary>] | |
grant_privilege(arg0) [<binary>] | |
eid=(arg0) [<binary>] | |
re_exchange() [<binary>] | |
re_exchangeable?() [<binary>] | |
sid_available?() [<binary>] | |
switch() [<binary>] | |
from_name(arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class Process::Tms < Struct | |
ancestors: Process::Tms, Struct, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
new(*arg0) [<binary>] | |
[](*arg0) [<binary>] | |
members() [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
utime() [<binary>] | |
utime=(arg0) [<binary>] | |
stime() [<binary>] | |
stime=(arg0) [<binary>] | |
cutime() [<binary>] | |
cutime=(arg0) [<binary>] | |
cstime() [<binary>] | |
cstime=(arg0) [<binary>] | |
class Process::Status < Object | |
ancestors: Process::Status, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
&(arg0) [<binary>] | |
>>(arg0) [<binary>] | |
to_i() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
pid() [<binary>] | |
stopped?() [<binary>] | |
stopsig() [<binary>] | |
signaled?() [<binary>] | |
termsig() [<binary>] | |
exited?() [<binary>] | |
exitstatus() [<binary>] | |
success?() [<binary>] | |
coredump?() [<binary>] | |
module Process | |
ancestors: Process | |
constants: | |
WNOHANG | |
WUNTRACED | |
Status | |
PRIO_PROCESS | |
PRIO_PGRP | |
PRIO_USER | |
RLIM_SAVED_MAX | |
RLIM_INFINITY | |
RLIM_SAVED_CUR | |
RLIMIT_AS | |
RLIMIT_CORE | |
RLIMIT_CPU | |
RLIMIT_DATA | |
RLIMIT_FSIZE | |
RLIMIT_MEMLOCK | |
RLIMIT_MSGQUEUE | |
RLIMIT_NICE | |
RLIMIT_NOFILE | |
RLIMIT_NPROC | |
RLIMIT_RSS | |
RLIMIT_RTPRIO | |
RLIMIT_RTTIME | |
RLIMIT_SIGPENDING | |
RLIMIT_STACK | |
CLOCK_REALTIME | |
CLOCK_MONOTONIC | |
CLOCK_PROCESS_CPUTIME_ID | |
CLOCK_THREAD_CPUTIME_ID | |
CLOCK_REALTIME_COARSE | |
CLOCK_REALTIME_ALARM | |
CLOCK_MONOTONIC_RAW | |
CLOCK_MONOTONIC_COARSE | |
CLOCK_BOOTTIME | |
CLOCK_BOOTTIME_ALARM | |
Tms | |
UID | |
GID | |
Sys | |
class methods: | |
exec(*arg0) [<binary>] | |
fork() [<binary>] | |
spawn(*arg0) [<binary>] | |
exit!(*arg0) [<binary>] | |
exit(*arg0) [<binary>] | |
abort(*arg0) [<binary>] | |
kill(*arg0) [<binary>] | |
wait(*arg0) [<binary>] | |
wait2(*arg0) [<binary>] | |
waitpid(*arg0) [<binary>] | |
waitpid2(*arg0) [<binary>] | |
waitall() [<binary>] | |
detach(arg0) [<binary>] | |
pid() [<binary>] | |
ppid() [<binary>] | |
getpgrp() [<binary>] | |
setpgrp() [<binary>] | |
getpgid(arg0) [<binary>] | |
setpgid(arg0, arg1) [<binary>] | |
getsid(*arg0) [<binary>] | |
setsid() [<binary>] | |
getpriority(arg0, arg1) [<binary>] | |
setpriority(arg0, arg1, arg2) [<binary>] | |
getrlimit(arg0) [<binary>] | |
setrlimit(*arg0) [<binary>] | |
uid() [<binary>] | |
uid=(arg0) [<binary>] | |
gid() [<binary>] | |
gid=(arg0) [<binary>] | |
euid() [<binary>] | |
euid=(arg0) [<binary>] | |
egid() [<binary>] | |
egid=(arg0) [<binary>] | |
initgroups(arg0, arg1) [<binary>] | |
groups() [<binary>] | |
groups=(arg0) [<binary>] | |
maxgroups() [<binary>] | |
maxgroups=(arg0) [<binary>] | |
daemon(*arg0) [<binary>] | |
times() [<binary>] | |
clock_gettime(*arg0) [<binary>] | |
clock_getres(*arg0) [<binary>] | |
argv0() [<binary>] | |
setproctitle(arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
module Signal | |
ancestors: Signal | |
constants: | |
class methods: | |
trap(*arg0) [<binary>] | |
list() [<binary>] | |
signame(arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class Random < Object | |
ancestors: Random, Object, Kernel, BasicObject | |
constants: | |
DEFAULT | |
class methods: | |
srand(*arg0) [<binary>] | |
rand(*arg0) [<binary>] | |
new_seed() [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
rand(*arg0) [<binary>] | |
bytes(arg0) [<binary>] | |
seed() [<binary>] | |
==(arg0) [<binary>] | |
class Time < Object | |
ancestors: Time, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
now() [<binary>] | |
at(*arg0) [<binary>] | |
utc(*arg0) [<binary>] | |
gm(*arg0) [<binary>] | |
local(*arg0) [<binary>] | |
mktime(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_i() [<binary>] | |
to_f() [<binary>] | |
to_r() [<binary>] | |
<=>(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
localtime(*arg0) [<binary>] | |
gmtime() [<binary>] | |
utc() [<binary>] | |
getlocal(*arg0) [<binary>] | |
getgm() [<binary>] | |
getutc() [<binary>] | |
ctime() [<binary>] | |
asctime() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
to_a() [<binary>] | |
+(arg0) [<binary>] | |
-(arg0) [<binary>] | |
succ() [<binary>] | |
round(*arg0) [<binary>] | |
sec() [<binary>] | |
min() [<binary>] | |
hour() [<binary>] | |
mday() [<binary>] | |
day() [<binary>] | |
mon() [<binary>] | |
month() [<binary>] | |
year() [<binary>] | |
wday() [<binary>] | |
yday() [<binary>] | |
isdst() [<binary>] | |
dst?() [<binary>] | |
zone() [<binary>] | |
gmtoff() [<binary>] | |
gmt_offset() [<binary>] | |
utc_offset() [<binary>] | |
utc?() [<binary>] | |
gmt?() [<binary>] | |
sunday?() [<binary>] | |
monday?() [<binary>] | |
tuesday?() [<binary>] | |
wednesday?() [<binary>] | |
thursday?() [<binary>] | |
friday?() [<binary>] | |
saturday?() [<binary>] | |
tv_sec() [<binary>] | |
tv_usec() [<binary>] | |
usec() [<binary>] | |
tv_nsec() [<binary>] | |
nsec() [<binary>] | |
subsec() [<binary>] | |
strftime(arg0) [<binary>] | |
class Dir < Object | |
ancestors: Dir, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
open(*arg0) [<binary>] | |
foreach(*arg0) [<binary>] | |
entries(*arg0) [<binary>] | |
chdir(*arg0) [<binary>] | |
getwd() [<binary>] | |
pwd() [<binary>] | |
chroot(arg0) [<binary>] | |
mkdir(*arg0) [<binary>] | |
rmdir(arg0) [<binary>] | |
delete(arg0) [<binary>] | |
unlink(arg0) [<binary>] | |
home(*arg0) [<binary>] | |
glob(*arg0) [<binary>] | |
[](*arg0) [<binary>] | |
exist?(arg0) [<binary>] | |
exists?(arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
path() [<binary>] | |
to_path() [<binary>] | |
inspect() [<binary>] | |
read() [<binary>] | |
each() [<binary>] | |
rewind() [<binary>] | |
tell() [<binary>] | |
seek(arg0) [<binary>] | |
pos() [<binary>] | |
pos=(arg0) [<binary>] | |
close() [<binary>] | |
class File::Stat < Object | |
ancestors: File::Stat, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
<=>(arg0) [<binary>] | |
dev() [<binary>] | |
dev_major() [<binary>] | |
dev_minor() [<binary>] | |
ino() [<binary>] | |
mode() [<binary>] | |
nlink() [<binary>] | |
uid() [<binary>] | |
gid() [<binary>] | |
rdev() [<binary>] | |
rdev_major() [<binary>] | |
rdev_minor() [<binary>] | |
size() [<binary>] | |
blksize() [<binary>] | |
blocks() [<binary>] | |
atime() [<binary>] | |
mtime() [<binary>] | |
ctime() [<binary>] | |
inspect() [<binary>] | |
ftype() [<binary>] | |
directory?() [<binary>] | |
readable?() [<binary>] | |
readable_real?() [<binary>] | |
world_readable?() [<binary>] | |
writable?() [<binary>] | |
writable_real?() [<binary>] | |
world_writable?() [<binary>] | |
executable?() [<binary>] | |
executable_real?() [<binary>] | |
file?() [<binary>] | |
zero?() [<binary>] | |
size?() [<binary>] | |
owned?() [<binary>] | |
grpowned?() [<binary>] | |
pipe?() [<binary>] | |
symlink?() [<binary>] | |
socket?() [<binary>] | |
blockdev?() [<binary>] | |
chardev?() [<binary>] | |
setuid?() [<binary>] | |
setgid?() [<binary>] | |
sticky?() [<binary>] | |
module File::Constants | |
ancestors: File::Constants | |
constants: | |
RDONLY | |
WRONLY | |
RDWR | |
APPEND | |
CREAT | |
EXCL | |
NONBLOCK | |
TRUNC | |
NOCTTY | |
BINARY | |
SYNC | |
DSYNC | |
RSYNC | |
NOFOLLOW | |
NOATIME | |
DIRECT | |
LOCK_SH | |
LOCK_EX | |
LOCK_UN | |
LOCK_NB | |
NULL | |
FNM_NOESCAPE | |
FNM_PATHNAME | |
FNM_DOTMATCH | |
FNM_CASEFOLD | |
FNM_EXTGLOB | |
FNM_SYSCASE | |
class methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class File < IO | |
ancestors: File, IO, File::Constants, Enumerable, Object, Kernel, BasicObject | |
constants: | |
Separator | |
SEPARATOR | |
ALT_SEPARATOR | |
PATH_SEPARATOR | |
Constants | |
Stat | |
class methods: | |
directory?(arg0) [<binary>] | |
exist?(arg0) [<binary>] | |
exists?(arg0) [<binary>] | |
readable?(arg0) [<binary>] | |
readable_real?(arg0) [<binary>] | |
world_readable?(arg0) [<binary>] | |
writable?(arg0) [<binary>] | |
writable_real?(arg0) [<binary>] | |
world_writable?(arg0) [<binary>] | |
executable?(arg0) [<binary>] | |
executable_real?(arg0) [<binary>] | |
file?(arg0) [<binary>] | |
zero?(arg0) [<binary>] | |
size?(arg0) [<binary>] | |
size(arg0) [<binary>] | |
owned?(arg0) [<binary>] | |
grpowned?(arg0) [<binary>] | |
pipe?(arg0) [<binary>] | |
symlink?(arg0) [<binary>] | |
socket?(arg0) [<binary>] | |
blockdev?(arg0) [<binary>] | |
chardev?(arg0) [<binary>] | |
setuid?(arg0) [<binary>] | |
setgid?(arg0) [<binary>] | |
sticky?(arg0) [<binary>] | |
identical?(arg0, arg1) [<binary>] | |
stat(arg0) [<binary>] | |
lstat(arg0) [<binary>] | |
ftype(arg0) [<binary>] | |
atime(arg0) [<binary>] | |
mtime(arg0) [<binary>] | |
ctime(arg0) [<binary>] | |
utime(*arg0) [<binary>] | |
chmod(*arg0) [<binary>] | |
chown(*arg0) [<binary>] | |
lchmod() [<binary>] | |
lchown(*arg0) [<binary>] | |
link(arg0, arg1) [<binary>] | |
symlink(arg0, arg1) [<binary>] | |
readlink(arg0) [<binary>] | |
unlink(*arg0) [<binary>] | |
delete(*arg0) [<binary>] | |
rename(arg0, arg1) [<binary>] | |
umask(*arg0) [<binary>] | |
truncate(arg0, arg1) [<binary>] | |
expand_path(*arg0) [<binary>] | |
absolute_path(*arg0) [<binary>] | |
realpath(*arg0) [<binary>] | |
realdirpath(*arg0) [<binary>] | |
basename(*arg0) [<binary>] | |
dirname(arg0) [<binary>] | |
extname(arg0) [<binary>] | |
path(arg0) [<binary>] | |
split(arg0) [<binary>] | |
join(*arg0) [<binary>] | |
fnmatch(*arg0) [<binary>] | |
fnmatch?(*arg0) [<binary>] | |
new(*arg0) [<binary>] | |
open(*arg0) [<binary>] | |
sysopen(*arg0) [<binary>] | |
for_fd(*arg0) [<binary>] | |
popen(*arg0) [<binary>] | |
foreach(*arg0) [<binary>] | |
readlines(*arg0) [<binary>] | |
read(*arg0) [<binary>] | |
binread(*arg0) [<binary>] | |
write(*arg0) [<binary>] | |
binwrite(*arg0) [<binary>] | |
select(*arg0) [<binary>] | |
pipe(*arg0) [<binary>] | |
try_convert(arg0) [<binary>] | |
copy_stream(*arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
lstat() [<binary>] | |
atime() [<binary>] | |
mtime() [<binary>] | |
ctime() [<binary>] | |
size() [<binary>] | |
chmod(arg0) [<binary>] | |
chown(arg0, arg1) [<binary>] | |
truncate(arg0) [<binary>] | |
flock(arg0) [<binary>] | |
path() [<binary>] | |
to_path() [<binary>] | |
module FileTest | |
ancestors: FileTest | |
constants: | |
class methods: | |
directory?(arg0) [<binary>] | |
exist?(arg0) [<binary>] | |
exists?(arg0) [<binary>] | |
readable?(arg0) [<binary>] | |
readable_real?(arg0) [<binary>] | |
world_readable?(arg0) [<binary>] | |
writable?(arg0) [<binary>] | |
writable_real?(arg0) [<binary>] | |
world_writable?(arg0) [<binary>] | |
executable?(arg0) [<binary>] | |
executable_real?(arg0) [<binary>] | |
file?(arg0) [<binary>] | |
zero?(arg0) [<binary>] | |
size?(arg0) [<binary>] | |
size(arg0) [<binary>] | |
owned?(arg0) [<binary>] | |
grpowned?(arg0) [<binary>] | |
pipe?(arg0) [<binary>] | |
symlink?(arg0) [<binary>] | |
socket?(arg0) [<binary>] | |
blockdev?(arg0) [<binary>] | |
chardev?(arg0) [<binary>] | |
setuid?(arg0) [<binary>] | |
setgid?(arg0) [<binary>] | |
sticky?(arg0) [<binary>] | |
identical?(arg0, arg1) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class ARGF.class < Object | |
ancestors: ARGF.class, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s() [<binary>] | |
inspect() [<binary>] | |
argv() [<binary>] | |
fileno() [<binary>] | |
to_i() [<binary>] | |
to_io() [<binary>] | |
to_write_io() [<binary>] | |
each(*arg0) [<binary>] | |
each_line(*arg0) [<binary>] | |
each_byte() [<binary>] | |
each_char() [<binary>] | |
each_codepoint() [<binary>] | |
lines(*arg0) [<binary>] | |
bytes() [<binary>] | |
chars() [<binary>] | |
codepoints() [<binary>] | |
read(*arg0) [<binary>] | |
readpartial(*arg0) [<binary>] | |
read_nonblock(*arg0) [<binary>] | |
readlines(*arg0) [<binary>] | |
to_a(*arg0) [<binary>] | |
gets(*arg0) [<binary>] | |
readline(*arg0) [<binary>] | |
getc() [<binary>] | |
getbyte() [<binary>] | |
readchar() [<binary>] | |
readbyte() [<binary>] | |
tell() [<binary>] | |
seek(*arg0) [<binary>] | |
rewind() [<binary>] | |
pos() [<binary>] | |
pos=(arg0) [<binary>] | |
eof() [<binary>] | |
eof?() [<binary>] | |
binmode() [<binary>] | |
binmode?() [<binary>] | |
write(arg0) [<binary>] | |
print(*arg0) [<binary>] | |
putc(arg0) [<binary>] | |
puts(*arg0) [<binary>] | |
printf(*arg0) [<binary>] | |
filename() [<binary>] | |
path() [<binary>] | |
file() [<binary>] | |
skip() [<binary>] | |
close() [<binary>] | |
closed?() [<binary>] | |
lineno() [<binary>] | |
lineno=(arg0) [<binary>] | |
inplace_mode() [<binary>] | |
inplace_mode=(arg0) [<binary>] | |
external_encoding() [<binary>] | |
internal_encoding() [<binary>] | |
set_encoding(*arg0) [<binary>] | |
class IO::EINPROGRESSWaitWritable < Errno::EINPROGRESS | |
ancestors: IO::EINPROGRESSWaitWritable, IO::WaitWritable, Errno::EINPROGRESS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class IO::EINPROGRESSWaitReadable < Errno::EINPROGRESS | |
ancestors: IO::EINPROGRESSWaitReadable, IO::WaitReadable, Errno::EINPROGRESS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class IO::EAGAINWaitWritable < Errno::EAGAIN | |
ancestors: IO::EAGAINWaitWritable, IO::WaitWritable, Errno::EAGAIN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class IO::EAGAINWaitReadable < Errno::EAGAIN | |
ancestors: IO::EAGAINWaitReadable, IO::WaitReadable, Errno::EAGAIN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
module IO::WaitWritable | |
ancestors: IO::WaitWritable | |
constants: | |
class methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
module IO::WaitReadable | |
ancestors: IO::WaitReadable | |
constants: | |
class methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class IO < Object | |
ancestors: IO, File::Constants, Enumerable, Object, Kernel, BasicObject | |
constants: | |
WaitReadable | |
WaitWritable | |
EAGAINWaitReadable | |
EAGAINWaitWritable | |
EWOULDBLOCKWaitReadable | |
EWOULDBLOCKWaitWritable | |
EINPROGRESSWaitReadable | |
EINPROGRESSWaitWritable | |
SEEK_SET | |
SEEK_CUR | |
SEEK_END | |
SEEK_DATA | |
SEEK_HOLE | |
class methods: | |
new(*arg0) [<binary>] | |
open(*arg0) [<binary>] | |
sysopen(*arg0) [<binary>] | |
for_fd(*arg0) [<binary>] | |
popen(*arg0) [<binary>] | |
foreach(*arg0) [<binary>] | |
readlines(*arg0) [<binary>] | |
read(*arg0) [<binary>] | |
binread(*arg0) [<binary>] | |
write(*arg0) [<binary>] | |
binwrite(*arg0) [<binary>] | |
select(*arg0) [<binary>] | |
pipe(*arg0) [<binary>] | |
try_convert(arg0) [<binary>] | |
copy_stream(*arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
reopen(*arg0) [<binary>] | |
print(*arg0) [<binary>] | |
putc(arg0) [<binary>] | |
puts(*arg0) [<binary>] | |
printf(*arg0) [<binary>] | |
each(*arg0) [<binary>] | |
each_line(*arg0) [<binary>] | |
each_byte() [<binary>] | |
each_char() [<binary>] | |
each_codepoint() [<binary>] | |
lines(*arg0) [<binary>] | |
bytes() [<binary>] | |
chars() [<binary>] | |
codepoints() [<binary>] | |
syswrite(arg0) [<binary>] | |
sysread(*arg0) [<binary>] | |
fileno() [<binary>] | |
to_i() [<binary>] | |
to_io() [<binary>] | |
fsync() [<binary>] | |
fdatasync() [<binary>] | |
sync() [<binary>] | |
sync=(arg0) [<binary>] | |
lineno() [<binary>] | |
lineno=(arg0) [<binary>] | |
readlines(*arg0) [<binary>] | |
read_nonblock(*arg0) [<binary>] | |
write_nonblock(*arg0) [<binary>] | |
readpartial(*arg0) [<binary>] | |
read(*arg0) [<binary>] | |
write(arg0) [<binary>] | |
gets(*arg0) [<binary>] | |
readline(*arg0) [<binary>] | |
getc() [<binary>] | |
getbyte() [<binary>] | |
readchar() [<binary>] | |
readbyte() [<binary>] | |
ungetbyte(arg0) [<binary>] | |
ungetc(arg0) [<binary>] | |
<<(arg0) [<binary>] | |
flush() [<binary>] | |
tell() [<binary>] | |
seek(*arg0) [<binary>] | |
rewind() [<binary>] | |
pos() [<binary>] | |
pos=(arg0) [<binary>] | |
eof() [<binary>] | |
eof?() [<binary>] | |
close_on_exec?() [<binary>] | |
close_on_exec=(arg0) [<binary>] | |
close() [<binary>] | |
closed?() [<binary>] | |
close_read() [<binary>] | |
close_write() [<binary>] | |
isatty() [<binary>] | |
tty?() [<binary>] | |
binmode() [<binary>] | |
binmode?() [<binary>] | |
sysseek(*arg0) [<binary>] | |
advise(*arg0) [<binary>] | |
ioctl(*arg0) [<binary>] | |
fcntl(*arg0) [<binary>] | |
pid() [<binary>] | |
inspect() [<binary>] | |
external_encoding() [<binary>] | |
internal_encoding() [<binary>] | |
set_encoding(*arg0) [<binary>] | |
autoclose?() [<binary>] | |
autoclose=(arg0) [<binary>] | |
stat() [<binary>] | |
class EOFError < IOError | |
ancestors: EOFError, IOError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class IOError < StandardError | |
ancestors: IOError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Range < Object | |
ancestors: Range, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
===(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
each() [<binary>] | |
step(*arg0) [<binary>] | |
bsearch() [<binary>] | |
begin() [<binary>] | |
end() [<binary>] | |
first(*arg0) [<binary>] | |
last(*arg0) [<binary>] | |
min() [<binary>] | |
max() [<binary>] | |
size() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
exclude_end?() [<binary>] | |
member?(arg0) [<binary>] | |
include?(arg0) [<binary>] | |
cover?(arg0) [<binary>] | |
module Marshal | |
ancestors: Marshal | |
constants: | |
MAJOR_VERSION | |
MINOR_VERSION | |
class methods: | |
dump(*arg0) [<binary>] | |
load(*arg0) [<binary>] | |
restore(*arg0) [<binary>] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class Encoding::Converter < Data | |
ancestors: Encoding::Converter, Data, Object, Kernel, BasicObject | |
constants: | |
INVALID_MASK | |
INVALID_REPLACE | |
UNDEF_MASK | |
UNDEF_REPLACE | |
UNDEF_HEX_CHARREF | |
PARTIAL_INPUT | |
AFTER_OUTPUT | |
UNIVERSAL_NEWLINE_DECORATOR | |
CRLF_NEWLINE_DECORATOR | |
CR_NEWLINE_DECORATOR | |
XML_TEXT_DECORATOR | |
XML_ATTR_CONTENT_DECORATOR | |
XML_ATTR_QUOTE_DECORATOR | |
class methods: | |
asciicompat_encoding(arg0) [<binary>] | |
search_convpath(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
inspect() [<binary>] | |
convpath() [<binary>] | |
source_encoding() [<binary>] | |
destination_encoding() [<binary>] | |
primitive_convert(*arg0) [<binary>] | |
convert(arg0) [<binary>] | |
finish() [<binary>] | |
primitive_errinfo() [<binary>] | |
insert_output(arg0) [<binary>] | |
putback(*arg0) [<binary>] | |
last_error() [<binary>] | |
replacement() [<binary>] | |
replacement=(arg0) [<binary>] | |
==(arg0) [<binary>] | |
class Encoding::ConverterNotFoundError < EncodingError | |
ancestors: Encoding::ConverterNotFoundError, EncodingError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Encoding::InvalidByteSequenceError < EncodingError | |
ancestors: Encoding::InvalidByteSequenceError, EncodingError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
source_encoding_name() [<binary>] | |
destination_encoding_name() [<binary>] | |
source_encoding() [<binary>] | |
destination_encoding() [<binary>] | |
error_bytes() [<binary>] | |
readagain_bytes() [<binary>] | |
incomplete_input?() [<binary>] | |
class Encoding::UndefinedConversionError < EncodingError | |
ancestors: Encoding::UndefinedConversionError, EncodingError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
source_encoding_name() [<binary>] | |
destination_encoding_name() [<binary>] | |
source_encoding() [<binary>] | |
destination_encoding() [<binary>] | |
error_char() [<binary>] | |
class MatchData < Object | |
ancestors: MatchData, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
regexp() [<binary>] | |
names() [<binary>] | |
size() [<binary>] | |
length() [<binary>] | |
offset(arg0) [<binary>] | |
begin(arg0) [<binary>] | |
end(arg0) [<binary>] | |
to_a() [<binary>] | |
[](*arg0) [<binary>] | |
captures() [<binary>] | |
values_at(*arg0) [<binary>] | |
pre_match() [<binary>] | |
post_match() [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
string() [<binary>] | |
hash() [<binary>] | |
eql?(arg0) [<binary>] | |
==(arg0) [<binary>] | |
class Regexp < Object | |
ancestors: Regexp, Object, Kernel, BasicObject | |
constants: | |
IGNORECASE | |
EXTENDED | |
MULTILINE | |
FIXEDENCODING | |
NOENCODING | |
class methods: | |
compile(*arg0) [<binary>] | |
quote(arg0) [<binary>] | |
escape(arg0) [<binary>] | |
union(*arg0) [<binary>] | |
last_match(*arg0) [<binary>] | |
try_convert(arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
hash() [<binary>] | |
eql?(arg0) [<binary>] | |
==(arg0) [<binary>] | |
=~(arg0) [<binary>] | |
===(arg0) [<binary>] | |
~() [<binary>] | |
match(*arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
source() [<binary>] | |
casefold?() [<binary>] | |
options() [<binary>] | |
encoding() [<binary>] | |
fixed_encoding?() [<binary>] | |
names() [<binary>] | |
named_captures() [<binary>] | |
class RegexpError < StandardError | |
ancestors: RegexpError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Struct < Object | |
ancestors: Struct, Enumerable, Object, Kernel, BasicObject | |
constants: | |
Tms | |
class methods: | |
new(*arg0) [<binary>] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
inspect() [<binary>] | |
to_s() [<binary>] | |
to_a() [<binary>] | |
to_h() [<binary>] | |
values() [<binary>] | |
size() [<binary>] | |
length() [<binary>] | |
each() [<binary>] | |
each_pair() [<binary>] | |
[](arg0) [<binary>] | |
[]=(arg0, arg1) [<binary>] | |
select(*arg0) [<binary>] | |
values_at(*arg0) [<binary>] | |
members() [<binary>] | |
class Hash < Object | |
ancestors: Hash, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
[](*arg0) [<binary>] | |
try_convert(arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
rehash() [<binary>] | |
to_hash() [<binary>] | |
to_h() [<binary>] | |
to_a() [<binary>] | |
inspect() [<binary>] | |
to_s() [<binary>] | |
==(arg0) [<binary>] | |
[](arg0) [<binary>] | |
hash() [<binary>] | |
eql?(arg0) [<binary>] | |
fetch(*arg0) [<binary>] | |
[]=(arg0, arg1) [<binary>] | |
store(arg0, arg1) [<binary>] | |
default(*arg0) [<binary>] | |
default=(arg0) [<binary>] | |
default_proc() [<binary>] | |
default_proc=(arg0) [<binary>] | |
key(arg0) [<binary>] | |
index(arg0) [<binary>] | |
size() [<binary>] | |
length() [<binary>] | |
empty?() [<binary>] | |
each_value() [<binary>] | |
each_key() [<binary>] | |
each_pair() [<binary>] | |
each() [<binary>] | |
keys() [<binary>] | |
values() [<binary>] | |
values_at(*arg0) [<binary>] | |
shift() [<binary>] | |
delete(arg0) [<binary>] | |
delete_if() [<binary>] | |
keep_if() [<binary>] | |
select() [<binary>] | |
select!() [<binary>] | |
reject() [<binary>] | |
reject!() [<binary>] | |
clear() [<binary>] | |
invert() [<binary>] | |
update(arg0) [<binary>] | |
replace(arg0) [<binary>] | |
merge!(arg0) [<binary>] | |
merge(arg0) [<binary>] | |
assoc(arg0) [<binary>] | |
rassoc(arg0) [<binary>] | |
flatten(*arg0) [<binary>] | |
include?(arg0) [<binary>] | |
member?(arg0) [<binary>] | |
has_key?(arg0) [<binary>] | |
has_value?(arg0) [<binary>] | |
key?(arg0) [<binary>] | |
value?(arg0) [<binary>] | |
compare_by_identity() [<binary>] | |
compare_by_identity?() [<binary>] | |
class Array < Object | |
ancestors: Array, Enumerable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
[](*arg0) [<binary>] | |
try_convert(arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
inspect() [<binary>] | |
to_s() [<binary>] | |
to_a() [<binary>] | |
to_h() [<binary>] | |
to_ary() [<binary>] | |
frozen?() [<binary>] | |
==(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
[](*arg0) [<binary>] | |
[]=(*arg0) [<binary>] | |
at(arg0) [<binary>] | |
fetch(*arg0) [<binary>] | |
first(*arg0) [<binary>] | |
last(*arg0) [<binary>] | |
concat(arg0) [<binary>] | |
<<(arg0) [<binary>] | |
push(*arg0) [<binary>] | |
pop(*arg0) [<binary>] | |
shift(*arg0) [<binary>] | |
unshift(*arg0) [<binary>] | |
insert(*arg0) [<binary>] | |
each() [<binary>] | |
each_index() [<binary>] | |
reverse_each() [<binary>] | |
length() [<binary>] | |
size() [<binary>] | |
empty?() [<binary>] | |
find_index(*arg0) [<binary>] | |
index(*arg0) [<binary>] | |
rindex(*arg0) [<binary>] | |
join(*arg0) [<binary>] | |
reverse() [<binary>] | |
reverse!() [<binary>] | |
rotate(*arg0) [<binary>] | |
rotate!(*arg0) [<binary>] | |
sort() [<binary>] | |
sort!() [<binary>] | |
sort_by!() [<binary>] | |
collect() [<binary>] | |
collect!() [<binary>] | |
map() [<binary>] | |
map!() [<binary>] | |
select() [<binary>] | |
select!() [<binary>] | |
keep_if() [<binary>] | |
values_at(*arg0) [<binary>] | |
delete(arg0) [<binary>] | |
delete_at(arg0) [<binary>] | |
delete_if() [<binary>] | |
reject() [<binary>] | |
reject!() [<binary>] | |
zip(*arg0) [<binary>] | |
transpose() [<binary>] | |
replace(arg0) [<binary>] | |
clear() [<binary>] | |
fill(*arg0) [<binary>] | |
include?(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
slice(*arg0) [<binary>] | |
slice!(*arg0) [<binary>] | |
assoc(arg0) [<binary>] | |
rassoc(arg0) [<binary>] | |
+(arg0) [<binary>] | |
*(arg0) [<binary>] | |
-(arg0) [<binary>] | |
&(arg0) [<binary>] | |
|(arg0) [<binary>] | |
uniq() [<binary>] | |
uniq!() [<binary>] | |
compact() [<binary>] | |
compact!() [<binary>] | |
flatten(*arg0) [<binary>] | |
flatten!(*arg0) [<binary>] | |
count(*arg0) [<binary>] | |
shuffle!(*arg0) [<binary>] | |
shuffle(*arg0) [<binary>] | |
sample(*arg0) [<binary>] | |
cycle(*arg0) [<binary>] | |
permutation(*arg0) [<binary>] | |
combination(arg0) [<binary>] | |
repeated_permutation(arg0) [<binary>] | |
repeated_combination(arg0) [<binary>] | |
product(*arg0) [<binary>] | |
take(arg0) [<binary>] | |
take_while() [<binary>] | |
drop(arg0) [<binary>] | |
drop_while() [<binary>] | |
bsearch() [<binary>] | |
pack(arg0) [<binary>] | |
class Errno::ERFKILL < SystemCallError | |
ancestors: Errno::ERFKILL, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EOWNERDEAD < SystemCallError | |
ancestors: Errno::EOWNERDEAD, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTRECOVERABLE < SystemCallError | |
ancestors: Errno::ENOTRECOVERABLE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOMEDIUM < SystemCallError | |
ancestors: Errno::ENOMEDIUM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOKEY < SystemCallError | |
ancestors: Errno::ENOKEY, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EMEDIUMTYPE < SystemCallError | |
ancestors: Errno::EMEDIUMTYPE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EKEYREVOKED < SystemCallError | |
ancestors: Errno::EKEYREVOKED, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EKEYREJECTED < SystemCallError | |
ancestors: Errno::EKEYREJECTED, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EKEYEXPIRED < SystemCallError | |
ancestors: Errno::EKEYEXPIRED, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECANCELED < SystemCallError | |
ancestors: Errno::ECANCELED, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EDQUOT < SystemCallError | |
ancestors: Errno::EDQUOT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EREMOTEIO < SystemCallError | |
ancestors: Errno::EREMOTEIO, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EISNAM < SystemCallError | |
ancestors: Errno::EISNAM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENAVAIL < SystemCallError | |
ancestors: Errno::ENAVAIL, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTNAM < SystemCallError | |
ancestors: Errno::ENOTNAM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EUCLEAN < SystemCallError | |
ancestors: Errno::EUCLEAN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESTALE < SystemCallError | |
ancestors: Errno::ESTALE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EINPROGRESS < SystemCallError | |
ancestors: Errno::EINPROGRESS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EALREADY < SystemCallError | |
ancestors: Errno::EALREADY, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EHOSTUNREACH < SystemCallError | |
ancestors: Errno::EHOSTUNREACH, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EHOSTDOWN < SystemCallError | |
ancestors: Errno::EHOSTDOWN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECONNREFUSED < SystemCallError | |
ancestors: Errno::ECONNREFUSED, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ETIMEDOUT < SystemCallError | |
ancestors: Errno::ETIMEDOUT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ETOOMANYREFS < SystemCallError | |
ancestors: Errno::ETOOMANYREFS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESHUTDOWN < SystemCallError | |
ancestors: Errno::ESHUTDOWN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTCONN < SystemCallError | |
ancestors: Errno::ENOTCONN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EISCONN < SystemCallError | |
ancestors: Errno::EISCONN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOBUFS < SystemCallError | |
ancestors: Errno::ENOBUFS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECONNRESET < SystemCallError | |
ancestors: Errno::ECONNRESET, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECONNABORTED < SystemCallError | |
ancestors: Errno::ECONNABORTED, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENETRESET < SystemCallError | |
ancestors: Errno::ENETRESET, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENETUNREACH < SystemCallError | |
ancestors: Errno::ENETUNREACH, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENETDOWN < SystemCallError | |
ancestors: Errno::ENETDOWN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EADDRNOTAVAIL < SystemCallError | |
ancestors: Errno::EADDRNOTAVAIL, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EADDRINUSE < SystemCallError | |
ancestors: Errno::EADDRINUSE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EAFNOSUPPORT < SystemCallError | |
ancestors: Errno::EAFNOSUPPORT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EPFNOSUPPORT < SystemCallError | |
ancestors: Errno::EPFNOSUPPORT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EOPNOTSUPP < SystemCallError | |
ancestors: Errno::EOPNOTSUPP, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESOCKTNOSUPPORT < SystemCallError | |
ancestors: Errno::ESOCKTNOSUPPORT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EPROTONOSUPPORT < SystemCallError | |
ancestors: Errno::EPROTONOSUPPORT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOPROTOOPT < SystemCallError | |
ancestors: Errno::ENOPROTOOPT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EPROTOTYPE < SystemCallError | |
ancestors: Errno::EPROTOTYPE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EMSGSIZE < SystemCallError | |
ancestors: Errno::EMSGSIZE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EDESTADDRREQ < SystemCallError | |
ancestors: Errno::EDESTADDRREQ, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTSOCK < SystemCallError | |
ancestors: Errno::ENOTSOCK, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EUSERS < SystemCallError | |
ancestors: Errno::EUSERS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESTRPIPE < SystemCallError | |
ancestors: Errno::ESTRPIPE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ERESTART < SystemCallError | |
ancestors: Errno::ERESTART, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EILSEQ < SystemCallError | |
ancestors: Errno::EILSEQ, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELIBEXEC < SystemCallError | |
ancestors: Errno::ELIBEXEC, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELIBMAX < SystemCallError | |
ancestors: Errno::ELIBMAX, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELIBSCN < SystemCallError | |
ancestors: Errno::ELIBSCN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELIBBAD < SystemCallError | |
ancestors: Errno::ELIBBAD, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELIBACC < SystemCallError | |
ancestors: Errno::ELIBACC, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EREMCHG < SystemCallError | |
ancestors: Errno::EREMCHG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADFD < SystemCallError | |
ancestors: Errno::EBADFD, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTUNIQ < SystemCallError | |
ancestors: Errno::ENOTUNIQ, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EOVERFLOW < SystemCallError | |
ancestors: Errno::EOVERFLOW, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADMSG < SystemCallError | |
ancestors: Errno::EBADMSG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EDOTDOT < SystemCallError | |
ancestors: Errno::EDOTDOT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EMULTIHOP < SystemCallError | |
ancestors: Errno::EMULTIHOP, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EPROTO < SystemCallError | |
ancestors: Errno::EPROTO, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECOMM < SystemCallError | |
ancestors: Errno::ECOMM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESRMNT < SystemCallError | |
ancestors: Errno::ESRMNT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EADV < SystemCallError | |
ancestors: Errno::EADV, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOLINK < SystemCallError | |
ancestors: Errno::ENOLINK, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EREMOTE < SystemCallError | |
ancestors: Errno::EREMOTE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOPKG < SystemCallError | |
ancestors: Errno::ENOPKG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENONET < SystemCallError | |
ancestors: Errno::ENONET, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOSR < SystemCallError | |
ancestors: Errno::ENOSR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ETIME < SystemCallError | |
ancestors: Errno::ETIME, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENODATA < SystemCallError | |
ancestors: Errno::ENODATA, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOSTR < SystemCallError | |
ancestors: Errno::ENOSTR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBFONT < SystemCallError | |
ancestors: Errno::EBFONT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADSLT < SystemCallError | |
ancestors: Errno::EBADSLT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADRQC < SystemCallError | |
ancestors: Errno::EBADRQC, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOANO < SystemCallError | |
ancestors: Errno::ENOANO, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EXFULL < SystemCallError | |
ancestors: Errno::EXFULL, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADR < SystemCallError | |
ancestors: Errno::EBADR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADE < SystemCallError | |
ancestors: Errno::EBADE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EL2HLT < SystemCallError | |
ancestors: Errno::EL2HLT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOCSI < SystemCallError | |
ancestors: Errno::ENOCSI, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EUNATCH < SystemCallError | |
ancestors: Errno::EUNATCH, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELNRNG < SystemCallError | |
ancestors: Errno::ELNRNG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EL3RST < SystemCallError | |
ancestors: Errno::EL3RST, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EL3HLT < SystemCallError | |
ancestors: Errno::EL3HLT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EL2NSYNC < SystemCallError | |
ancestors: Errno::EL2NSYNC, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECHRNG < SystemCallError | |
ancestors: Errno::ECHRNG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EIDRM < SystemCallError | |
ancestors: Errno::EIDRM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOMSG < SystemCallError | |
ancestors: Errno::ENOMSG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ELOOP < SystemCallError | |
ancestors: Errno::ELOOP, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTEMPTY < SystemCallError | |
ancestors: Errno::ENOTEMPTY, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOSYS < SystemCallError | |
ancestors: Errno::ENOSYS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOLCK < SystemCallError | |
ancestors: Errno::ENOLCK, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENAMETOOLONG < SystemCallError | |
ancestors: Errno::ENAMETOOLONG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EDEADLK < SystemCallError | |
ancestors: Errno::EDEADLK, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ERANGE < SystemCallError | |
ancestors: Errno::ERANGE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EDOM < SystemCallError | |
ancestors: Errno::EDOM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EPIPE < SystemCallError | |
ancestors: Errno::EPIPE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EMLINK < SystemCallError | |
ancestors: Errno::EMLINK, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EROFS < SystemCallError | |
ancestors: Errno::EROFS, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESPIPE < SystemCallError | |
ancestors: Errno::ESPIPE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOSPC < SystemCallError | |
ancestors: Errno::ENOSPC, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EFBIG < SystemCallError | |
ancestors: Errno::EFBIG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ETXTBSY < SystemCallError | |
ancestors: Errno::ETXTBSY, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTTY < SystemCallError | |
ancestors: Errno::ENOTTY, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EMFILE < SystemCallError | |
ancestors: Errno::EMFILE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENFILE < SystemCallError | |
ancestors: Errno::ENFILE, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EINVAL < SystemCallError | |
ancestors: Errno::EINVAL, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EISDIR < SystemCallError | |
ancestors: Errno::EISDIR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTDIR < SystemCallError | |
ancestors: Errno::ENOTDIR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENODEV < SystemCallError | |
ancestors: Errno::ENODEV, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EXDEV < SystemCallError | |
ancestors: Errno::EXDEV, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EEXIST < SystemCallError | |
ancestors: Errno::EEXIST, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBUSY < SystemCallError | |
ancestors: Errno::EBUSY, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOTBLK < SystemCallError | |
ancestors: Errno::ENOTBLK, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EFAULT < SystemCallError | |
ancestors: Errno::EFAULT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EACCES < SystemCallError | |
ancestors: Errno::EACCES, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOMEM < SystemCallError | |
ancestors: Errno::ENOMEM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EAGAIN < SystemCallError | |
ancestors: Errno::EAGAIN, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ECHILD < SystemCallError | |
ancestors: Errno::ECHILD, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EBADF < SystemCallError | |
ancestors: Errno::EBADF, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOEXEC < SystemCallError | |
ancestors: Errno::ENOEXEC, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::E2BIG < SystemCallError | |
ancestors: Errno::E2BIG, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENXIO < SystemCallError | |
ancestors: Errno::ENXIO, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EIO < SystemCallError | |
ancestors: Errno::EIO, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EINTR < SystemCallError | |
ancestors: Errno::EINTR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ESRCH < SystemCallError | |
ancestors: Errno::ESRCH, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::ENOENT < SystemCallError | |
ancestors: Errno::ENOENT, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::EPERM < SystemCallError | |
ancestors: Errno::EPERM, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Errno::NOERROR < SystemCallError | |
ancestors: Errno::NOERROR, SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
Errno | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Bignum < Integer | |
ancestors: Bignum, Integer, Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s(*arg0) [<binary>] | |
inspect(*arg0) [<binary>] | |
coerce(arg0) [<binary>] | |
-@() [<binary>] | |
+(arg0) [<binary>] | |
-(arg0) [<binary>] | |
*(arg0) [<binary>] | |
/(arg0) [<binary>] | |
%(arg0) [<binary>] | |
div(arg0) [<binary>] | |
divmod(arg0) [<binary>] | |
modulo(arg0) [<binary>] | |
remainder(arg0) [<binary>] | |
fdiv(arg0) [<binary>] | |
**(arg0) [<binary>] | |
&(arg0) [<binary>] | |
|(arg0) [<binary>] | |
^(arg0) [<binary>] | |
~() [<binary>] | |
<<(arg0) [<binary>] | |
>>(arg0) [<binary>] | |
[](arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
==(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
===(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
to_f() [<binary>] | |
abs() [<binary>] | |
magnitude() [<binary>] | |
size() [<binary>] | |
bit_length() [<binary>] | |
odd?() [<binary>] | |
even?() [<binary>] | |
class Float < Numeric | |
ancestors: Float, Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
ROUNDS | |
RADIX | |
MANT_DIG | |
DIG | |
MIN_EXP | |
MAX_EXP | |
MIN_10_EXP | |
MAX_10_EXP | |
MIN | |
MAX | |
EPSILON | |
INFINITY | |
NAN | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s() [<binary>] | |
inspect() [<binary>] | |
coerce(arg0) [<binary>] | |
-@() [<binary>] | |
+(arg0) [<binary>] | |
-(arg0) [<binary>] | |
*(arg0) [<binary>] | |
/(arg0) [<binary>] | |
quo(arg0) [<binary>] | |
fdiv(arg0) [<binary>] | |
%(arg0) [<binary>] | |
modulo(arg0) [<binary>] | |
divmod(arg0) [<binary>] | |
**(arg0) [<binary>] | |
==(arg0) [<binary>] | |
===(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
hash() [<binary>] | |
to_f() [<binary>] | |
abs() [<binary>] | |
magnitude() [<binary>] | |
zero?() [<binary>] | |
to_i() [<binary>] | |
to_int() [<binary>] | |
floor() [<binary>] | |
ceil() [<binary>] | |
round(*arg0) [<binary>] | |
truncate() [<binary>] | |
nan?() [<binary>] | |
infinite?() [<binary>] | |
finite?() [<binary>] | |
numerator() [<binary>] | |
denominator() [<binary>] | |
to_r() [<binary>] | |
rationalize(*arg0) [<binary>] | |
arg() [<binary>] | |
angle() [<binary>] | |
phase() [<binary>] | |
class Fixnum < Integer | |
ancestors: Fixnum, Integer, Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
to_s(*arg0) [<binary>] | |
inspect(*arg0) [<binary>] | |
-@() [<binary>] | |
+(arg0) [<binary>] | |
-(arg0) [<binary>] | |
*(arg0) [<binary>] | |
/(arg0) [<binary>] | |
div(arg0) [<binary>] | |
%(arg0) [<binary>] | |
modulo(arg0) [<binary>] | |
divmod(arg0) [<binary>] | |
fdiv(arg0) [<binary>] | |
**(arg0) [<binary>] | |
abs() [<binary>] | |
magnitude() [<binary>] | |
==(arg0) [<binary>] | |
===(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
~() [<binary>] | |
&(arg0) [<binary>] | |
|(arg0) [<binary>] | |
^(arg0) [<binary>] | |
[](arg0) [<binary>] | |
<<(arg0) [<binary>] | |
>>(arg0) [<binary>] | |
to_f() [<binary>] | |
size() [<binary>] | |
bit_length() [<binary>] | |
zero?() [<binary>] | |
odd?() [<binary>] | |
even?() [<binary>] | |
succ() [<binary>] | |
class Integer < Numeric | |
ancestors: Integer, Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
integer?() [<binary>] | |
odd?() [<binary>] | |
even?() [<binary>] | |
upto(arg0) [<binary>] | |
downto(arg0) [<binary>] | |
times() [<binary>] | |
succ() [<binary>] | |
next() [<binary>] | |
pred() [<binary>] | |
chr(*arg0) [<binary>] | |
ord() [<binary>] | |
to_i() [<binary>] | |
to_int() [<binary>] | |
floor() [<binary>] | |
ceil() [<binary>] | |
truncate() [<binary>] | |
round(*arg0) [<binary>] | |
gcd(arg0) [<binary>] | |
lcm(arg0) [<binary>] | |
gcdlcm(arg0) [<binary>] | |
numerator() [<binary>] | |
denominator() [<binary>] | |
to_r() [<binary>] | |
rationalize(*arg0) [<binary>] | |
class Numeric < Object | |
ancestors: Numeric, Comparable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
singleton_method_added(arg0) [<binary>] | |
coerce(arg0) [<binary>] | |
i() [<binary>] | |
+@() [<binary>] | |
-@() [<binary>] | |
<=>(arg0) [<binary>] | |
eql?(arg0) [<binary>] | |
fdiv(arg0) [<binary>] | |
div(arg0) [<binary>] | |
divmod(arg0) [<binary>] | |
%(arg0) [<binary>] | |
modulo(arg0) [<binary>] | |
remainder(arg0) [<binary>] | |
abs() [<binary>] | |
magnitude() [<binary>] | |
to_int() [<binary>] | |
real?() [<binary>] | |
integer?() [<binary>] | |
zero?() [<binary>] | |
nonzero?() [<binary>] | |
floor() [<binary>] | |
ceil() [<binary>] | |
round(*arg0) [<binary>] | |
truncate() [<binary>] | |
step(*arg0) [<binary>] | |
numerator() [<binary>] | |
denominator() [<binary>] | |
quo(arg0) [<binary>] | |
to_c() [<binary>] | |
real() [<binary>] | |
imaginary() [<binary>] | |
imag() [<binary>] | |
abs2() [<binary>] | |
arg() [<binary>] | |
angle() [<binary>] | |
phase() [<binary>] | |
rectangular() [<binary>] | |
rect() [<binary>] | |
polar() [<binary>] | |
conjugate() [<binary>] | |
conj() [<binary>] | |
class FloatDomainError < RangeError | |
ancestors: FloatDomainError, RangeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class ZeroDivisionError < StandardError | |
ancestors: ZeroDivisionError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
module Errno | |
ancestors: Errno | |
constants: | |
NOERROR | |
EPERM | |
ENOENT | |
ESRCH | |
EINTR | |
EIO | |
ENXIO | |
E2BIG | |
ENOEXEC | |
EBADF | |
ECHILD | |
EAGAIN | |
ENOMEM | |
EACCES | |
EFAULT | |
ENOTBLK | |
EBUSY | |
EEXIST | |
EXDEV | |
ENODEV | |
ENOTDIR | |
EISDIR | |
EINVAL | |
ENFILE | |
EMFILE | |
ENOTTY | |
ETXTBSY | |
EFBIG | |
ENOSPC | |
ESPIPE | |
EROFS | |
EMLINK | |
EPIPE | |
EDOM | |
ERANGE | |
EDEADLK | |
ENAMETOOLONG | |
ENOLCK | |
ENOSYS | |
ENOTEMPTY | |
ELOOP | |
EWOULDBLOCK | |
ENOMSG | |
EIDRM | |
ECHRNG | |
EL2NSYNC | |
EL3HLT | |
EL3RST | |
ELNRNG | |
EUNATCH | |
ENOCSI | |
EL2HLT | |
EBADE | |
EBADR | |
EXFULL | |
ENOANO | |
EBADRQC | |
EBADSLT | |
EDEADLOCK | |
EBFONT | |
ENOSTR | |
ENODATA | |
ETIME | |
ENOSR | |
ENONET | |
ENOPKG | |
EREMOTE | |
ENOLINK | |
EADV | |
ESRMNT | |
ECOMM | |
EPROTO | |
EMULTIHOP | |
EDOTDOT | |
EBADMSG | |
EOVERFLOW | |
ENOTUNIQ | |
EBADFD | |
EREMCHG | |
ELIBACC | |
ELIBBAD | |
ELIBSCN | |
ELIBMAX | |
ELIBEXEC | |
EILSEQ | |
ERESTART | |
ESTRPIPE | |
EUSERS | |
ENOTSOCK | |
EDESTADDRREQ | |
EMSGSIZE | |
EPROTOTYPE | |
ENOPROTOOPT | |
EPROTONOSUPPORT | |
ESOCKTNOSUPPORT | |
EOPNOTSUPP | |
EPFNOSUPPORT | |
EAFNOSUPPORT | |
EADDRINUSE | |
EADDRNOTAVAIL | |
ENETDOWN | |
ENETUNREACH | |
ENETRESET | |
ECONNABORTED | |
ECONNRESET | |
ENOBUFS | |
EISCONN | |
ENOTCONN | |
ESHUTDOWN | |
ETOOMANYREFS | |
ETIMEDOUT | |
ECONNREFUSED | |
EHOSTDOWN | |
EHOSTUNREACH | |
EALREADY | |
EINPROGRESS | |
ESTALE | |
EUCLEAN | |
ENOTNAM | |
ENAVAIL | |
EISNAM | |
EREMOTEIO | |
EDQUOT | |
ECANCELED | |
EKEYEXPIRED | |
EKEYREJECTED | |
EKEYREVOKED | |
EMEDIUMTYPE | |
ENOKEY | |
ENOMEDIUM | |
ENOTRECOVERABLE | |
EOWNERDEAD | |
ERFKILL | |
EAUTH | |
EBADRPC | |
EDOOFUS | |
EFTYPE | |
ENEEDAUTH | |
ENOATTR | |
ENOTSUP | |
EPROCLIM | |
EPROCUNAVAIL | |
EPROGMISMATCH | |
EPROGUNAVAIL | |
ERPCMISMATCH | |
EIPSEC | |
class methods: | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class SystemCallError < StandardError | |
ancestors: SystemCallError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
===(arg0) [<binary>] | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
errno() [<binary>] | |
class Encoding::CompatibilityError < EncodingError | |
ancestors: Encoding::CompatibilityError, EncodingError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class EncodingError < StandardError | |
ancestors: EncodingError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class NoMemoryError < Exception | |
ancestors: NoMemoryError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class SecurityError < Exception | |
ancestors: SecurityError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class RuntimeError < StandardError | |
ancestors: RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class NoMethodError < NameError | |
ancestors: NoMethodError, NameError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
args() [<binary>] | |
class NameError::message < Data | |
ancestors: NameError::message, Data, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
!(arg0, arg1, arg2) [<binary>] | |
_load(arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
==(arg0) [<binary>] | |
to_str() [<binary>] | |
_dump(arg0) [<binary>] | |
class NameError < StandardError | |
ancestors: NameError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
message | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
name() [<binary>] | |
class NotImplementedError < ScriptError | |
ancestors: NotImplementedError, ScriptError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class LoadError < ScriptError | |
ancestors: LoadError, ScriptError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
path() [<binary>] | |
class Thread::SizedQueue < Thread::Queue | |
ancestors: Thread::SizedQueue, Thread::Queue, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
max() [<binary>] | |
max=(arg0) [<binary>] | |
push(arg0) [<binary>] | |
pop(*arg0) [<binary>] | |
clear() [<binary>] | |
num_waiting() [<binary>] | |
enq(arg0) [<binary>] | |
<<(arg0) [<binary>] | |
deq(*arg0) [<binary>] | |
shift(*arg0) [<binary>] | |
class Thread::Queue < Object | |
ancestors: Thread::Queue, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
marshal_dump() [<binary>] | |
push(arg0) [<binary>] | |
pop(*arg0) [<binary>] | |
empty?() [<binary>] | |
clear() [<binary>] | |
length() [<binary>] | |
num_waiting() [<binary>] | |
enq(arg0) [<binary>] | |
<<(arg0) [<binary>] | |
deq(*arg0) [<binary>] | |
shift(*arg0) [<binary>] | |
size() [<binary>] | |
class Thread::ConditionVariable < Object | |
ancestors: Thread::ConditionVariable, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
marshal_dump() [<binary>] | |
wait(*arg0) [<binary>] | |
signal() [<binary>] | |
broadcast() [<binary>] | |
class Gem::BasicSpecification < Object | |
ancestors: Gem::BasicSpecification, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
default_specifications_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:32] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
base_dir=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:10] | |
extension_dir=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:15] | |
ignored=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:20] | |
loaded_from() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:25] | |
full_gem_path=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:30] | |
activated?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:39] | |
base_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:48] | |
contains_requirable_file?(file) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:60] | |
default_gem?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:80] | |
extension_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:88] | |
extensions_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:95] | |
full_gem_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:113] | |
full_name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:124] | |
full_require_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:136] | |
gem_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:150] | |
gems_dir() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:158] | |
loaded_from=(path) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:167] | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:181] | |
platform() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:188] | |
raw_require_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:192] | |
require_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:213] | |
source_paths() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:223] | |
to_spec() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:240] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:247] | |
stubbed?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/basic_specification.rb:255] | |
module Gem::Deprecate | |
ancestors: Gem::Deprecate | |
constants: | |
class methods: | |
skip() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/deprecate.rb:25] | |
skip=(v) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/deprecate.rb:29] | |
deprecate(name, repl, year, month) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/deprecate.rb:49] | |
skip_during() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/deprecate.rb:36] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
class Gem::SourceFetchProblem < Gem::ErrorReason | |
ancestors: Gem::SourceFetchProblem, Gem::ErrorReason, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
source() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:118] | |
error() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:123] | |
wordy() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:128] | |
exception() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:123] | |
class Gem::PlatformMismatch < Gem::ErrorReason | |
ancestors: Gem::PlatformMismatch, Gem::ErrorReason, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:64] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:68] | |
platforms() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:72] | |
add_platform(platform) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:86] | |
wordy() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:92] | |
class Gem::ErrorReason < Object | |
ancestors: Gem::ErrorReason, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::ConflictError < Gem::LoadError | |
ancestors: Gem::ConflictError, Gem::LoadError, LoadError, ScriptError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
conflicts() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:30] | |
target() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:35] | |
class Gem::LoadError < LoadError | |
ancestors: Gem::LoadError, LoadError, ScriptError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:16] | |
name=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:16] | |
requirement() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:19] | |
requirement=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/errors.rb:19] | |
class Gem::Version < Object | |
ancestors: Gem::Version, Comparable, Object, Kernel, BasicObject | |
constants: | |
VERSION_PATTERN | |
ANCHORED_VERSION_PATTERN | |
Requirement | |
class methods: | |
correct?(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:171] | |
create(input) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:183] | |
new(version) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:195] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:162] | |
to_s() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:162] | |
bump() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:219] | |
eql?(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:232] | |
hash() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:236] | |
init_with(coder) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:240] | |
inspect() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:244] | |
marshal_dump() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:252] | |
marshal_load(array) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:260] | |
yaml_initialize(tag, map) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:264] | |
to_yaml_properties() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:270] | |
encode_with(coder) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:274] | |
prerelease?() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:281] | |
pretty_print(q) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:285] | |
release() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:293] | |
segments() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:301] | |
approximate_recommendation() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:314] | |
<=>(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/version.rb:330] | |
class Gem::Platform < Object | |
ancestors: Gem::Platform, Object, Kernel, BasicObject | |
constants: | |
RUBY | |
CURRENT | |
class methods: | |
local() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:18] | |
match(platform) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:24] | |
installable?(spec) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:32] | |
new(arch) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:40] | |
allocate() [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
cpu() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:12] | |
cpu=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:12] | |
os() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:14] | |
os=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:14] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:16] | |
version=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:16] | |
inspect() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:112] | |
to_a() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:116] | |
to_s() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:120] | |
==(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:128] | |
eql?(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:128] | |
hash() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:134] | |
===(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:146] | |
=~(other) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/platform.rb:164] | |
class Gem::UnsatisfiableDependencyError < Gem::DependencyError | |
ancestors: Gem::UnsatisfiableDependencyError, Gem::DependencyError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
dependency() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:223] | |
errors() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:228] | |
errors=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:228] | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:253] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:260] | |
class Gem::SystemExitException < SystemExit | |
ancestors: Gem::SystemExitException, SystemExit, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
exit_code() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:200] | |
exit_code=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:200] | |
class Gem::VerificationError < Gem::Exception | |
ancestors: Gem::VerificationError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::RubyVersionMismatch < Gem::Exception | |
ancestors: Gem::RubyVersionMismatch, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::RemoteSourceException < Gem::Exception | |
ancestors: Gem::RemoteSourceException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::RemoteInstallationSkipped < Gem::Exception | |
ancestors: Gem::RemoteInstallationSkipped, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::RemoteInstallationCancelled < Gem::Exception | |
ancestors: Gem::RemoteInstallationCancelled, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::RemoteError < Gem::Exception | |
ancestors: Gem::RemoteError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::OperationNotSupportedError < Gem::Exception | |
ancestors: Gem::OperationNotSupportedError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::InvalidSpecificationException < Gem::Exception | |
ancestors: Gem::InvalidSpecificationException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::InstallError < Gem::Exception | |
ancestors: Gem::InstallError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::ImpossibleDependenciesError < Gem::Exception | |
ancestors: Gem::ImpossibleDependenciesError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
conflicts() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:125] | |
request() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:126] | |
build_message() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:135] | |
dependency() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:149] | |
class Gem::SpecificGemNotFoundException < Gem::GemNotFoundException | |
ancestors: Gem::SpecificGemNotFoundException, Gem::GemNotFoundException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
name() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:105] | |
version() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:110] | |
errors() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:115] | |
class Gem::GemNotFoundException < Gem::Exception | |
ancestors: Gem::GemNotFoundException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::FormatException < Gem::Exception | |
ancestors: Gem::FormatException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
file_path() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:79] | |
file_path=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:79] | |
class Gem::FilePermissionError < Gem::Exception | |
ancestors: Gem::FilePermissionError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
directory() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:66] | |
class Gem::EndOfYAMLException < Gem::Exception | |
ancestors: Gem::EndOfYAMLException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::DocumentError < Gem::Exception | |
ancestors: Gem::DocumentError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::GemNotInHomeException < Gem::Exception | |
ancestors: Gem::GemNotInHomeException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
spec() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:51] | |
spec=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:51] | |
class Gem::DependencyResolutionError < Gem::DependencyError | |
ancestors: Gem::DependencyResolutionError, Gem::DependencyError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
conflict() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:32] | |
conflicting_dependencies() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:41] | |
class Gem::DependencyRemovalException < Gem::Exception | |
ancestors: Gem::DependencyRemovalException, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::DependencyError < Gem::Exception | |
ancestors: Gem::DependencyError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::CommandLineError < Gem::Exception | |
ancestors: Gem::CommandLineError, Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class Gem::Exception < RuntimeError | |
ancestors: Gem::Exception, RuntimeError, StandardError, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
source_exception() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:15] | |
source_exception=(arg0) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/site_ruby/2.1.0/rubygems/exceptions.rb:15] | |
class MonitorMixin::ConditionVariable::Timeout < Exception | |
ancestors: MonitorMixin::ConditionVariable::Timeout, Exception, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
exception(*arg0) [<binary>] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
class MonitorMixin::ConditionVariable < Object | |
ancestors: MonitorMixin::ConditionVariable, Object, Kernel, BasicObject | |
constants: | |
Timeout | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
wait(timeout = <..>) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:106] | |
wait_while() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:120] | |
wait_until() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:129] | |
signal() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:138] | |
broadcast() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:146] | |
module MonitorMixin | |
ancestors: MonitorMixin | |
constants: | |
ConditionVariable | |
class methods: | |
extend_object(obj) [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:159] | |
freeze() [<binary>] | |
===(arg0) [<binary>] | |
==(arg0) [<binary>] | |
<=>(arg0) [<binary>] | |
<(arg0) [<binary>] | |
<=(arg0) [<binary>] | |
>(arg0) [<binary>] | |
>=(arg0) [<binary>] | |
to_s() [<binary>] | |
inspect() [<binary>] | |
included_modules() [<binary>] | |
include?(arg0) [<binary>] | |
name() [<binary>] | |
ancestors() [<binary>] | |
instance_methods(*arg0) [<binary>] | |
public_instance_methods(*arg0) [<binary>] | |
protected_instance_methods(*arg0) [<binary>] | |
private_instance_methods(*arg0) [<binary>] | |
constants(*arg0) [<binary>] | |
const_get(*arg0) [<binary>] | |
const_set(arg0, arg1) [<binary>] | |
const_defined?(*arg0) [<binary>] | |
const_missing(arg0) [<binary>] | |
class_variables(*arg0) [<binary>] | |
remove_class_variable(arg0) [<binary>] | |
class_variable_get(arg0) [<binary>] | |
class_variable_set(arg0, arg1) [<binary>] | |
class_variable_defined?(arg0) [<binary>] | |
public_constant(*arg0) [<binary>] | |
private_constant(*arg0) [<binary>] | |
singleton_class?() [<binary>] | |
include(*arg0) [<binary>] | |
prepend(*arg0) [<binary>] | |
module_exec(*arg0) [<binary>] | |
class_exec(*arg0) [<binary>] | |
module_eval(*arg0) [<binary>] | |
class_eval(*arg0) [<binary>] | |
method_defined?(arg0) [<binary>] | |
public_method_defined?(arg0) [<binary>] | |
private_method_defined?(arg0) [<binary>] | |
protected_method_defined?(arg0) [<binary>] | |
public_class_method(*arg0) [<binary>] | |
private_class_method(*arg0) [<binary>] | |
autoload(arg0, arg1) [<binary>] | |
autoload?(arg0) [<binary>] | |
instance_method(arg0) [<binary>] | |
public_instance_method(arg0) [<binary>] | |
instance methods: | |
mon_try_enter() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:167] | |
try_mon_enter() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:167] | |
mon_enter() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:183] | |
mon_exit() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:194] | |
mon_synchronize() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:208] | |
synchronize() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:208] | |
new_cond() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:222] | |
class Monitor < Object | |
ancestors: Monitor, MonitorMixin, Object, Kernel, BasicObject | |
constants: | |
class methods: | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
try_enter() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:167] | |
enter() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:183] | |
exit() [/usr/local/rvm/rubies/ruby-2.1.4/lib/ruby/2.1.0/monitor.rb:194] | |
class Alpha < Object | |
ancestors: Alpha, Object, Kernel, BasicObject | |
constants: | |
ALPHA | |
class methods: | |
beta() [intro06.rb:40] | |
beta=(arg0) [intro06.rb:40] | |
allocate() [<binary>] | |
new(*arg0) [<binary>] | |
superclass() [<binary>] | |
instance methods: | |
alpha(a, b = <..>, *c) [intro06.rb:43] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment