| Class | String |
| In: |
lib/mcollective/monkey_patches.rb
|
| Parent: | Object |
start_with? was introduced in 1.8.7, we need to support 1.8.5 and 1.8.6
# File lib/mcollective/monkey_patches.rb, line 63
63: def bytes(&block)
64: # This should not be necessary, really ...
65: require 'enumerator'
66: return to_enum(:each_byte) unless block_given?
67: each_byte(&block)
68: end