lib/sail/constant_collection.rb in sail-1.1.0 vs lib/sail/constant_collection.rb in sail-1.2.0
- old
+ new
@@ -1,10 +1,12 @@
# frozen_string_literal: true
module Sail
module ConstantCollection
TRUE = 'true'
- BOOLEANS = %w[true false].freeze
+ FALSE = 'false'
+ STRING_BOOLEANS = %w[true false].freeze
BOOLEAN = 'boolean'
ON = 'on'
+ BOOLEANS = [true, false].freeze
end
end