-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(inheritance): allow models inheritance without bugs
- Loading branch information
Showing
9 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# Changelog | ||
All notable changes to this project made by Monade Team are documented in this file. For info refer to [email protected] | ||
|
||
## [0.1.2] | ||
### Fixed | ||
- Bug with inheritance: attributes declared in parent classes where not propagated to child classes | ||
|
||
## [0.1.1] | ||
### Fixed | ||
- Name conflicts between columns and nosql attributes where not detected | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# frozen_string_literal: true | ||
|
||
module ActsAsNosql | ||
module Querying | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module ActsAsNosql | ||
VERSION = '0.1.1'.freeze | ||
VERSION = '0.1.2'.freeze | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
require 'spec_helper' | ||
|
||
describe 'Inheritance' do | ||
subject { InheritedSetting.new } | ||
it 'inherits all methods from Settings' do | ||
expect(subject).to respond_to(:user_auth_token) | ||
expect(subject).to respond_to(:user_auth_token=) | ||
|
||
subject.user_auth_token = '3' | ||
expect(subject.user_auth_token).to eq('3') | ||
subject.save! | ||
expect do | ||
expect(InheritedSetting.where(user_auth_token: '3')).to eq([subject]) | ||
end.to_not raise_error | ||
end | ||
|
||
it 'can be estended without affecting the parent' do | ||
InheritedSetting.nosql_attrs :hello, type: :String | ||
expect(subject).to respond_to(:hello) | ||
expect(Setting.new).not_to respond_to(:hello) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters