activerecord-tenanted 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +46 -21
  4. data/Rakefile +5 -6
  5. data/lib/active_record/tenanted/base.rb +63 -0
  6. data/lib/active_record/tenanted/cable_connection.rb +50 -0
  7. data/lib/active_record/tenanted/connection_adapter.rb +22 -0
  8. data/lib/active_record/tenanted/console.rb +29 -0
  9. data/lib/active_record/tenanted/database_configurations.rb +166 -0
  10. data/lib/active_record/tenanted/database_tasks.rb +118 -0
  11. data/lib/active_record/tenanted/global_id.rb +36 -0
  12. data/lib/active_record/tenanted/job.rb +37 -0
  13. data/lib/active_record/tenanted/mailer.rb +15 -0
  14. data/lib/active_record/tenanted/mutex.rb +66 -0
  15. data/lib/active_record/tenanted/patches.rb +50 -0
  16. data/lib/active_record/tenanted/railtie.rb +205 -0
  17. data/lib/active_record/tenanted/relation.rb +22 -0
  18. data/lib/active_record/tenanted/storage.rb +49 -0
  19. data/lib/active_record/tenanted/subtenant.rb +36 -0
  20. data/lib/active_record/tenanted/tenant.rb +261 -0
  21. data/lib/active_record/tenanted/tenant_selector.rb +54 -0
  22. data/lib/active_record/tenanted/testing.rb +121 -0
  23. data/lib/active_record/tenanted/untenanted_connection_pool.rb +48 -0
  24. data/lib/{activerecord → active_record}/tenanted/version.rb +2 -2
  25. data/lib/active_record/tenanted.rb +47 -0
  26. data/lib/activerecord-tenanted.rb +3 -0
  27. data/lib/tasks/active_record/tenanted_tasks.rake +78 -0
  28. metadata +79 -11
  29. data/CHANGELOG.md +0 -5
  30. data/CODE_OF_CONDUCT.md +0 -132
  31. data/LICENSE.txt +0 -21
  32. data/lib/activerecord/tenanted.rb +0 -10
  33. data/sig/activerecord/tenanted.rbs +0 -6
metadata CHANGED
@@ -1,28 +1,96 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-tenanted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
8
- bindir: exe
8
+ bindir: bin
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
- dependencies: []
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: activerecord
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 8.1.alpha
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 8.1.alpha
26
+ - !ruby/object:Gem::Dependency
27
+ name: railties
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 8.1.alpha
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 8.1.alpha
40
+ - !ruby/object:Gem::Dependency
41
+ name: zeitwerk
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ description: |
55
+ Enable a Rails application to have separate databases for each tenant.
56
+
57
+ This gem primarily extends Active Record, creating a new connection pool for each tenant and
58
+ using horizontal sharding to swap between them. It also provides integrations for middleware
59
+ tenant selection, Action View Caching, Active Job, Action Cable, Active Storage, Action Mailbox,
60
+ and Action Text, with support and documentation for Solid Cache, Solid Queue, Solid Cable, and
61
+ Turbo Rails.
12
62
  email:
13
63
  - mike@37signals.com
14
64
  executables: []
15
65
  extensions: []
16
66
  extra_rdoc_files: []
17
67
  files:
18
- - CHANGELOG.md
19
- - CODE_OF_CONDUCT.md
20
- - LICENSE.txt
68
+ - MIT-LICENSE
21
69
  - README.md
22
70
  - Rakefile
23
- - lib/activerecord/tenanted.rb
24
- - lib/activerecord/tenanted/version.rb
25
- - sig/activerecord/tenanted.rbs
71
+ - lib/active_record/tenanted.rb
72
+ - lib/active_record/tenanted/base.rb
73
+ - lib/active_record/tenanted/cable_connection.rb
74
+ - lib/active_record/tenanted/connection_adapter.rb
75
+ - lib/active_record/tenanted/console.rb
76
+ - lib/active_record/tenanted/database_configurations.rb
77
+ - lib/active_record/tenanted/database_tasks.rb
78
+ - lib/active_record/tenanted/global_id.rb
79
+ - lib/active_record/tenanted/job.rb
80
+ - lib/active_record/tenanted/mailer.rb
81
+ - lib/active_record/tenanted/mutex.rb
82
+ - lib/active_record/tenanted/patches.rb
83
+ - lib/active_record/tenanted/railtie.rb
84
+ - lib/active_record/tenanted/relation.rb
85
+ - lib/active_record/tenanted/storage.rb
86
+ - lib/active_record/tenanted/subtenant.rb
87
+ - lib/active_record/tenanted/tenant.rb
88
+ - lib/active_record/tenanted/tenant_selector.rb
89
+ - lib/active_record/tenanted/testing.rb
90
+ - lib/active_record/tenanted/untenanted_connection_pool.rb
91
+ - lib/active_record/tenanted/version.rb
92
+ - lib/activerecord-tenanted.rb
93
+ - lib/tasks/active_record/tenanted_tasks.rake
26
94
  homepage: https://github.com/basecamp/activerecord-tenanted
27
95
  licenses:
28
96
  - MIT
@@ -35,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
35
103
  requirements:
36
104
  - - ">="
37
105
  - !ruby/object:Gem::Version
38
- version: 3.2.0
106
+ version: '0'
39
107
  required_rubygems_version: !ruby/object:Gem::Requirement
40
108
  requirements:
41
109
  - - ">="
@@ -44,5 +112,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
112
  requirements: []
45
113
  rubygems_version: 3.6.9
46
114
  specification_version: 4
47
- summary: Everybody gets a database!
115
+ summary: Enable a Rails application to have separate databases for each tenant.
48
116
  test_files: []
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2025-08-25
4
-
5
- - Initial release
data/CODE_OF_CONDUCT.md DELETED
@@ -1,132 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- We as members, contributors, and leaders pledge to make participation in our
6
- community a harassment-free experience for everyone, regardless of age, body
7
- size, visible or invisible disability, ethnicity, sex characteristics, gender
8
- identity and expression, level of experience, education, socio-economic status,
9
- nationality, personal appearance, race, caste, color, religion, or sexual
10
- identity and orientation.
11
-
12
- We pledge to act and interact in ways that contribute to an open, welcoming,
13
- diverse, inclusive, and healthy community.
14
-
15
- ## Our Standards
16
-
17
- Examples of behavior that contributes to a positive environment for our
18
- community include:
19
-
20
- * Demonstrating empathy and kindness toward other people
21
- * Being respectful of differing opinions, viewpoints, and experiences
22
- * Giving and gracefully accepting constructive feedback
23
- * Accepting responsibility and apologizing to those affected by our mistakes,
24
- and learning from the experience
25
- * Focusing on what is best not just for us as individuals, but for the overall
26
- community
27
-
28
- Examples of unacceptable behavior include:
29
-
30
- * The use of sexualized language or imagery, and sexual attention or advances of
31
- any kind
32
- * Trolling, insulting or derogatory comments, and personal or political attacks
33
- * Public or private harassment
34
- * Publishing others' private information, such as a physical or email address,
35
- without their explicit permission
36
- * Other conduct which could reasonably be considered inappropriate in a
37
- professional setting
38
-
39
- ## Enforcement Responsibilities
40
-
41
- Community leaders are responsible for clarifying and enforcing our standards of
42
- acceptable behavior and will take appropriate and fair corrective action in
43
- response to any behavior that they deem inappropriate, threatening, offensive,
44
- or harmful.
45
-
46
- Community leaders have the right and responsibility to remove, edit, or reject
47
- comments, commits, code, wiki edits, issues, and other contributions that are
48
- not aligned to this Code of Conduct, and will communicate reasons for moderation
49
- decisions when appropriate.
50
-
51
- ## Scope
52
-
53
- This Code of Conduct applies within all community spaces, and also applies when
54
- an individual is officially representing the community in public spaces.
55
- Examples of representing our community include using an official email address,
56
- posting via an official social media account, or acting as an appointed
57
- representative at an online or offline event.
58
-
59
- ## Enforcement
60
-
61
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
- reported to the community leaders responsible for enforcement at
63
- [INSERT CONTACT METHOD].
64
- All complaints will be reviewed and investigated promptly and fairly.
65
-
66
- All community leaders are obligated to respect the privacy and security of the
67
- reporter of any incident.
68
-
69
- ## Enforcement Guidelines
70
-
71
- Community leaders will follow these Community Impact Guidelines in determining
72
- the consequences for any action they deem in violation of this Code of Conduct:
73
-
74
- ### 1. Correction
75
-
76
- **Community Impact**: Use of inappropriate language or other behavior deemed
77
- unprofessional or unwelcome in the community.
78
-
79
- **Consequence**: A private, written warning from community leaders, providing
80
- clarity around the nature of the violation and an explanation of why the
81
- behavior was inappropriate. A public apology may be requested.
82
-
83
- ### 2. Warning
84
-
85
- **Community Impact**: A violation through a single incident or series of
86
- actions.
87
-
88
- **Consequence**: A warning with consequences for continued behavior. No
89
- interaction with the people involved, including unsolicited interaction with
90
- those enforcing the Code of Conduct, for a specified period of time. This
91
- includes avoiding interactions in community spaces as well as external channels
92
- like social media. Violating these terms may lead to a temporary or permanent
93
- ban.
94
-
95
- ### 3. Temporary Ban
96
-
97
- **Community Impact**: A serious violation of community standards, including
98
- sustained inappropriate behavior.
99
-
100
- **Consequence**: A temporary ban from any sort of interaction or public
101
- communication with the community for a specified period of time. No public or
102
- private interaction with the people involved, including unsolicited interaction
103
- with those enforcing the Code of Conduct, is allowed during this period.
104
- Violating these terms may lead to a permanent ban.
105
-
106
- ### 4. Permanent Ban
107
-
108
- **Community Impact**: Demonstrating a pattern of violation of community
109
- standards, including sustained inappropriate behavior, harassment of an
110
- individual, or aggression toward or disparagement of classes of individuals.
111
-
112
- **Consequence**: A permanent ban from any sort of public interaction within the
113
- community.
114
-
115
- ## Attribution
116
-
117
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
- version 2.1, available at
119
- [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120
-
121
- Community Impact Guidelines were inspired by
122
- [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123
-
124
- For answers to common questions about this code of conduct, see the FAQ at
125
- [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126
- [https://www.contributor-covenant.org/translations][translations].
127
-
128
- [homepage]: https://www.contributor-covenant.org
129
- [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130
- [Mozilla CoC]: https://github.com/mozilla/diversity
131
- [FAQ]: https://www.contributor-covenant.org/faq
132
- [translations]: https://www.contributor-covenant.org/translations
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2025 Mike Dalessio
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "tenanted/version"
4
-
5
- module Activerecord
6
- module Tenanted
7
- class Error < StandardError; end
8
- # Your code goes here...
9
- end
10
- end
@@ -1,6 +0,0 @@
1
- module Activerecord
2
- module Tenanted
3
- VERSION: String
4
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
- end
6
- end