Method: Arrow::Config::ConfigStruct#modified?
- Defined in:
- lib/arrow/config.rb
#modified? ⇒ Boolean
Returns true if the ConfigStruct or any of its sub-structs have changed since it was created.
423 424 425 426 427 |
# File 'lib/arrow/config.rb', line 423 def modified? @dirty || @hash.values.find do |obj| obj.is_a?( ConfigStruct ) && obj.modified? end end |