diff options
author | Weston Platter <westonplatter@gmail.com> | 2013-01-24 02:42:21 -0600 |
---|---|---|
committer | Weston Platter <westonplatter@gmail.com> | 2013-01-24 02:42:21 -0600 |
commit | 9133aadfe2f390efe6c931a39c8724189b1d5bff (patch) | |
tree | 65d1e0e238de696c0e26f856935fa14346064da1 | |
parent | d35b76283bb1de54907e797ebcd4f3885a28a82c (diff) | |
download | rails-9133aadfe2f390efe6c931a39c8724189b1d5bff.tar.gz rails-9133aadfe2f390efe6c931a39c8724189b1d5bff.tar.bz2 rails-9133aadfe2f390efe6c931a39c8724189b1d5bff.zip |
[engines guide] reworded a run on
-rw-r--r-- | guides/source/engines.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index f6c7800828..20989cc61b 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -754,10 +754,9 @@ end #### Implementing Decorator Pattern Using ActiveSupport::Concern -Using `Class#class_eval` is great for simple adjustments, but for more complex class modifications, you might want to consider using [`ActiveSupport::Concern`](http://edgeapi.rubyonrails.org/classes/ActiveSupport/Concern.html) which helps manage load order of interlinked dependencies at run time allowing you to significantly modularize your code. +Using `Class#class_eval` is great for simple adjustments, but for more complex class modifications, you might want to consider using [`ActiveSupport::Concern`](http://edgeapi.rubyonrails.org/classes/ActiveSupport/Concern.html). ActiveSupport::Concern manages load order of interlinked dependent modules and classes at run time allowing you to significantly modularize your code. -**Adding** `Post#time_since_created`<br/> -**Overriding** `Post#summary` +**Adding** `Post#time_since_created` and **Overriding** `Post#summary` ```ruby # MyApp/app/models/blorgh/post.rb |