Run class evaluation from Application Record?Active Record InheritanceController inheritance in Ruby on Rails — model and controller access in parent classBest practices to handle routes for STI subclasses in railsRails 3 Abstract Class vs Inherited ClassUsing Rails 3.1, where do you put your “page specific” JavaScript code?Why do people use Heroku when AWS is present? What distinguishes Heroku from AWS?Implementing Abstract Base Model Class, the Rails Way™Rails STI - ignore concern when child record createdWhen call controller_name.classify.constantize I got #<NoMethodError: undefined method `belongs_to' for Relatorio:Class>"Access subclass constants after inheritance
Notepad++ cannot print
I don't have the theoretical background in my PhD topic. I can't justify getting the degree
Compelling story with the world as a villain
Round towards zero
How to prevent clipped screen edges on my TV, HDMI-connected?
Architectural feasibility of a tiered circular stone keep
Why is 1. d4 Nf6 2. c4 e6 3. Bg5 almost never played?
Can a Rogue PC teach an NPC to perform Sneak Attack?
Why are non-collision-resistant hash functions considered insecure for signing self-generated information
What is the best type of paint to paint a shipping container?
Is "The life is beautiful" incorrect or just very non-idiomatic?
Is gzip atomic?
How long do you think advanced cybernetic implants would plausibly last?
Lost property on Portuguese trains
How to respectfully refuse to assist co-workers with IT issues?
How would a Creature that needs to be seen by Humans evolve?
Non-visual Computers - thoughts?
Sum ergo cogito?
How do proponents of Sola Scriptura address the ministry of those Apostles who authored no parts of Scripture?
If two Lore Bards used cutting words on an ability check or attack, would they stack?
Prove your innocence
Rent contract say that pets are not allowed. Possible repercussions if bringing the pet anyway?
How to know which loss function is suitable for image classification?
How can I unambiguously ask for a new user's "Display Name"?
Run class evaluation from Application Record?
Active Record InheritanceController inheritance in Ruby on Rails — model and controller access in parent classBest practices to handle routes for STI subclasses in railsRails 3 Abstract Class vs Inherited ClassUsing Rails 3.1, where do you put your “page specific” JavaScript code?Why do people use Heroku when AWS is present? What distinguishes Heroku from AWS?Implementing Abstract Base Model Class, the Rails Way™Rails STI - ignore concern when child record createdWhen call controller_name.classify.constantize I got #<NoMethodError: undefined method `belongs_to' for Relatorio:Class>"Access subclass constants after inheritance
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a wonderful question, that I'm sure someone has come across before.
I have some classes that are inheriting from ApplicationRecord and ApplicationRecord inherits from ActiveRecord::Base.
Lets call my classes Post, Comment, Author.
Now I have multiple concerns for each of these things which have inclusions. So that I do not have to hard code in each of the concerns I have a ConcernDirectory.
The call to it essentially runs each of the concerns for the model.
ConcernDirectory.inclusions(self).each
If I have this in each model everything works fine.
However if I put this into the parent (ApplicationRecord) it no longer works.
When I run it in ApplicationRecord, self points to ApplicationRecord(abstract). How do I get the call from ApplicationRecord to refer to the child from which the call came?
eg.
post = Post.new
when it instantiates its parent class's
--------------.is_a?(::Post)
would be true from the ApplicationRecord.
What is -----------?
Thanks for the help!
ruby-on-rails
add a comment |
I have a wonderful question, that I'm sure someone has come across before.
I have some classes that are inheriting from ApplicationRecord and ApplicationRecord inherits from ActiveRecord::Base.
Lets call my classes Post, Comment, Author.
Now I have multiple concerns for each of these things which have inclusions. So that I do not have to hard code in each of the concerns I have a ConcernDirectory.
The call to it essentially runs each of the concerns for the model.
ConcernDirectory.inclusions(self).each
If I have this in each model everything works fine.
However if I put this into the parent (ApplicationRecord) it no longer works.
When I run it in ApplicationRecord, self points to ApplicationRecord(abstract). How do I get the call from ApplicationRecord to refer to the child from which the call came?
eg.
post = Post.new
when it instantiates its parent class's
--------------.is_a?(::Post)
would be true from the ApplicationRecord.
What is -----------?
Thanks for the help!
ruby-on-rails
where and how exactly do you call it?
– phoet
Mar 27 at 20:36
and btw, why not include everything directly into ApplicationRecord and go the complex way of having something that does the inclusion?
– phoet
Mar 27 at 20:37
add a comment |
I have a wonderful question, that I'm sure someone has come across before.
I have some classes that are inheriting from ApplicationRecord and ApplicationRecord inherits from ActiveRecord::Base.
Lets call my classes Post, Comment, Author.
Now I have multiple concerns for each of these things which have inclusions. So that I do not have to hard code in each of the concerns I have a ConcernDirectory.
The call to it essentially runs each of the concerns for the model.
ConcernDirectory.inclusions(self).each
If I have this in each model everything works fine.
However if I put this into the parent (ApplicationRecord) it no longer works.
When I run it in ApplicationRecord, self points to ApplicationRecord(abstract). How do I get the call from ApplicationRecord to refer to the child from which the call came?
eg.
post = Post.new
when it instantiates its parent class's
--------------.is_a?(::Post)
would be true from the ApplicationRecord.
What is -----------?
Thanks for the help!
ruby-on-rails
I have a wonderful question, that I'm sure someone has come across before.
I have some classes that are inheriting from ApplicationRecord and ApplicationRecord inherits from ActiveRecord::Base.
Lets call my classes Post, Comment, Author.
Now I have multiple concerns for each of these things which have inclusions. So that I do not have to hard code in each of the concerns I have a ConcernDirectory.
The call to it essentially runs each of the concerns for the model.
ConcernDirectory.inclusions(self).each
If I have this in each model everything works fine.
However if I put this into the parent (ApplicationRecord) it no longer works.
When I run it in ApplicationRecord, self points to ApplicationRecord(abstract). How do I get the call from ApplicationRecord to refer to the child from which the call came?
eg.
post = Post.new
when it instantiates its parent class's
--------------.is_a?(::Post)
would be true from the ApplicationRecord.
What is -----------?
Thanks for the help!
ruby-on-rails
ruby-on-rails
asked Mar 27 at 18:31
TimmyTimmy
1881 silver badge8 bronze badges
1881 silver badge8 bronze badges
where and how exactly do you call it?
– phoet
Mar 27 at 20:36
and btw, why not include everything directly into ApplicationRecord and go the complex way of having something that does the inclusion?
– phoet
Mar 27 at 20:37
add a comment |
where and how exactly do you call it?
– phoet
Mar 27 at 20:36
and btw, why not include everything directly into ApplicationRecord and go the complex way of having something that does the inclusion?
– phoet
Mar 27 at 20:37
where and how exactly do you call it?
– phoet
Mar 27 at 20:36
where and how exactly do you call it?
– phoet
Mar 27 at 20:36
and btw, why not include everything directly into ApplicationRecord and go the complex way of having something that does the inclusion?
– phoet
Mar 27 at 20:37
and btw, why not include everything directly into ApplicationRecord and go the complex way of having something that does the inclusion?
– phoet
Mar 27 at 20:37
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55384274%2frun-class-evaluation-from-application-record%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55384274%2frun-class-evaluation-from-application-record%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
where and how exactly do you call it?
– phoet
Mar 27 at 20:36
and btw, why not include everything directly into ApplicationRecord and go the complex way of having something that does the inclusion?
– phoet
Mar 27 at 20:37