This Ruby gem is a collection of tools that can be used to handle multitenant Ruby/Rails apps. Like the name says, it is just a collection of tools and not an opinionated implementation and does not require a specific architecture.
The currently only supported database is PostgreSQL and there is no plan to support other databases.
The documentation is available on RubyDoc.info.
Add this line to your application's Gemfile:
gem 'multitenancy_tools'
And then execute:
$ bundle
Or install it yourself as:
$ gem install multitenancy_tools
Please note that pg_dump
must be on your PATH
:
dumper = MultitenancyTools::SchemaDumper.new('database name', 'schema name')
dumper.dump_to('path/to/file.sql')
options = { host: 'db-on-docker', username: 'non-root-user' }
dumper = MultitenancyTools::SchemaDumper.new('database name', 'schema name', options)
dupmer.dump_to('path/to/file.sql')
Like SchemaDumper
, this tool also requires pg_dump
to be on the PATH
:
dumper = MultitenancyTools::TableDumper.new('database name', 'schema name', 'table name')
dumper.dump_to('path/to/file.sql')
options = { host: 'db-on-docker', username: 'non-root-user' }
dumper = MultitenancyTools::TableDumper.new('database name', 'schema name', 'table_name', options)
dupmer.dump_to('path/to/file.sql')
After using SchemaDumper
to create the SQL template, you can use the following
class to create a new schema using this file as template:
creator = MultitenancyTools::SchemaCreator.new('schema name', ActiveRecord::Base.connection)
creator.create_from_file('path/to/file.sql')
After checking out the repo:
- Install dependencies using
bin/setup
. - Create the file
spec/database.yml
and configure it with your PostgreSQL database. There is an example onspec/database.yml.example
. Important: this database will be destroyed and recreated on test execution. - Run specs using
bundle exec rake spec
to make sure that everything is fine.
You can use bin/console
to get an interactive prompt that will allow you to
experiment.
You can also run this project using docker in your local environment. Just ensure that you have:
- Docker equal or greater than 18.09.1
Then, build Multitenancy Tools image running scripts/setup
In order to access it's console, run scripts/bash
If you are the maintainer of this project:
- Update the version number in
lib/multitenancy_tools/version.rb
. - Make sure that all tests are green (run
bundle exec rake spec
). - Execute
bundle exec rake release
to create a git tag for the version, push git commits and tags, and publish the gem on RubyGems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/locaweb/multitenancy_tools.
The gem is available as open source under the terms of the MIT License.