7

I try to design a web based application in Ruby. I have developed a simple core application implementing DCI paradigm in hexagonal architecture without framework and database. There are small hexagons in core hexagon and adapters such as web, database, logs etc. Every hexagons run itself without database and framework. How can I provide relation with database models and entity classes as independent with database in this approach. I want to change framework from Rails to Sinatra in future or database. In fact, how can I implement database adapter or framework adapter that is exactly isolated rails and mongodb in this core Hexagon. Any ideas?

pegatron
  • 496
  • 4
  • 15

1 Answers1

4

What about ROM (Ruby Object Mapper).

There is also MiniMapper and DataMappify.

Kris
  • 16,882
  • 6
  • 79
  • 99