Class: ScoutApm::Config::NullableIntegerCoercion
- Inherits:
-
Object
- Object
- ScoutApm::Config::NullableIntegerCoercion
- Defined in:
- lib/scout_apm/config.rb
Instance Method Summary collapse
Instance Method Details
#coerce(val) ⇒ Object
188 189 190 191 |
# File 'lib/scout_apm/config.rb', line 188 def coerce(val) return val if val.nil? val.to_i end |