-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expect patched class to begin with capital letter
In order to not consider a prepended base class a patch we expect the patched class constant to begin with a capital letter.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
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
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,7 +1,17 @@ | ||
module PagePatch | ||
def self.prepended(base) | ||
base.prepend(InstanceMethods) | ||
end | ||
|
||
def title | ||
"Changed from Host app" | ||
end | ||
|
||
module InstanceMethods | ||
def name | ||
"Homepage" | ||
end | ||
end | ||
|
||
::DummyCms::Page.prepend(self) | ||
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