Method: Tablescript::Namespace#table
- Defined in:
- lib/tablescript/namespace.rb
#table(table_name) ⇒ Object
59 60 61 62 |
# File 'lib/tablescript/namespace.rb', line 59 def table(table_name) raise Exception, "No such table #{table_name} in #{name}" unless @tables.key?(table_name) @tables[table_name] end |