Method: Xlsx2Mysql::Relative#method_missing
- Defined in:
- lib/xlsx2mysql/relative.rb
#method_missing(name, *args) ⇒ Object
34 35 36 37 38 39 40 |
# File 'lib/xlsx2mysql/relative.rb', line 34 def method_missing(name, *args) if name =~ /[A-Z]+/ Column.new(name, args[0]) else super end end |