├── .gitignore ├── LICENSE ├── README ├── init.rb ├── lib ├── active_record │ └── connection_adapters │ │ └── master_slave_adapter.rb └── master_slave_adapter │ ├── active_record_extensions.rb │ ├── adapter.rb │ └── instance_methods_generation.rb └── specs └── specs.rb /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/README -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/init.rb -------------------------------------------------------------------------------- /lib/active_record/connection_adapters/master_slave_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/lib/active_record/connection_adapters/master_slave_adapter.rb -------------------------------------------------------------------------------- /lib/master_slave_adapter/active_record_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/lib/master_slave_adapter/active_record_extensions.rb -------------------------------------------------------------------------------- /lib/master_slave_adapter/adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/lib/master_slave_adapter/adapter.rb -------------------------------------------------------------------------------- /lib/master_slave_adapter/instance_methods_generation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/lib/master_slave_adapter/instance_methods_generation.rb -------------------------------------------------------------------------------- /specs/specs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauricio/master_slave_adapter/HEAD/specs/specs.rb --------------------------------------------------------------------------------