Module: Ronin::Code::SQL::Fields
- Included in:
- Clause, InjectionExpr, StatementList
- Defined in:
- lib/ronin/code/sql/fields.rb
Overview
Allows creating Fields via #method_missing.
Instance Method Summary collapse
-
#method_missing(name, *arguments, &block) ⇒ Field
protected
Allows specifying databases, tables or columns.
-
#respond_to_missing?(name, include_private) ⇒ true
Specifies that #method_missing will catch all missing methods.
- #to_ary ⇒ nil
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
Instance Method Details
#respond_to_missing?(name, include_private) ⇒ true
Specifies that #method_missing will catch all missing methods.
42 43 44 |
# File 'lib/ronin/code/sql/fields.rb', line 42 def respond_to_missing?(name,include_private) true end |
#to_ary ⇒ nil
49 50 |
# File 'lib/ronin/code/sql/fields.rb', line 49 def to_ary end |