# File lib/beefcake/buffer/encode.rb, line 36 def append_int32(n) if n < MinInt32 || n > MaxInt32 raise OutOfRangeError, n end append_int64(n) end