Sha256: 353595e0c333bb347f3f5b434e636f71a80312c4d3e655b1be20fe878e7ef097
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
require 'darkext/hash' class String # Parses a string like "1..10" to a Range def to_range case self.count('.') when 2 elements = self.split('..') if elements[0] == elements[0].to_i.to_s return Range.new(elements[0].to_i, elements[1].to_i) else return Range.new(elements[0], elements[1]) end when 3 elements = self.split('...') if elements[0] == elements[0].to_i.to_s return Range.new(elements[0].to_i, (elements[1] - 1).to_i) else return Range.new(elements[0], elements[1] - 1) end end return nil end # Executes the string with system # * :background => true to run command in the background using & (currently only works on *nix systems) # * :capture => true to capture the output. If :capture => true, background is voided def exec(opts = {}) opts.with_defaults!(:background => false, :capture => false) cmd = self # TODO: Do this with threads maybe, so it's OS agnostic? cmd += " &" if opts[:background] && !opts[:capture] return system(cmd) if !opts[:capture] return `#{cmd}` if opts[:capture] end # Prints the String using print def print print self end alias :/ :split end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
darkhelmet-darkext-0.5.5 | lib/darkext/string.rb |