Results for: "strip"

Returns the resulting hash value and resets the digest to the initial state.

Writes s to the stream. If the argument is not a String it will be converted using .to_s method. Returns the number of bytes written.

Writes args to the stream.

See IO#print for full details.

Formats and writes to the stream converting parameters under control of the format string.

See Kernel#sprintf for format string details.

If a block is given, it prints out each of the elements encountered. Block parameters are (in that order):

Example

der = File.binread('asn1data.der')
OpenSSL::ASN1.traverse(der) do | depth, offset, header_len, length, constructed, tag_class, tag|
  puts "Depth: #{depth} Offset: #{offset} Length: #{length}"
  puts "Header length: #{header_len} Tag: #{tag} Tag class: #{tag_class} Constructed: #{constructed}"
end

Return true if the PRNG has been seeded with enough data, false otherwise.

Start streaming using encoding

No documentation available

See IO#print.

See IO#printf.

See IO#write

Returns whether the form contained multipart/form-data

No documentation available
No documentation available

Adds a separated list. The list is separated by comma with breakable space, by default.

seplist iterates the list using iter_method. It yields each object to the block given for seplist. The procedure separator_proc is called between each yields.

If the iteration is zero times, separator_proc is not called at all.

If separator_proc is nil or not given, +lambda { comma_breakable }+ is used. If iter_method is not given, :each is used.

For example, following 3 code fragments has similar effect.

q.seplist([1,2,3]) {|v| xxx v }

q.seplist([1,2,3], lambda { q.comma_breakable }, :each) {|v| xxx v }

xxx 1
q.comma_breakable
xxx 2
q.comma_breakable
xxx 3

Create a new AliasGlobalVariableNode node

Create a new BlockLocalVariableNode node

Create a new CallAndWriteNode node

Create a new CallOperatorWriteNode node

Create a new CallOrWriteNode node

Create a new ClassVariableReadNode node

Create a new ClassVariableTargetNode node

Create a new ConstantPathNode node

Create a new ConstantPathTargetNode node

Create a new ConstantTargetNode node

Search took: 5ms  ·  Total Results: 2417