maxwell_agent 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +0,0 @@
1
- module Maxwell
2
- module Agent
3
- module DynamicAttributes
4
- def method_missing(method_name, *args)
5
- singleton_class.
6
- class_eval { attr_accessor method_name.to_s.gsub(/=$/, '') }
7
- send(method_name, *args)
8
- end
9
- end
10
- end
11
- end