lib/boolean2.rb in boolean2-1.0.0 vs lib/boolean2.rb in boolean2-1.0.1
- old
+ new
@@ -1,10 +1,12 @@
+# frozen_string_literal: true
+
module Boolean2
- VERSION = '1.0.0'
+ VERSION = '1.0.1'
def self.new(object)
object.to_boolean2
- end
+ end
end
class TrueClass
include Boolean2
end