Method: CassandraCQL::ColumnFamily#method_missing
- Defined in:
- lib/cassandra-cql/schema.rb
#method_missing(method, *args, &block) ⇒ Object
58 59 60 61 62 63 64 |
# File 'lib/cassandra-cql/schema.rb', line 58 def method_missing(method, *args, &block) if @cf_def.respond_to?(method) @cf_def.send(method) else super(method, *args, &block) end end |