module Turnkey::Sanitizers
Public Instance Methods
reader_sig_for(property)
click to toggle source
# File lib/turnkey/sanitizers.rb, line 5 def reader_sig_for(property) property.to_s.delete("@") end
writer_sig_for(property)
click to toggle source
# File lib/turnkey/sanitizers.rb, line 9 def writer_sig_for(property) property.to_s.delete("@") + "=" end