Module: DataMapper::Reflection::PersevereAdapter
- Extended by:
- Chainable
- Defined in:
- lib/dm-reflection/adapters/persevere.rb
Instance Method Summary collapse
-
#get_storage_names ⇒ String Array
Get the list of schema names.
Instance Method Details
#get_storage_names ⇒ String Array
Get the list of schema names
44 45 46 47 |
# File 'lib/dm-reflection/adapters/persevere.rb', line 44 def get_storage_names @schemas = self.get_schema @schemas.map { |schema| schema['id'].gsub('/', '__') } end |