Sha256: 7415e28e1a96972e84b597bfa1bf1355fe9afd80bd5169904e5a3551f9517a1f
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.1.5" 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.1.5 | lib/epb_view_models.rb |