Sha256: 5912b4696a2f3d344e7aae892c4b54ee9f59b982b6a6220275027ab872b289dd
Contents?: true
Size: 372 Bytes
Versions: 13
Compression:
Stored size: 372 Bytes
Contents
module Sass::Script # A SassScript object representing a boolean (true or false) value. class Bool < Literal # The Ruby value of the boolean. # # @return [Boolean] attr_reader :value alias_method :to_bool, :value # @return [String] "true" or "false" def to_s(opts = {}) @value.to_s end alias_method :to_sass, :to_s end end
Version data entries
13 entries across 13 versions & 1 rubygems