Sha256: a3fa2f273553716e91c296beaa1bb870817160c19a872a2f3f6138675ec21bff
Contents?: true
Size: 573 Bytes
Versions: 1
Compression:
Stored size: 573 Bytes
Contents
# frozen_string_literal: true require "zeitwerk" loader = Zeitwerk::Loader.for_gem(warn_on_extra_files: false) loader.setup module EpbViewModels VERSION = "1.0.27" end # Monkey patching to avoid using ActiveRecord::Type::Boolean.new.cast # Source: http://jeffgardner.org/2011/08/04/rails-string-to-boolean-method/ class String def to_bool return true if self == true || self =~ (/(true|t|yes|y|1)$/i) return false if self == false || blank? || self =~ (/(false|f|no|n|0)$/i) raise ArgumentError, "invalid value for Boolean: \"#{self}\"" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
epb_view_models-1.0.27 | lib/epb_view_models.rb |